-- MySQL dump 10.19 Distrib 10.3.38-MariaDB, for Linux (x86_64) -- -- Host: localhost Database: wp20250303F3 -- ------------------------------------------------------ -- Server version 10.3.38-MariaDB /*!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 utf8mb4 */; /*!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 */; -- -- Current Database: `wp20250303F3` -- /*!40000 DROP DATABASE IF EXISTS `wp20250303F3`*/; CREATE DATABASE /*!32312 IF NOT EXISTS*/ `wp20250303F3` /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_bin */; USE `wp20250303F3`; -- -- Table structure for table `I09Mcommentmeta` -- DROP TABLE IF EXISTS `I09Mcommentmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `I09Mcommentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `I09Mcommentmeta` -- LOCK TABLES `I09Mcommentmeta` WRITE; /*!40000 ALTER TABLE `I09Mcommentmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `I09Mcommentmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `I09Mcomments` -- DROP TABLE IF EXISTS `I09Mcomments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `I09Mcomments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0, `comment_author` tinytext NOT NULL, `comment_author_email` varchar(100) NOT NULL DEFAULT '', `comment_author_url` varchar(200) NOT NULL DEFAULT '', `comment_author_IP` varchar(100) 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 NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT 0, `comment_approved` varchar(20) NOT NULL DEFAULT '1', `comment_agent` varchar(255) NOT NULL DEFAULT '', `comment_type` varchar(20) 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=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `I09Mcomments` -- LOCK TABLES `I09Mcomments` WRITE; /*!40000 ALTER TABLE `I09Mcomments` DISABLE KEYS */; INSERT INTO `I09Mcomments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2025-03-04 22:21:23','2025-03-04 22:21:23','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from Gravatar.',0,'1','','comment',0,0); /*!40000 ALTER TABLE `I09Mcomments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `I09Mlinks` -- DROP TABLE IF EXISTS `I09Mlinks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `I09Mlinks` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) NOT NULL DEFAULT '', `link_name` varchar(255) NOT NULL DEFAULT '', `link_image` varchar(255) NOT NULL DEFAULT '', `link_target` varchar(25) NOT NULL DEFAULT '', `link_description` varchar(255) NOT NULL DEFAULT '', `link_visible` varchar(20) 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) NOT NULL DEFAULT '', `link_notes` mediumtext NOT NULL, `link_rss` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `I09Mlinks` -- LOCK TABLES `I09Mlinks` WRITE; /*!40000 ALTER TABLE `I09Mlinks` DISABLE KEYS */; /*!40000 ALTER TABLE `I09Mlinks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `I09Moptions` -- DROP TABLE IF EXISTS `I09Moptions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `I09Moptions` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) NOT NULL DEFAULT '', `option_value` longtext NOT NULL, `autoload` varchar(20) NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`), KEY `autoload` (`autoload`) ) ENGINE=InnoDB AUTO_INCREMENT=5460 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `I09Moptions` -- LOCK TABLES `I09Moptions` WRITE; /*!40000 ALTER TABLE `I09Moptions` DISABLE KEYS */; INSERT INTO `I09Moptions` VALUES (1,'cron','a:15:{i:1741879284;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:1741880747;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:1741881144;a:1:{s:13:\"wpseo-reindex\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1741881145;a:1:{s:31:\"wpseo_permalink_structure_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1741881238;a:2:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1741904484;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:1741904503;a:3:{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;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1741904505;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:1741908083;a:1:{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;}}}i:1741909883;a:1:{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:1741911683;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:1742174381;a:1:{s:27:\"acf_update_site_health_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1742337770;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1742422884;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;}}}s:7:\"version\";i:2;}','on'),(2,'siteurl','https://nomudrvstorage.com','on'),(3,'home','https://nomudrvstorage.com','on'),(4,'blogname','No Mud RV Storage','on'),(5,'blogdescription','','on'),(6,'users_can_register','0','on'),(7,'admin_email','marc@rezosystems.com','on'),(8,'start_of_week','1','on'),(9,'use_balanceTags','0','on'),(10,'use_smilies','1','on'),(11,'require_name_email','1','on'),(12,'comments_notify','1','on'),(13,'posts_per_rss','10','on'),(14,'rss_use_excerpt','0','on'),(15,'mailserver_url','mail.example.com','on'),(16,'mailserver_login','login@example.com','on'),(17,'mailserver_pass','','on'),(18,'mailserver_port','110','on'),(19,'default_category','1','on'),(20,'default_comment_status','open','on'),(21,'default_ping_status','open','on'),(22,'default_pingback_flag','1','on'),(23,'posts_per_page','10','on'),(24,'date_format','F j, Y','on'),(25,'time_format','g:i a','on'),(26,'links_updated_date_format','F j, Y g:i a','on'),(27,'comment_moderation','0','on'),(28,'moderation_notify','1','on'),(29,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','on'),(30,'rewrite_rules','a:98:{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: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: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: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:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:12:\"sitemap\\.xml\";s:24:\"index.php??sitemap=index\";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=85&cpage=$matches[1]\";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: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: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: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: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: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: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: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:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','on'),(31,'hack_file','0','on'),(32,'blog_charset','UTF-8','on'),(33,'moderation_keys','','off'),(34,'active_plugins','a:2:{i:0;s:34:\"advanced-custom-fields-pro/acf.php\";i:3;s:24:\"wordpress-seo/wp-seo.php\";}','on'),(35,'category_base','','on'),(36,'ping_sites','http://rpc.pingomatic.com/','on'),(37,'comment_max_links','2','on'),(38,'gmt_offset','0','on'),(39,'default_email_category','1','on'),(40,'recently_edited','a:4:{i:0;s:79:\"/home/domains/nomudrvstorage.com/public/wp-content/themes/rezo/contact-page.php\";i:2;s:72:\"/home/domains/nomudrvstorage.com/public/wp-content/themes/rezo/style.css\";i:3;s:73:\"/home/domains/nomudrvstorage.com/public/wp-content/themes/rezo/footer.php\";i:4;s:0:\"\";}','off'),(41,'template','rezo','on'),(42,'stylesheet','rezo','on'),(43,'comment_registration','0','on'),(44,'html_type','text/html','on'),(45,'use_trackback','0','on'),(46,'default_role','subscriber','on'),(47,'db_version','58975','on'),(48,'uploads_use_yearmonth_folders','1','on'),(49,'upload_path','','on'),(50,'blog_public','1','on'),(51,'default_link_category','2','on'),(52,'show_on_front','page','on'),(53,'tag_base','','on'),(54,'show_avatars','1','on'),(55,'avatar_rating','G','on'),(56,'upload_url_path','','on'),(57,'thumbnail_size_w','150','on'),(58,'thumbnail_size_h','150','on'),(59,'thumbnail_crop','1','on'),(60,'medium_size_w','300','on'),(61,'medium_size_h','300','on'),(62,'avatar_default','mystery','on'),(63,'large_size_w','1024','on'),(64,'large_size_h','1024','on'),(65,'image_default_link_type','none','on'),(66,'image_default_size','','on'),(67,'image_default_align','','on'),(68,'close_comments_for_old_posts','0','on'),(69,'close_comments_days_old','14','on'),(70,'thread_comments','1','on'),(71,'thread_comments_depth','5','on'),(72,'page_comments','0','on'),(73,'comments_per_page','50','on'),(74,'default_comments_page','newest','on'),(75,'comment_order','asc','on'),(76,'sticky_posts','a:0:{}','on'),(77,'widget_categories','a:0:{}','on'),(78,'widget_text','a:0:{}','on'),(79,'widget_rss','a:0:{}','on'),(80,'uninstall_plugins','a:1:{s:24:\"wordpress-seo/wp-seo.php\";s:14:\"__return_false\";}','off'),(81,'timezone_string','','on'),(82,'page_for_posts','0','on'),(83,'page_on_front','85','on'),(84,'default_post_format','0','on'),(85,'link_manager_enabled','0','on'),(86,'finished_splitting_shared_terms','1','on'),(87,'site_icon','0','on'),(88,'medium_large_size_w','768','on'),(89,'medium_large_size_h','0','on'),(90,'wp_page_for_privacy_policy','3','on'),(91,'show_comments_cookies_opt_in','1','on'),(92,'admin_email_lifespan','1756678883','on'),(93,'disallowed_keys','','off'),(94,'comment_previously_approved','1','on'),(95,'auto_plugin_theme_update_emails','a:0:{}','off'),(96,'auto_update_core_dev','enabled','on'),(97,'auto_update_core_minor','enabled','on'),(98,'auto_update_core_major','enabled','on'),(99,'wp_force_deactivated_plugins','a:0:{}','on'),(100,'wp_attachment_pages_enabled','0','on'),(101,'initial_db_version','58975','on'),(102,'I09Muser_roles','a:9:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:115:{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:20:\"wpseo_manage_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;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:36:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";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:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:38:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;s:23:\"view_site_health_checks\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:36:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";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;}}}','on'),(103,'fresh_site','0','off'),(104,'user_count','1','off'),(105,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"\";}i:3;a:1:{s:7:\"content\";s:154:\"

Recent Posts

\";}i:4;a:1:{s:7:\"content\";s:227:\"

Recent Comments

\";}i:5;a:1:{s:7:\"content\";s:146:\"

Archives

\";}i:6;a:1:{s:7:\"content\";s:150:\"

Categories

\";}s:12:\"_multiwidget\";i:1;}','auto'),(106,'sidebars_widgets','a:5:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:19:\"footer-widget-area1\";a:0:{}s:19:\"footer-widget-area2\";a:0:{}s:19:\"footer-widget-area3\";a:0:{}s:13:\"array_version\";i:3;}','auto'),(107,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(108,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(109,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(114,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(115,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(116,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(117,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(118,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(119,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(120,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','auto'),(121,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.7.2\";s:5:\"files\";a:540:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:21:\"button/editor-rtl.css\";i:29;s:25:\"button/editor-rtl.min.css\";i:30;s:17:\"button/editor.css\";i:31;s:21:\"button/editor.min.css\";i:32;s:20:\"button/style-rtl.css\";i:33;s:24:\"button/style-rtl.min.css\";i:34;s:16:\"button/style.css\";i:35;s:20:\"button/style.min.css\";i:36;s:22:\"buttons/editor-rtl.css\";i:37;s:26:\"buttons/editor-rtl.min.css\";i:38;s:18:\"buttons/editor.css\";i:39;s:22:\"buttons/editor.min.css\";i:40;s:21:\"buttons/style-rtl.css\";i:41;s:25:\"buttons/style-rtl.min.css\";i:42;s:17:\"buttons/style.css\";i:43;s:21:\"buttons/style.min.css\";i:44;s:22:\"calendar/style-rtl.css\";i:45;s:26:\"calendar/style-rtl.min.css\";i:46;s:18:\"calendar/style.css\";i:47;s:22:\"calendar/style.min.css\";i:48;s:25:\"categories/editor-rtl.css\";i:49;s:29:\"categories/editor-rtl.min.css\";i:50;s:21:\"categories/editor.css\";i:51;s:25:\"categories/editor.min.css\";i:52;s:24:\"categories/style-rtl.css\";i:53;s:28:\"categories/style-rtl.min.css\";i:54;s:20:\"categories/style.css\";i:55;s:24:\"categories/style.min.css\";i:56;s:19:\"code/editor-rtl.css\";i:57;s:23:\"code/editor-rtl.min.css\";i:58;s:15:\"code/editor.css\";i:59;s:19:\"code/editor.min.css\";i:60;s:18:\"code/style-rtl.css\";i:61;s:22:\"code/style-rtl.min.css\";i:62;s:14:\"code/style.css\";i:63;s:18:\"code/style.min.css\";i:64;s:18:\"code/theme-rtl.css\";i:65;s:22:\"code/theme-rtl.min.css\";i:66;s:14:\"code/theme.css\";i:67;s:18:\"code/theme.min.css\";i:68;s:22:\"columns/editor-rtl.css\";i:69;s:26:\"columns/editor-rtl.min.css\";i:70;s:18:\"columns/editor.css\";i:71;s:22:\"columns/editor.min.css\";i:72;s:21:\"columns/style-rtl.css\";i:73;s:25:\"columns/style-rtl.min.css\";i:74;s:17:\"columns/style.css\";i:75;s:21:\"columns/style.min.css\";i:76;s:33:\"comment-author-name/style-rtl.css\";i:77;s:37:\"comment-author-name/style-rtl.min.css\";i:78;s:29:\"comment-author-name/style.css\";i:79;s:33:\"comment-author-name/style.min.css\";i:80;s:29:\"comment-content/style-rtl.css\";i:81;s:33:\"comment-content/style-rtl.min.css\";i:82;s:25:\"comment-content/style.css\";i:83;s:29:\"comment-content/style.min.css\";i:84;s:26:\"comment-date/style-rtl.css\";i:85;s:30:\"comment-date/style-rtl.min.css\";i:86;s:22:\"comment-date/style.css\";i:87;s:26:\"comment-date/style.min.css\";i:88;s:31:\"comment-edit-link/style-rtl.css\";i:89;s:35:\"comment-edit-link/style-rtl.min.css\";i:90;s:27:\"comment-edit-link/style.css\";i:91;s:31:\"comment-edit-link/style.min.css\";i:92;s:32:\"comment-reply-link/style-rtl.css\";i:93;s:36:\"comment-reply-link/style-rtl.min.css\";i:94;s:28:\"comment-reply-link/style.css\";i:95;s:32:\"comment-reply-link/style.min.css\";i:96;s:30:\"comment-template/style-rtl.css\";i:97;s:34:\"comment-template/style-rtl.min.css\";i:98;s:26:\"comment-template/style.css\";i:99;s:30:\"comment-template/style.min.css\";i:100;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:101;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:102;s:38:\"comments-pagination-numbers/editor.css\";i:103;s:42:\"comments-pagination-numbers/editor.min.css\";i:104;s:34:\"comments-pagination/editor-rtl.css\";i:105;s:38:\"comments-pagination/editor-rtl.min.css\";i:106;s:30:\"comments-pagination/editor.css\";i:107;s:34:\"comments-pagination/editor.min.css\";i:108;s:33:\"comments-pagination/style-rtl.css\";i:109;s:37:\"comments-pagination/style-rtl.min.css\";i:110;s:29:\"comments-pagination/style.css\";i:111;s:33:\"comments-pagination/style.min.css\";i:112;s:29:\"comments-title/editor-rtl.css\";i:113;s:33:\"comments-title/editor-rtl.min.css\";i:114;s:25:\"comments-title/editor.css\";i:115;s:29:\"comments-title/editor.min.css\";i:116;s:23:\"comments/editor-rtl.css\";i:117;s:27:\"comments/editor-rtl.min.css\";i:118;s:19:\"comments/editor.css\";i:119;s:23:\"comments/editor.min.css\";i:120;s:22:\"comments/style-rtl.css\";i:121;s:26:\"comments/style-rtl.min.css\";i:122;s:18:\"comments/style.css\";i:123;s:22:\"comments/style.min.css\";i:124;s:20:\"cover/editor-rtl.css\";i:125;s:24:\"cover/editor-rtl.min.css\";i:126;s:16:\"cover/editor.css\";i:127;s:20:\"cover/editor.min.css\";i:128;s:19:\"cover/style-rtl.css\";i:129;s:23:\"cover/style-rtl.min.css\";i:130;s:15:\"cover/style.css\";i:131;s:19:\"cover/style.min.css\";i:132;s:22:\"details/editor-rtl.css\";i:133;s:26:\"details/editor-rtl.min.css\";i:134;s:18:\"details/editor.css\";i:135;s:22:\"details/editor.min.css\";i:136;s:21:\"details/style-rtl.css\";i:137;s:25:\"details/style-rtl.min.css\";i:138;s:17:\"details/style.css\";i:139;s:21:\"details/style.min.css\";i:140;s:20:\"embed/editor-rtl.css\";i:141;s:24:\"embed/editor-rtl.min.css\";i:142;s:16:\"embed/editor.css\";i:143;s:20:\"embed/editor.min.css\";i:144;s:19:\"embed/style-rtl.css\";i:145;s:23:\"embed/style-rtl.min.css\";i:146;s:15:\"embed/style.css\";i:147;s:19:\"embed/style.min.css\";i:148;s:19:\"embed/theme-rtl.css\";i:149;s:23:\"embed/theme-rtl.min.css\";i:150;s:15:\"embed/theme.css\";i:151;s:19:\"embed/theme.min.css\";i:152;s:19:\"file/editor-rtl.css\";i:153;s:23:\"file/editor-rtl.min.css\";i:154;s:15:\"file/editor.css\";i:155;s:19:\"file/editor.min.css\";i:156;s:18:\"file/style-rtl.css\";i:157;s:22:\"file/style-rtl.min.css\";i:158;s:14:\"file/style.css\";i:159;s:18:\"file/style.min.css\";i:160;s:23:\"footnotes/style-rtl.css\";i:161;s:27:\"footnotes/style-rtl.min.css\";i:162;s:19:\"footnotes/style.css\";i:163;s:23:\"footnotes/style.min.css\";i:164;s:23:\"freeform/editor-rtl.css\";i:165;s:27:\"freeform/editor-rtl.min.css\";i:166;s:19:\"freeform/editor.css\";i:167;s:23:\"freeform/editor.min.css\";i:168;s:22:\"gallery/editor-rtl.css\";i:169;s:26:\"gallery/editor-rtl.min.css\";i:170;s:18:\"gallery/editor.css\";i:171;s:22:\"gallery/editor.min.css\";i:172;s:21:\"gallery/style-rtl.css\";i:173;s:25:\"gallery/style-rtl.min.css\";i:174;s:17:\"gallery/style.css\";i:175;s:21:\"gallery/style.min.css\";i:176;s:21:\"gallery/theme-rtl.css\";i:177;s:25:\"gallery/theme-rtl.min.css\";i:178;s:17:\"gallery/theme.css\";i:179;s:21:\"gallery/theme.min.css\";i:180;s:20:\"group/editor-rtl.css\";i:181;s:24:\"group/editor-rtl.min.css\";i:182;s:16:\"group/editor.css\";i:183;s:20:\"group/editor.min.css\";i:184;s:19:\"group/style-rtl.css\";i:185;s:23:\"group/style-rtl.min.css\";i:186;s:15:\"group/style.css\";i:187;s:19:\"group/style.min.css\";i:188;s:19:\"group/theme-rtl.css\";i:189;s:23:\"group/theme-rtl.min.css\";i:190;s:15:\"group/theme.css\";i:191;s:19:\"group/theme.min.css\";i:192;s:21:\"heading/style-rtl.css\";i:193;s:25:\"heading/style-rtl.min.css\";i:194;s:17:\"heading/style.css\";i:195;s:21:\"heading/style.min.css\";i:196;s:19:\"html/editor-rtl.css\";i:197;s:23:\"html/editor-rtl.min.css\";i:198;s:15:\"html/editor.css\";i:199;s:19:\"html/editor.min.css\";i:200;s:20:\"image/editor-rtl.css\";i:201;s:24:\"image/editor-rtl.min.css\";i:202;s:16:\"image/editor.css\";i:203;s:20:\"image/editor.min.css\";i:204;s:19:\"image/style-rtl.css\";i:205;s:23:\"image/style-rtl.min.css\";i:206;s:15:\"image/style.css\";i:207;s:19:\"image/style.min.css\";i:208;s:19:\"image/theme-rtl.css\";i:209;s:23:\"image/theme-rtl.min.css\";i:210;s:15:\"image/theme.css\";i:211;s:19:\"image/theme.min.css\";i:212;s:29:\"latest-comments/style-rtl.css\";i:213;s:33:\"latest-comments/style-rtl.min.css\";i:214;s:25:\"latest-comments/style.css\";i:215;s:29:\"latest-comments/style.min.css\";i:216;s:27:\"latest-posts/editor-rtl.css\";i:217;s:31:\"latest-posts/editor-rtl.min.css\";i:218;s:23:\"latest-posts/editor.css\";i:219;s:27:\"latest-posts/editor.min.css\";i:220;s:26:\"latest-posts/style-rtl.css\";i:221;s:30:\"latest-posts/style-rtl.min.css\";i:222;s:22:\"latest-posts/style.css\";i:223;s:26:\"latest-posts/style.min.css\";i:224;s:18:\"list/style-rtl.css\";i:225;s:22:\"list/style-rtl.min.css\";i:226;s:14:\"list/style.css\";i:227;s:18:\"list/style.min.css\";i:228;s:22:\"loginout/style-rtl.css\";i:229;s:26:\"loginout/style-rtl.min.css\";i:230;s:18:\"loginout/style.css\";i:231;s:22:\"loginout/style.min.css\";i:232;s:25:\"media-text/editor-rtl.css\";i:233;s:29:\"media-text/editor-rtl.min.css\";i:234;s:21:\"media-text/editor.css\";i:235;s:25:\"media-text/editor.min.css\";i:236;s:24:\"media-text/style-rtl.css\";i:237;s:28:\"media-text/style-rtl.min.css\";i:238;s:20:\"media-text/style.css\";i:239;s:24:\"media-text/style.min.css\";i:240;s:19:\"more/editor-rtl.css\";i:241;s:23:\"more/editor-rtl.min.css\";i:242;s:15:\"more/editor.css\";i:243;s:19:\"more/editor.min.css\";i:244;s:30:\"navigation-link/editor-rtl.css\";i:245;s:34:\"navigation-link/editor-rtl.min.css\";i:246;s:26:\"navigation-link/editor.css\";i:247;s:30:\"navigation-link/editor.min.css\";i:248;s:29:\"navigation-link/style-rtl.css\";i:249;s:33:\"navigation-link/style-rtl.min.css\";i:250;s:25:\"navigation-link/style.css\";i:251;s:29:\"navigation-link/style.min.css\";i:252;s:33:\"navigation-submenu/editor-rtl.css\";i:253;s:37:\"navigation-submenu/editor-rtl.min.css\";i:254;s:29:\"navigation-submenu/editor.css\";i:255;s:33:\"navigation-submenu/editor.min.css\";i:256;s:25:\"navigation/editor-rtl.css\";i:257;s:29:\"navigation/editor-rtl.min.css\";i:258;s:21:\"navigation/editor.css\";i:259;s:25:\"navigation/editor.min.css\";i:260;s:24:\"navigation/style-rtl.css\";i:261;s:28:\"navigation/style-rtl.min.css\";i:262;s:20:\"navigation/style.css\";i:263;s:24:\"navigation/style.min.css\";i:264;s:23:\"nextpage/editor-rtl.css\";i:265;s:27:\"nextpage/editor-rtl.min.css\";i:266;s:19:\"nextpage/editor.css\";i:267;s:23:\"nextpage/editor.min.css\";i:268;s:24:\"page-list/editor-rtl.css\";i:269;s:28:\"page-list/editor-rtl.min.css\";i:270;s:20:\"page-list/editor.css\";i:271;s:24:\"page-list/editor.min.css\";i:272;s:23:\"page-list/style-rtl.css\";i:273;s:27:\"page-list/style-rtl.min.css\";i:274;s:19:\"page-list/style.css\";i:275;s:23:\"page-list/style.min.css\";i:276;s:24:\"paragraph/editor-rtl.css\";i:277;s:28:\"paragraph/editor-rtl.min.css\";i:278;s:20:\"paragraph/editor.css\";i:279;s:24:\"paragraph/editor.min.css\";i:280;s:23:\"paragraph/style-rtl.css\";i:281;s:27:\"paragraph/style-rtl.min.css\";i:282;s:19:\"paragraph/style.css\";i:283;s:23:\"paragraph/style.min.css\";i:284;s:35:\"post-author-biography/style-rtl.css\";i:285;s:39:\"post-author-biography/style-rtl.min.css\";i:286;s:31:\"post-author-biography/style.css\";i:287;s:35:\"post-author-biography/style.min.css\";i:288;s:30:\"post-author-name/style-rtl.css\";i:289;s:34:\"post-author-name/style-rtl.min.css\";i:290;s:26:\"post-author-name/style.css\";i:291;s:30:\"post-author-name/style.min.css\";i:292;s:26:\"post-author/editor-rtl.css\";i:293;s:30:\"post-author/editor-rtl.min.css\";i:294;s:22:\"post-author/editor.css\";i:295;s:26:\"post-author/editor.min.css\";i:296;s:25:\"post-author/style-rtl.css\";i:297;s:29:\"post-author/style-rtl.min.css\";i:298;s:21:\"post-author/style.css\";i:299;s:25:\"post-author/style.min.css\";i:300;s:33:\"post-comments-form/editor-rtl.css\";i:301;s:37:\"post-comments-form/editor-rtl.min.css\";i:302;s:29:\"post-comments-form/editor.css\";i:303;s:33:\"post-comments-form/editor.min.css\";i:304;s:32:\"post-comments-form/style-rtl.css\";i:305;s:36:\"post-comments-form/style-rtl.min.css\";i:306;s:28:\"post-comments-form/style.css\";i:307;s:32:\"post-comments-form/style.min.css\";i:308;s:27:\"post-content/editor-rtl.css\";i:309;s:31:\"post-content/editor-rtl.min.css\";i:310;s:23:\"post-content/editor.css\";i:311;s:27:\"post-content/editor.min.css\";i:312;s:26:\"post-content/style-rtl.css\";i:313;s:30:\"post-content/style-rtl.min.css\";i:314;s:22:\"post-content/style.css\";i:315;s:26:\"post-content/style.min.css\";i:316;s:23:\"post-date/style-rtl.css\";i:317;s:27:\"post-date/style-rtl.min.css\";i:318;s:19:\"post-date/style.css\";i:319;s:23:\"post-date/style.min.css\";i:320;s:27:\"post-excerpt/editor-rtl.css\";i:321;s:31:\"post-excerpt/editor-rtl.min.css\";i:322;s:23:\"post-excerpt/editor.css\";i:323;s:27:\"post-excerpt/editor.min.css\";i:324;s:26:\"post-excerpt/style-rtl.css\";i:325;s:30:\"post-excerpt/style-rtl.min.css\";i:326;s:22:\"post-excerpt/style.css\";i:327;s:26:\"post-excerpt/style.min.css\";i:328;s:34:\"post-featured-image/editor-rtl.css\";i:329;s:38:\"post-featured-image/editor-rtl.min.css\";i:330;s:30:\"post-featured-image/editor.css\";i:331;s:34:\"post-featured-image/editor.min.css\";i:332;s:33:\"post-featured-image/style-rtl.css\";i:333;s:37:\"post-featured-image/style-rtl.min.css\";i:334;s:29:\"post-featured-image/style.css\";i:335;s:33:\"post-featured-image/style.min.css\";i:336;s:34:\"post-navigation-link/style-rtl.css\";i:337;s:38:\"post-navigation-link/style-rtl.min.css\";i:338;s:30:\"post-navigation-link/style.css\";i:339;s:34:\"post-navigation-link/style.min.css\";i:340;s:28:\"post-template/editor-rtl.css\";i:341;s:32:\"post-template/editor-rtl.min.css\";i:342;s:24:\"post-template/editor.css\";i:343;s:28:\"post-template/editor.min.css\";i:344;s:27:\"post-template/style-rtl.css\";i:345;s:31:\"post-template/style-rtl.min.css\";i:346;s:23:\"post-template/style.css\";i:347;s:27:\"post-template/style.min.css\";i:348;s:24:\"post-terms/style-rtl.css\";i:349;s:28:\"post-terms/style-rtl.min.css\";i:350;s:20:\"post-terms/style.css\";i:351;s:24:\"post-terms/style.min.css\";i:352;s:24:\"post-title/style-rtl.css\";i:353;s:28:\"post-title/style-rtl.min.css\";i:354;s:20:\"post-title/style.css\";i:355;s:24:\"post-title/style.min.css\";i:356;s:26:\"preformatted/style-rtl.css\";i:357;s:30:\"preformatted/style-rtl.min.css\";i:358;s:22:\"preformatted/style.css\";i:359;s:26:\"preformatted/style.min.css\";i:360;s:24:\"pullquote/editor-rtl.css\";i:361;s:28:\"pullquote/editor-rtl.min.css\";i:362;s:20:\"pullquote/editor.css\";i:363;s:24:\"pullquote/editor.min.css\";i:364;s:23:\"pullquote/style-rtl.css\";i:365;s:27:\"pullquote/style-rtl.min.css\";i:366;s:19:\"pullquote/style.css\";i:367;s:23:\"pullquote/style.min.css\";i:368;s:23:\"pullquote/theme-rtl.css\";i:369;s:27:\"pullquote/theme-rtl.min.css\";i:370;s:19:\"pullquote/theme.css\";i:371;s:23:\"pullquote/theme.min.css\";i:372;s:39:\"query-pagination-numbers/editor-rtl.css\";i:373;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:374;s:35:\"query-pagination-numbers/editor.css\";i:375;s:39:\"query-pagination-numbers/editor.min.css\";i:376;s:31:\"query-pagination/editor-rtl.css\";i:377;s:35:\"query-pagination/editor-rtl.min.css\";i:378;s:27:\"query-pagination/editor.css\";i:379;s:31:\"query-pagination/editor.min.css\";i:380;s:30:\"query-pagination/style-rtl.css\";i:381;s:34:\"query-pagination/style-rtl.min.css\";i:382;s:26:\"query-pagination/style.css\";i:383;s:30:\"query-pagination/style.min.css\";i:384;s:25:\"query-title/style-rtl.css\";i:385;s:29:\"query-title/style-rtl.min.css\";i:386;s:21:\"query-title/style.css\";i:387;s:25:\"query-title/style.min.css\";i:388;s:20:\"query/editor-rtl.css\";i:389;s:24:\"query/editor-rtl.min.css\";i:390;s:16:\"query/editor.css\";i:391;s:20:\"query/editor.min.css\";i:392;s:19:\"quote/style-rtl.css\";i:393;s:23:\"quote/style-rtl.min.css\";i:394;s:15:\"quote/style.css\";i:395;s:19:\"quote/style.min.css\";i:396;s:19:\"quote/theme-rtl.css\";i:397;s:23:\"quote/theme-rtl.min.css\";i:398;s:15:\"quote/theme.css\";i:399;s:19:\"quote/theme.min.css\";i:400;s:23:\"read-more/style-rtl.css\";i:401;s:27:\"read-more/style-rtl.min.css\";i:402;s:19:\"read-more/style.css\";i:403;s:23:\"read-more/style.min.css\";i:404;s:18:\"rss/editor-rtl.css\";i:405;s:22:\"rss/editor-rtl.min.css\";i:406;s:14:\"rss/editor.css\";i:407;s:18:\"rss/editor.min.css\";i:408;s:17:\"rss/style-rtl.css\";i:409;s:21:\"rss/style-rtl.min.css\";i:410;s:13:\"rss/style.css\";i:411;s:17:\"rss/style.min.css\";i:412;s:21:\"search/editor-rtl.css\";i:413;s:25:\"search/editor-rtl.min.css\";i:414;s:17:\"search/editor.css\";i:415;s:21:\"search/editor.min.css\";i:416;s:20:\"search/style-rtl.css\";i:417;s:24:\"search/style-rtl.min.css\";i:418;s:16:\"search/style.css\";i:419;s:20:\"search/style.min.css\";i:420;s:20:\"search/theme-rtl.css\";i:421;s:24:\"search/theme-rtl.min.css\";i:422;s:16:\"search/theme.css\";i:423;s:20:\"search/theme.min.css\";i:424;s:24:\"separator/editor-rtl.css\";i:425;s:28:\"separator/editor-rtl.min.css\";i:426;s:20:\"separator/editor.css\";i:427;s:24:\"separator/editor.min.css\";i:428;s:23:\"separator/style-rtl.css\";i:429;s:27:\"separator/style-rtl.min.css\";i:430;s:19:\"separator/style.css\";i:431;s:23:\"separator/style.min.css\";i:432;s:23:\"separator/theme-rtl.css\";i:433;s:27:\"separator/theme-rtl.min.css\";i:434;s:19:\"separator/theme.css\";i:435;s:23:\"separator/theme.min.css\";i:436;s:24:\"shortcode/editor-rtl.css\";i:437;s:28:\"shortcode/editor-rtl.min.css\";i:438;s:20:\"shortcode/editor.css\";i:439;s:24:\"shortcode/editor.min.css\";i:440;s:24:\"site-logo/editor-rtl.css\";i:441;s:28:\"site-logo/editor-rtl.min.css\";i:442;s:20:\"site-logo/editor.css\";i:443;s:24:\"site-logo/editor.min.css\";i:444;s:23:\"site-logo/style-rtl.css\";i:445;s:27:\"site-logo/style-rtl.min.css\";i:446;s:19:\"site-logo/style.css\";i:447;s:23:\"site-logo/style.min.css\";i:448;s:27:\"site-tagline/editor-rtl.css\";i:449;s:31:\"site-tagline/editor-rtl.min.css\";i:450;s:23:\"site-tagline/editor.css\";i:451;s:27:\"site-tagline/editor.min.css\";i:452;s:26:\"site-tagline/style-rtl.css\";i:453;s:30:\"site-tagline/style-rtl.min.css\";i:454;s:22:\"site-tagline/style.css\";i:455;s:26:\"site-tagline/style.min.css\";i:456;s:25:\"site-title/editor-rtl.css\";i:457;s:29:\"site-title/editor-rtl.min.css\";i:458;s:21:\"site-title/editor.css\";i:459;s:25:\"site-title/editor.min.css\";i:460;s:24:\"site-title/style-rtl.css\";i:461;s:28:\"site-title/style-rtl.min.css\";i:462;s:20:\"site-title/style.css\";i:463;s:24:\"site-title/style.min.css\";i:464;s:26:\"social-link/editor-rtl.css\";i:465;s:30:\"social-link/editor-rtl.min.css\";i:466;s:22:\"social-link/editor.css\";i:467;s:26:\"social-link/editor.min.css\";i:468;s:27:\"social-links/editor-rtl.css\";i:469;s:31:\"social-links/editor-rtl.min.css\";i:470;s:23:\"social-links/editor.css\";i:471;s:27:\"social-links/editor.min.css\";i:472;s:26:\"social-links/style-rtl.css\";i:473;s:30:\"social-links/style-rtl.min.css\";i:474;s:22:\"social-links/style.css\";i:475;s:26:\"social-links/style.min.css\";i:476;s:21:\"spacer/editor-rtl.css\";i:477;s:25:\"spacer/editor-rtl.min.css\";i:478;s:17:\"spacer/editor.css\";i:479;s:21:\"spacer/editor.min.css\";i:480;s:20:\"spacer/style-rtl.css\";i:481;s:24:\"spacer/style-rtl.min.css\";i:482;s:16:\"spacer/style.css\";i:483;s:20:\"spacer/style.min.css\";i:484;s:20:\"table/editor-rtl.css\";i:485;s:24:\"table/editor-rtl.min.css\";i:486;s:16:\"table/editor.css\";i:487;s:20:\"table/editor.min.css\";i:488;s:19:\"table/style-rtl.css\";i:489;s:23:\"table/style-rtl.min.css\";i:490;s:15:\"table/style.css\";i:491;s:19:\"table/style.min.css\";i:492;s:19:\"table/theme-rtl.css\";i:493;s:23:\"table/theme-rtl.min.css\";i:494;s:15:\"table/theme.css\";i:495;s:19:\"table/theme.min.css\";i:496;s:24:\"tag-cloud/editor-rtl.css\";i:497;s:28:\"tag-cloud/editor-rtl.min.css\";i:498;s:20:\"tag-cloud/editor.css\";i:499;s:24:\"tag-cloud/editor.min.css\";i:500;s:23:\"tag-cloud/style-rtl.css\";i:501;s:27:\"tag-cloud/style-rtl.min.css\";i:502;s:19:\"tag-cloud/style.css\";i:503;s:23:\"tag-cloud/style.min.css\";i:504;s:28:\"template-part/editor-rtl.css\";i:505;s:32:\"template-part/editor-rtl.min.css\";i:506;s:24:\"template-part/editor.css\";i:507;s:28:\"template-part/editor.min.css\";i:508;s:27:\"template-part/theme-rtl.css\";i:509;s:31:\"template-part/theme-rtl.min.css\";i:510;s:23:\"template-part/theme.css\";i:511;s:27:\"template-part/theme.min.css\";i:512;s:30:\"term-description/style-rtl.css\";i:513;s:34:\"term-description/style-rtl.min.css\";i:514;s:26:\"term-description/style.css\";i:515;s:30:\"term-description/style.min.css\";i:516;s:27:\"text-columns/editor-rtl.css\";i:517;s:31:\"text-columns/editor-rtl.min.css\";i:518;s:23:\"text-columns/editor.css\";i:519;s:27:\"text-columns/editor.min.css\";i:520;s:26:\"text-columns/style-rtl.css\";i:521;s:30:\"text-columns/style-rtl.min.css\";i:522;s:22:\"text-columns/style.css\";i:523;s:26:\"text-columns/style.min.css\";i:524;s:19:\"verse/style-rtl.css\";i:525;s:23:\"verse/style-rtl.min.css\";i:526;s:15:\"verse/style.css\";i:527;s:19:\"verse/style.min.css\";i:528;s:20:\"video/editor-rtl.css\";i:529;s:24:\"video/editor-rtl.min.css\";i:530;s:16:\"video/editor.css\";i:531;s:20:\"video/editor.min.css\";i:532;s:19:\"video/style-rtl.css\";i:533;s:23:\"video/style-rtl.min.css\";i:534;s:15:\"video/style.css\";i:535;s:19:\"video/style.min.css\";i:536;s:19:\"video/theme-rtl.css\";i:537;s:23:\"video/theme-rtl.min.css\";i:538;s:15:\"video/theme.css\";i:539;s:19:\"video/theme.min.css\";}}','on'),(125,'recovery_keys','a:0:{}','off'),(126,'nonce_key','bjXe?d,qssCMRbxVh0VT{?4Q:5]56FR0XJ#S4e0gZZ=uj]08[kHYJeRC!(TVU1dC','off'),(127,'nonce_salt','gx -5dmfgf(x_EzfV6P(GtO{Yl =4SOpl?{0@9lSF6)?hQl^F4Gh}_@mk1M#L-^k','off'),(128,'theme_mods_twentytwentyfive','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1741189836;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\";}}}}','off'),(129,'_transient_wp_styles_for_blocks','a:2:{s:4:\"hash\";s:32:\"8c7d46a72d7d4591fc1dd9485bedb304\";s:6:\"blocks\";a:5:{s:11:\"core/button\";s:0:\"\";s:14:\"core/site-logo\";s:0:\"\";s:18:\"core/post-template\";s:120:\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\";s:12:\"core/columns\";s:102:\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\";s:14:\"core/pullquote\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}','on'),(130,'secure_auth_key','{Zf;y(%?.v|riwli)yx /-fO0+k2}iD#hL7I/A7}Os(D(ApBpKQL','off'),(131,'secure_auth_salt','Rz|ZtCHQ9M;Ls8J:{P`4A?l^.qT!?fewIp.- FLX{V}GBPVh=3aD^t5wQSL)R{|o','off'),(132,'logged_in_key','h).9bubJsi*x,xnoZI#Okt6G(AH7RcXf3cYerRz#1m7-40f(Vy]P$-W} >cc%-rn','off'),(133,'logged_in_salt','d90m}oTF8cu9Rl-/Gh.jA/PhI?uJy=\";}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:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"9.2.0-dev\";s:8:\"operator\";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-payments\";}}}}i:2;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:4:\"data\";}}i:1;O:8:\"stdClass\":1:{s:3:\"use\";s:10:\"array_keys\";}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:10:\"account_id\";s:7:\"default\";a:0:{}}}}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:2:{i:0;s:2:\"US\";i:1;s:2:\"CA\";}s:23:\"recommendation_priority\";i:7;}s:8:\"afterpay\";O:8:\"stdClass\":10:{s:2:\"id\";s:8:\"afterpay\";s:5:\"title\";s:8:\"Afterpay\";s:7:\"content\";s:125:\"Afterpay allows customers to receive products immediately and pay for purchases over four installments, always interest-free.\";s:5:\"image\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/afterpay.png\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/afterpay.png\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";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\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";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:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"6.5.0-dev\";s:8:\"operator\";s:2:\">=\";}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:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"9.2.0-dev\";s:8:\"operator\";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-payments\";}}}}i:2;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:4:\"data\";}}i:1;O:8:\"stdClass\":1:{s:3:\"use\";s:10:\"array_keys\";}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:10:\"account_id\";s:7:\"default\";a:0:{}}}}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:3:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"AU\";}s:23:\"recommendation_priority\";i:8;}s:14:\"airwallex_main\";O:8:\"stdClass\":11:{s:2:\"id\";s:14:\"airwallex_main\";s:5:\"title\";s:18:\"Airwallex Payments\";s:7:\"content\";s:115:\"Boost international sales and save on FX fees. Accept 60+ local payment methods including Apple Pay and Google Pay.\";s:5:\"image\";s:105:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/airwallex.png\";s:11:\"image_72x72\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/airwallex.png\";s:12:\"square_image\";s:112:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/airwallex-square.png\";s:7:\"plugins\";a:1:{i:0;s:33:\"airwallex-online-payments-gateway\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:17:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";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:\"IE\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CN\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"category_other\";a:17:{i:0;s:2:\"GB\";i:1;s:2:\"AT\";i:2;s:2:\"BE\";i:3;s:2:\"EE\";i:4;s:2:\"FR\";i:5;s:2:\"DE\";i:6;s:2:\"GR\";i:7;s:2:\"IE\";i:8;s:2:\"IT\";i:9;s:2:\"NL\";i:10;s:2:\"PL\";i:11;s:2:\"PT\";i:12;s:2:\"AU\";i:13;s:2:\"NZ\";i:14;s:2:\"HK\";i:15;s:2:\"SG\";i:16;s:2:\"CN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:10;}s:24:\"amazon_payments_advanced\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"amazon_payments_advanced\";s:5:\"title\";s:10:\"Amazon Pay\";s:7:\"content\";s:94:\"Enable a familiar, fast checkout for hundreds of millions of active Amazon customers globally.\";s:5:\"image\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/amazonpay.png\";s:11:\"image_72x72\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/amazonpay.png\";s:7:\"plugins\";a:1:{i:0;s:44:\"woocommerce-gateway-amazon-payments-advanced\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:18:{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:\"AT\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";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:\"DE\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";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:\"PT\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SL\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"6.5.0-dev\";s:8:\"operator\";s:2:\">=\";}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:18:{i:0;s:2:\"US\";i:1;s:2:\"AT\";i:2;s:2:\"BE\";i:3;s:2:\"CY\";i:4;s:2:\"DK\";i:5;s:2:\"ES\";i:6;s:2:\"FR\";i:7;s:2:\"DE\";i:8;s:2:\"GB\";i:9;s:2:\"HU\";i:10;s:2:\"IE\";i:11;s:2:\"IT\";i:12;s:2:\"LU\";i:13;s:2:\"NL\";i:14;s:2:\"PT\";i:15;s:2:\"SL\";i:16;s:2:\"SE\";i:17;s:2:\"JP\";}s:23:\"recommendation_priority\";i:6;}s:4:\"bacs\";O:8:\"stdClass\":8:{s:2:\"id\";s:4:\"bacs\";s:5:\"title\";s:20:\"Direct bank transfer\";s:7:\"content\";s:32:\"Take payments via bank transfer.\";s:5:\"image\";s:100:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/bacs.svg\";s:11:\"image_72x72\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/bacs.png\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":1:{s:4:\"type\";s:4:\"pass\";}}s:10:\"is_offline\";b:1;s:23:\"recommendation_priority\";i:10;}s:3:\"cod\";O:8:\"stdClass\":8:{s:2:\"id\";s:3:\"cod\";s:5:\"title\";s:16:\"Cash on delivery\";s:7:\"content\";s:36:\"Take payments in cash upon delivery.\";s:5:\"image\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/cod.svg\";s:11:\"image_72x72\";s:105:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/cod.png\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":1:{s:4:\"type\";s:4:\"pass\";}}s:10:\"is_offline\";b:1;s:23:\"recommendation_priority\";i:10;}s:4:\"eway\";O:8:\"stdClass\":11:{s:2:\"id\";s:4:\"eway\";s:5:\"title\";s:4:\"Eway\";s:7:\"content\";s:171:\"The Eway extension for WooCommerce allows you to take credit card payments directly on your store without redirecting your customers to a third party site to make payment.\";s:5:\"image\";s:100:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/eway.png\";s:11:\"image_72x72\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/eway.png\";s:12:\"square_image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/eway-square.png\";s:7:\"plugins\";a:1:{i:0;s:24:\"woocommerce-gateway-eway\";}s:10:\"is_visible\";b:0;s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:10;}s:3:\"kco\";O:8:\"stdClass\":10:{s:2:\"id\";s:3:\"kco\";s:5:\"title\";s:15:\"Klarna Checkout\";s:7:\"content\";s:115:\"Choose the payment that you want, pay now, pay later or slice it. No credit card numbers, no passwords, no worries.\";s:5:\"image\";s:85:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/klarna-black.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/klarna.png\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-checkout-for-woocommerce\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}}}i:1;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: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\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:3:{i:0;s:2:\"NO\";i:1;s:2:\"SE\";i:2;s:2:\"FI\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:10;}s:15:\"klarna_payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:15:\"klarna_payments\";s:5:\"title\";s:15:\"Klarna Payments\";s:7:\"content\";s:115:\"Choose the payment that you want, pay now, pay later or slice it. No credit card numbers, no passwords, no worries.\";s:5:\"image\";s:85:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/klarna-black.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/klarna.png\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}s:10:\"is_visible\";a:3:{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:\"MX\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"US\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CA\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";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:\"NO\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}}}i:1;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: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\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:4:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"9.2.0-dev\";s:8:\"operator\";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:2:\"or\";s:8:\"operands\";a:39:{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:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";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\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}i:3;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:4:\"data\";}}i:1;O:8:\"stdClass\":1:{s:3:\"use\";s:10:\"array_keys\";}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:10:\"account_id\";s:7:\"default\";a:0:{}}}}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:19:{i:0;s:2:\"MX\";i:1;s:2:\"US\";i:2;s:2:\"CA\";i:3;s:2:\"AT\";i:4;s:2:\"BE\";i:5;s:2:\"CH\";i:6;s:2:\"DK\";i:7;s:2:\"ES\";i:8;s:2:\"FI\";i:9;s:2:\"FR\";i:10;s:2:\"DE\";i:11;s:2:\"GB\";i:12;s:2:\"IT\";i:13;s:2:\"NL\";i:14;s:2:\"NO\";i:15;s:2:\"PL\";i:16;s:2:\"SE\";i:17;s:2:\"NZ\";i:18;s:2:\"AU\";}s:23:\"recommendation_priority\";i:9;}s:30:\"mollie_wc_gateway_banktransfer\";O:8:\"stdClass\":11:{s:2:\"id\";s:30:\"mollie_wc_gateway_banktransfer\";s:5:\"title\";s:6:\"Mollie\";s:7:\"content\";s:128:\"Effortless payments by Mollie: Offer global and local payment methods, get onboarded in minutes, and supported in your language.\";s:5:\"image\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/mollie.svg\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/mollie.png\";s:12:\"square_image\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/mollie-square.png\";s:7:\"plugins\";a:1:{i:0;s:31:\"mollie-payments-for-woocommerce\";}s:10:\"is_visible\";a:1:{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:\"AT\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";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:\"IT\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"category_other\";a:11:{i:0;s:2:\"AT\";i:1;s:2:\"BE\";i:2;s:2:\"CH\";i:3;s:2:\"ES\";i:4;s:2:\"FI\";i:5;s:2:\"FR\";i:6;s:2:\"DE\";i:7;s:2:\"GB\";i:8;s:2:\"IT\";i:9;s:2:\"NL\";i:10;s:2:\"PL\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:10;}s:7:\"payfast\";O:8:\"stdClass\":10:{s:2:\"id\";s:7:\"payfast\";s:5:\"title\";s:7:\"Payfast\";s:7:\"content\";s:299:\"The Payfast extension for WooCommerce enables you to accept payments by Credit Card and EFT via one of South Africa’s most popular payment gateways. No setup fees or monthly subscription costs. Selecting this extension will configure your store to use South African rands as the selected currency.\";s:5:\"image\";s:80:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/payfast.png\";s:11:\"image_72x72\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/payfast.png\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-payfast-gateway\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ZA\";s:9:\"operation\";s:1:\"=\";}}}i:1;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: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\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:1:{i:0;s:2:\"ZA\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:10;}s:17:\"payoneer-checkout\";O:8:\"stdClass\":10:{s:2:\"id\";s:17:\"payoneer-checkout\";s:5:\"title\";s:17:\"Payoneer Checkout\";s:7:\"content\";s:202:\"Payoneer Checkout is the next generation of payment processing platforms, giving merchants around the world the solutions and direction they need to succeed in today’s hyper-competitive global market.\";s:5:\"image\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/payoneer.png\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/payoneer.png\";s:7:\"plugins\";a:1:{i:0;s:17:\"payoneer-checkout\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CN\";s:9:\"operation\";s:1:\"=\";}}}}s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:2:{i:0;s:2:\"HK\";i:1;s:2:\"CN\";}s:23:\"recommendation_priority\";i:10;}s:8:\"paystack\";O:8:\"stdClass\":11:{s:2:\"id\";s:8:\"paystack\";s:5:\"title\";s:8:\"Paystack\";s:7:\"content\";s:127:\"Paystack helps African merchants accept one-time and recurring payments online with a modern, safe, and secure payment gateway.\";s:5:\"image\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/paystack.png\";s:12:\"square_image\";s:111:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/paystack-square.png\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/paystack.png\";s:7:\"plugins\";a:1:{i:0;s:12:\"woo-paystack\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ZA\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GH\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NG\";s:9:\"operation\";s:1:\"=\";}}}i:1;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: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\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:3:{i:0;s:2:\"ZA\";i:1;s:2:\"GH\";i:2;s:2:\"NG\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:10;}s:7:\"payubiz\";O:8:\"stdClass\":10:{s:2:\"id\";s:7:\"payubiz\";s:5:\"title\";s:20:\"PayU for WooCommerce\";s:7:\"content\";s:169:\"Enable PayU’s exclusive plugin for WooCommerce to start accepting payments in 100+ payment methods available in India including credit cards, debit cards, UPI, & more!\";s:5:\"image\";s:100:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/payu.svg\";s:11:\"image_72x72\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/payu.png\";s:7:\"plugins\";a:1:{i:0;s:10:\"payu-india\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";s:9:\"operation\";s:1:\"=\";}i:1;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: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\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:1:{i:0;s:2:\"IN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:10;}s:12:\"ppcp-gateway\";O:8:\"stdClass\":11:{s:2:\"id\";s:12:\"ppcp-gateway\";s:5:\"title\";s:15:\"PayPal Payments\";s:7:\"content\";s:78:\"Safe and secure payments using credit cards or your customer\'s PayPal account.\";s:5:\"image\";s:79:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/paypal.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/paypal.png\";s:12:\"square_image\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/paypal.svg\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:49:{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:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CL\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CO\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EC\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PE\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"UY\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"VE\";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:\"BG\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SL\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CN\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ID\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";s:9:\"operation\";s:1:\"=\";}}}i:1;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: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\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:48:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"BR\";i:4;s:2:\"AR\";i:5;s:2:\"CL\";i:6;s:2:\"CO\";i:7;s:2:\"EC\";i:8;s:2:\"PE\";i:9;s:2:\"UY\";i:10;s:2:\"VE\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"BG\";i:14;s:2:\"HR\";i:15;s:2:\"CH\";i:16;s:2:\"CY\";i:17;s:2:\"CZ\";i:18;s:2:\"DK\";i:19;s:2:\"EE\";i:20;s:2:\"ES\";i:21;s:2:\"FI\";i:22;s:2:\"FR\";i:23;s:2:\"DE\";i:24;s:2:\"GB\";i:25;s:2:\"GR\";i:26;s:2:\"HU\";i:27;s:2:\"IE\";i:28;s:2:\"IT\";i:29;s:2:\"LV\";i:30;s:2:\"LT\";i:31;s:2:\"LU\";i:32;s:2:\"MT\";i:33;s:2:\"NL\";i:34;s:2:\"NO\";i:35;s:2:\"PL\";i:36;s:2:\"PT\";i:37;s:2:\"RO\";i:38;s:2:\"SK\";i:39;s:2:\"SL\";i:40;s:2:\"SE\";i:41;s:2:\"AU\";i:42;s:2:\"NZ\";i:43;s:2:\"HK\";i:44;s:2:\"JP\";i:45;s:2:\"SG\";i:46;s:2:\"CN\";i:47;s:2:\"ID\";}s:19:\"category_additional\";a:49:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"BR\";i:4;s:2:\"AR\";i:5;s:2:\"CL\";i:6;s:2:\"CO\";i:7;s:2:\"EC\";i:8;s:2:\"PE\";i:9;s:2:\"UY\";i:10;s:2:\"VE\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"BG\";i:14;s:2:\"HR\";i:15;s:2:\"CH\";i:16;s:2:\"CY\";i:17;s:2:\"CZ\";i:18;s:2:\"DK\";i:19;s:2:\"EE\";i:20;s:2:\"ES\";i:21;s:2:\"FI\";i:22;s:2:\"FR\";i:23;s:2:\"DE\";i:24;s:2:\"GB\";i:25;s:2:\"GR\";i:26;s:2:\"HU\";i:27;s:2:\"IE\";i:28;s:2:\"IT\";i:29;s:2:\"LV\";i:30;s:2:\"LT\";i:31;s:2:\"LU\";i:32;s:2:\"MT\";i:33;s:2:\"NL\";i:34;s:2:\"NO\";i:35;s:2:\"PL\";i:36;s:2:\"PT\";i:37;s:2:\"RO\";i:38;s:2:\"SK\";i:39;s:2:\"SL\";i:40;s:2:\"SE\";i:41;s:2:\"AU\";i:42;s:2:\"NZ\";i:43;s:2:\"HK\";i:44;s:2:\"JP\";i:45;s:2:\"SG\";i:46;s:2:\"CN\";i:47;s:2:\"ID\";i:48;s:2:\"IN\";}s:23:\"recommendation_priority\";i:4;}s:8:\"razorpay\";O:8:\"stdClass\":10:{s:2:\"id\";s:8:\"razorpay\";s:5:\"title\";s:8:\"Razorpay\";s:7:\"content\";s:133:\"The official Razorpay extension for WooCommerce allows you to accept credit cards, debit cards, netbanking, wallet, and UPI payments.\";s:5:\"image\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/razorpay.svg\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/razorpay.png\";s:7:\"plugins\";a:1:{i:0;s:12:\"woo-razorpay\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";s:9:\"operation\";s:1:\"=\";}i:1;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: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\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:1:{i:0;s:2:\"IN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:10;}s:18:\"square_credit_card\";O:8:\"stdClass\":10:{s:2:\"id\";s:18:\"square_credit_card\";s:5:\"title\";s:6:\"Square\";s:7:\"content\";s:169:\"Securely accept credit and debit cards with one low rate, no surprise fees (custom rates available). Sell online and in store and track sales and inventory in one place.\";s:5:\"image\";s:85:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/square-black.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/square.png\";s:7:\"plugins\";a:1:{i:0;s:18:\"woocommerce-square\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:1:{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\":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: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\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}i:1;a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:8:{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:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}}}i:1;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:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":5:{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:14:\"selling_venues\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:12:\"brick-mortar\";}i:1;O:8:\"stdClass\":5:{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:14:\"selling_venues\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:18:\"brick-mortar-other\";}}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{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:21:\"selling_online_answer\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:21:\"no_im_selling_offline\";s:7:\"default\";s:0:\"\";}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:21:\"selling_online_answer\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:34:\"im_selling_both_online_and_offline\";s:7:\"default\";s:0:\"\";}}}}}}}}}s:14:\"category_other\";a:8:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"IE\";i:3;s:2:\"ES\";i:4;s:2:\"FR\";i:5;s:2:\"GB\";i:6;s:2:\"AU\";i:7;s:2:\"JP\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:5;}s:6:\"stripe\";O:8:\"stdClass\":11:{s:2:\"id\";s:6:\"stripe\";s:5:\"title\";s:6:\"Stripe\";s:7:\"content\";s:112:\"Accept debit and credit cards in 135+ currencies, methods such as Alipay, and one-touch checkout with Apple Pay.\";s:5:\"image\";s:79:\"https://woocommerce.com/wp-content/plugins/woocommerce/assets/images/stripe.png\";s:11:\"image_72x72\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/stripe.png\";s:12:\"square_image\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/stripe.svg\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:40:{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:\"CA\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SL\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ID\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IN\";s:9:\"operation\";s:1:\"=\";}}}i:1;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: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\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"category_other\";a:40:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"BR\";i:4;s:2:\"AT\";i:5;s:2:\"BE\";i:6;s:2:\"BG\";i:7;s:2:\"CH\";i:8;s:2:\"CY\";i:9;s:2:\"CZ\";i:10;s:2:\"DK\";i:11;s:2:\"EE\";i:12;s:2:\"ES\";i:13;s:2:\"FI\";i:14;s:2:\"FR\";i:15;s:2:\"DE\";i:16;s:2:\"GB\";i:17;s:2:\"GR\";i:18;s:2:\"HU\";i:19;s:2:\"IE\";i:20;s:2:\"IT\";i:21;s:2:\"LV\";i:22;s:2:\"LT\";i:23;s:2:\"LU\";i:24;s:2:\"MT\";i:25;s:2:\"NL\";i:26;s:2:\"NO\";i:27;s:2:\"PL\";i:28;s:2:\"PT\";i:29;s:2:\"RO\";i:30;s:2:\"SK\";i:31;s:2:\"SL\";i:32;s:2:\"SE\";i:33;s:2:\"AU\";i:34;s:2:\"NZ\";i:35;s:2:\"HK\";i:36;s:2:\"JP\";i:37;s:2:\"SG\";i:38;s:2:\"ID\";i:39;s:2:\"IN\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:3;}s:23:\"woo-mercado-pago-custom\";O:8:\"stdClass\":11:{s:2:\"id\";s:23:\"woo-mercado-pago-custom\";s:5:\"title\";s:12:\"Mercado Pago\";s:7:\"content\";s:198:\"Set up your payment methods and accept credit and debit cards, cash, bank transfers and money from your Mercado Pago account. Offer safe and secure payments with Latin America’s leading processor.\";s:5:\"image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/mercadopago.png\";s:11:\"image_72x72\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/mercadopago.png\";s:7:\"plugins\";a:1:{i:0;s:23:\"woocommerce-mercadopago\";}s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:8:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AR\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CL\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CO\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EC\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"UY\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MX\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BR\";s:9:\"operation\";s:1:\"=\";}}}}s:16:\"is_local_partner\";b:1;s:14:\"category_other\";a:8:{i:0;s:2:\"AR\";i:1;s:2:\"CL\";i:2;s:2:\"CO\";i:3;s:2:\"EC\";i:4;s:2:\"PE\";i:5;s:2:\"UY\";i:6;s:2:\"MX\";i:7;s:2:\"BR\";}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:10;}s:20:\"woocommerce_payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:20:\"woocommerce_payments\";s:5:\"title\";s:11:\"WooPayments\";s:7:\"content\";s:84:\"Manage transactions without leaving your WordPress Dashboard. Only with WooPayments.\";s:5:\"image\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:12:\"square_image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/woocommerce.svg\";s:11:\"image_72x72\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:11:\"description\";s:225:\"With WooPayments, you can securely accept major cards, Apple Pay, and payments in over 100 currencies. Track cash flow and manage recurring revenue directly from your store’s dashboard - with no setup costs or monthly fees.\";s:10:\"is_visible\";a:4:{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: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\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:39:{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:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"5.10.0-dev\";s:8:\"operator\";s:1:\"<\";}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: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:17:\"woocommerce-admin\";}}}}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:17:\"woocommerce-admin\";s:7:\"version\";s:9:\"2.9.0-dev\";s:8:\"operator\";s:1:\"<\";}}}}s:23:\"recommendation_priority\";i:2;}s:47:\"woocommerce_payments:without-in-person-payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:47:\"woocommerce_payments:without-in-person-payments\";s:5:\"title\";s:11:\"WooPayments\";s:7:\"content\";s:84:\"Manage transactions without leaving your WordPress Dashboard. Only with WooPayments.\";s:5:\"image\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:11:\"image_72x72\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:12:\"square_image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/woocommerce.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:11:\"description\";s:225:\"With WooPayments, you can securely accept major cards, Apple Pay, and payments in over 100 currencies. Track cash flow and manage recurring revenue directly from your store’s dashboard - with no setup costs or monthly fees.\";s:10:\"is_visible\";a:3:{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: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\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:37:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PR\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AU\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IE\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AT\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NL\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PT\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HK\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SG\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CY\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"EE\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GR\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LU\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LT\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"LV\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NO\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"MT\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SI\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SK\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BG\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CZ\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HR\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"HU\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"RO\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"JP\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"AE\";s:9:\"operation\";s:1:\"=\";}}}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:17:\"woocommerce-admin\";s:7:\"version\";s:9:\"2.9.0-dev\";s:8:\"operator\";s:2:\">=\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"5.10.0-dev\";s:8:\"operator\";s:2:\">=\";}}}}s:23:\"recommendation_priority\";i:1;}s:44:\"woocommerce_payments:with-in-person-payments\";O:8:\"stdClass\":10:{s:2:\"id\";s:44:\"woocommerce_payments:with-in-person-payments\";s:5:\"title\";s:11:\"WooPayments\";s:7:\"content\";s:84:\"Manage transactions without leaving your WordPress Dashboard. Only with WooPayments.\";s:5:\"image\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:11:\"image_72x72\";s:101:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay.svg\";s:12:\"square_image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/woocommerce.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:11:\"description\";s:212:\"With WooPayments, you can securely accept major cards, Apple Pay, and payments in over 100 currencies – with no setup costs or monthly fees – and you can now accept in-person payments with the Woo mobile app.\";s:10:\"is_visible\";a:3:{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: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\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{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:\"CA\";s:9:\"operation\";s:1:\"=\";}}}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:17:\"woocommerce-admin\";s:7:\"version\";s:9:\"2.9.0-dev\";s:8:\"operator\";s:2:\">=\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:10:\"5.10.0-dev\";s:8:\"operator\";s:2:\">=\";}}}}s:23:\"recommendation_priority\";i:0;}s:25:\"woocommerce_payments:bnpl\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"woocommerce_payments:bnpl\";s:5:\"title\";s:38:\"Activate BNPL instantly on WooPayments\";s:7:\"content\";s:185:\"The world’s favorite buy now, pay later options and many more are right at your fingertips with WooPayments — all from one dashboard, without needing multiple extensions and logins.\";s:5:\"image\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay-bnpl.svg\";s:11:\"image_72x72\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/wcpay-bnpl.svg\";s:12:\"square_image\";s:107:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/woocommerce.svg\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}s:10:\"is_visible\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:18:{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:\"CA\";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:\"AT\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"BE\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"CH\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DK\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"ES\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FI\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"FR\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"DE\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"GB\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"IT\";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:\"NO\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"PL\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"SE\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";s:2:\"NZ\";s:9:\"operation\";s:1:\"=\";}}}i:1;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: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\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:7:\"version\";s:9:\"9.2.0-dev\";s:8:\"operator\";s:2:\">=\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}i:4;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:4:\"data\";}}i:1;O:8:\"stdClass\":1:{s:3:\"use\";s:10:\"array_keys\";}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:10:\"account_id\";s:7:\"default\";a:0:{}}}s:23:\"recommendation_priority\";i:10;}s:8:\"zipmoney\";O:8:\"stdClass\":10:{s:2:\"id\";s:8:\"zipmoney\";s:5:\"title\";s:27:\"Zip Co - Buy Now, Pay Later\";s:7:\"content\";s:84:\"Give your customers the power to pay later, interest free and watch your sales grow.\";s:5:\"image\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/zipmoney.png\";s:11:\"image_72x72\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/payment-gateway-suggestions/images/72x72/zipmoney.png\";s:7:\"plugins\";a:1:{i:0;s:29:\"zipmoney-payments-woocommerce\";}s:10:\"is_visible\";b:0;s:14:\"category_other\";a:0:{}s:19:\"category_additional\";a:0:{}s:23:\"recommendation_priority\";i:10;}}}','off'),(523,'_transient_timeout_woocommerce_admin_remote_free_extensions_specs','1742140527','off'),(524,'_transient_woocommerce_admin_remote_free_extensions_specs','a:1:{s:5:\"en_US\";a:5:{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\":6:{s:4:\"name\";s:11:\"WooPayments\";s:11:\"description\";s:154:\"Accept credit cards and other popular payment methods with WooPayments\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:39:{i:0;s:2:\"US\";i:1;s:2:\"PR\";i:2;s:2:\"AU\";i:3;s:2:\"CA\";i:4;s:2:\"DE\";i:5;s:2:\"ES\";i:6;s:2:\"FR\";i:7;s:2:\"GB\";i:8;s:2:\"IE\";i:9;s:2:\"IT\";i:10;s:2:\"NZ\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"NL\";i:14;s:2:\"PL\";i:15;s:2:\"PT\";i:16;s:2:\"CH\";i:17;s:2:\"HK\";i:18;s:2:\"SG\";i:19;s:2:\"CY\";i:20;s:2:\"DK\";i:21;s:2:\"EE\";i:22;s:2:\"FI\";i:23;s:2:\"GR\";i:24;s:2:\"LU\";i:25;s:2:\"LT\";i:26;s:2:\"LV\";i:27;s:2:\"NO\";i:28;s:2:\"MT\";i:29;s:2:\"SI\";i:30;s:2:\"SK\";i:31;s:2:\"BG\";i:32;s:2:\"CZ\";i:33;s:2:\"HR\";i:34;s:2:\"HU\";i:35;s:2:\"RO\";i:36;s:2:\"SE\";i:37;s:2:\"JP\";i:38;s:2:\"AE\";}s:9:\"operation\";s:2:\"in\";}i:1;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: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\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"is_built_by_wc\";b:1;s:14:\"min_wp_version\";s:3:\"5.9\";s:3:\"key\";s:20:\"woocommerce-payments\";}i:1;O:8:\"stdClass\":5:{s:4:\"name\";s:20:\"WooCommerce Shipping\";s:11:\"description\";s:119:\"Print shipping labels with WooCommerce Shipping\";s:10:\"is_visible\";a:3:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:1:{i:0;s:2:\"US\";}s:9:\"operation\";s:2:\"in\";}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\";a: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\":5:{s:4:\"name\";s:15:\"WooCommerce Tax\";s:11:\"description\";s:111:\"Get automated sales tax with WooCommerce Tax\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:11:{i:0;s:2:\"US\";i:1;s:2:\"FR\";i:2;s:2:\"GB\";i:3;s:2:\"DE\";i:4;s:2:\"CA\";i:5;s:2:\"AU\";i:6;s:2:\"GR\";i:7;s:2:\"BE\";i:8;s:2:\"PT\";i:9;s:2:\"DK\";i:10;s:2:\"SE\";}s:9:\"operation\";s:2:\"in\";}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\":6:{s:4:\"name\";s:7:\"Jetpack\";s:11:\"description\";s:110:\"Enhance speed and security with Jetpack\";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:14:\"min_wp_version\";s:3:\"6.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:4:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:115:\"Level up your email marketing with MailPoet\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:1;i:1;i:84;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:8:\"mailpoet\";}i:1;O:8:\"stdClass\":8:{s:4:\"name\";s:22:\"Google for WooCommerce\";s:11:\"description\";s:126:\"Drive sales with Google for WooCommerce\";s:9:\"image_url\";s:94:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/google.svg\";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:15:\"min_php_version\";s:3:\"7.4\";s:3:\"key\";s:23:\"google-listings-and-ads\";}i:2;O:8:\"stdClass\":8:{s:4:\"name\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:76:\"Get your products in front of Pinners searching for ideas and things to buy.\";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:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:1;i:1;i:60;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.3\";s:3:\"key\";s:25:\"pinterest-for-woocommerce\";}i:3;O:8:\"stdClass\":7:{s:4:\"name\";s:24:\"Facebook for WooCommerce\";s:11:\"description\";s:141:\"List products and create ads on Facebook and Instagram with Facebook for WooCommerce\";s:9:\"image_url\";s:96:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/facebook.png\";s:10:\"manage_url\";s:26:\"admin.php?page=wc-facebook\";s:10:\"is_visible\";b:0;s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:24:\"facebook-for-woocommerce\";}}}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.svg\";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:7:\"Klaviyo\";s:11:\"description\";s:138:\"Grow and retain customers with intelligent, impactful email and SMS marketing automation and a consolidated view of customer interactions.\";s:9:\"image_url\";s:95:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/klaviyo.png\";s:10:\"manage_url\";s:31:\"admin.php?page=klaviyo_settings\";s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:11:\"klaviyo:alt\";}i:2;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:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/mailchimp.svg\";s:10:\"manage_url\";s:36:\"admin.php?page=mailchimp-woocommerce\";s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:29:\"mailchimp-for-woocommerce:alt\";}}}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:4:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"Google for WooCommerce\";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:94:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/google.svg\";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\":7:{s:4:\"name\";s:22:\"TikTok for WooCommerce\";s:9:\"image_url\";s:94:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/tiktok.svg\";s:11:\"description\";s:118:\"Grow your online sales by promoting your products on TikTok to over one billion monthly active users around the world.\";s:10:\"manage_url\";s:21:\"admin.php?page=tiktok\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:40:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"AT\";i:4;s:2:\"BE\";i:5;s:2:\"CZ\";i:6;s:2:\"DK\";i:7;s:2:\"FI\";i:8;s:2:\"FR\";i:9;s:2:\"DE\";i:10;s:2:\"GR\";i:11;s:2:\"HU\";i:12;s:2:\"IE\";i:13;s:2:\"IT\";i:14;s:2:\"NL\";i:15;s:2:\"PL\";i:16;s:2:\"PT\";i:17;s:2:\"RO\";i:18;s:2:\"ES\";i:19;s:2:\"SE\";i:20;s:2:\"GB\";i:21;s:2:\"CH\";i:22;s:2:\"NO\";i:23;s:2:\"AU\";i:24;s:2:\"NZ\";i:25;s:2:\"SG\";i:26;s:2:\"MY\";i:27;s:2:\"PH\";i:28;s:2:\"ID\";i:29;s:2:\"VN\";i:30;s:2:\"TH\";i:31;s:2:\"KR\";i:32;s:2:\"IL\";i:33;s:2:\"AE\";i:34;s:2:\"RU\";i:35;s:2:\"UA\";i:36;s:2:\"TR\";i:37;s:2:\"SA\";i:38;s:2:\"BR\";i:39;s:2:\"JP\";}s:9:\"operation\";s:2:\"in\";}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:19:\"tiktok-for-business\";}i:2;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:1;s:3:\"key\";s:29:\"pinterest-for-woocommerce:alt\";}i:3;O:8:\"stdClass\":7:{s:4:\"name\";s:24:\"Facebook for WooCommerce\";s:11:\"description\";s:55:\"List products and create ads on Facebook and Instagram.\";s:9:\"image_url\";s:96:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/facebook.png\";s:10:\"manage_url\";s:26:\"admin.php?page=wc-facebook\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:28:\"facebook-for-woocommerce:alt\";}}}s:17:\"obw/core-profiler\";O:8:\"stdClass\":3:{s:3:\"key\";s:17:\"obw/core-profiler\";s:5:\"title\";s:15:\"Grow your store\";s:7:\"plugins\";a:11:{i:0;O:8:\"stdClass\":11:{s:4:\"name\";s:11:\"WooPayments\";s:11:\"description\";s:89:\"Securely accept payments and manage payment activity straight from your store\'s dashboard\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:39:{i:0;s:2:\"US\";i:1;s:2:\"PR\";i:2;s:2:\"AU\";i:3;s:2:\"CA\";i:4;s:2:\"DE\";i:5;s:2:\"ES\";i:6;s:2:\"FR\";i:7;s:2:\"GB\";i:8;s:2:\"IE\";i:9;s:2:\"IT\";i:10;s:2:\"NZ\";i:11;s:2:\"AT\";i:12;s:2:\"BE\";i:13;s:2:\"NL\";i:14;s:2:\"PL\";i:15;s:2:\"PT\";i:16;s:2:\"CH\";i:17;s:2:\"HK\";i:18;s:2:\"SG\";i:19;s:2:\"CY\";i:20;s:2:\"DK\";i:21;s:2:\"EE\";i:22;s:2:\"FI\";i:23;s:2:\"GR\";i:24;s:2:\"LU\";i:25;s:2:\"LT\";i:26;s:2:\"LV\";i:27;s:2:\"NO\";i:28;s:2:\"MT\";i:29;s:2:\"SI\";i:30;s:2:\"SK\";i:31;s:2:\"BG\";i:32;s:2:\"CZ\";i:33;s:2:\"HR\";i:34;s:2:\"HU\";i:35;s:2:\"RO\";i:36;s:2:\"SE\";i:37;s:2:\"JP\";i:38;s:2:\"AE\";}s:9:\"operation\";s:2:\"in\";}i:1;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: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\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:9:\"operation\";s:9:\"!contains\";s:5:\"value\";s:31:\"cbd-other-hemp-derived-products\";s:7:\"default\";a:0:{}}}s:14:\"is_built_by_wc\";b:1;s:14:\"min_wp_version\";s:3:\"5.9\";s:3:\"key\";s:20:\"woocommerce-payments\";s:5:\"label\";s:25:\"Get paid with WooPayments\";s:9:\"image_url\";s:120:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo-rebrand-2.svg\";s:15:\"learn_more_link\";s:123:\"https://woocommerce.com/products/woocommerce-payments?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:5;s:12:\"requires_jpc\";b:1;}i:1;O:8:\"stdClass\":9:{s:4:\"name\";s:20:\"WooCommerce Shipping\";s:11:\"description\";s:76:\"Print USPS and DHL labels directly from your dashboard and save on shipping.\";s:10:\"is_visible\";a:1:{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:\"=\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:29:\"woocommerce-services:shipping\";s:5:\"label\";s:47:\"Print shipping labels with WooCommerce Shipping\";s:9:\"image_url\";s:120:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo-rebrand-2.svg\";s:15:\"learn_more_link\";s:114:\"https://woocommerce.com/woocommerce-shipping?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:3;}i:2;O:8:\"stdClass\":11:{s:4:\"name\";s:7:\"Jetpack\";s:11:\"description\";s:84:\"Save time on content creation — unlock high-quality blog posts and pages using AI.\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:0;s:14:\"min_wp_version\";s:3:\"6.0\";s:3:\"key\";s:7:\"jetpack\";s:5:\"label\";s:48:\"Boost content creation with Jetpack AI Assistant\";s:9:\"image_url\";s:114:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-jetpack.svg\";s:15:\"learn_more_link\";s:110:\"https://woocommerce.com/products/jetpack?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:8;s:12:\"requires_jpc\";b:1;}i:3;O:8:\"stdClass\":11:{s:4:\"name\";s:25:\"Pinterest for WooCommerce\";s:11:\"description\";s:56:\"Get your products in front of a highly engaged audience.\";s:9:\"image_url\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-pinterest.svg\";s:10:\"manage_url\";s:51:\"admin.php?page=wc-admin&path=%2Fpinterest%2Flanding\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:1;i:1;i:60;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.3\";s:3:\"key\";s:25:\"pinterest-for-woocommerce\";s:5:\"label\";s:37:\"Showcase your products with Pinterest\";s:15:\"learn_more_link\";s:128:\"https://woocommerce.com/products/pinterest-for-woocommerce?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:2;}i:4;O:8:\"stdClass\":9:{s:4:\"name\";s:32:\"Meta Ads & Pixel for WooCommerce\";s:11:\"description\";s:78:\"Sync your store catalog, set up pixel tracking, and run targeted ad campaigns.\";s:9:\"image_url\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/kliken-ads-pixel-for-meta.svg\";s:10:\"manage_url\";s:40:\"admin.php?page=kliken-ads-pixel-for-meta\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:61;i:1;i:120;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}s:3:\"key\";s:25:\"kliken-ads-pixel-for-meta\";s:5:\"label\";s:46:\"Grow your business with Facebook and Instagram\";s:15:\"learn_more_link\";s:121:\"https://woocommerce.com/products/meta-ads-and-pixel?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:2;}i:5;O:8:\"stdClass\":10:{s:4:\"name\";s:8:\"MailPoet\";s:11:\"description\";s:71:\"Send purchase follow-up emails, newsletters, and promotional campaigns.\";s:10:\"manage_url\";s:35:\"admin.php?page=mailpoet-newsletters\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:1;i:1;i:84;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:8:\"mailpoet\";s:5:\"label\";s:34:\"Reach your customers with MailPoet\";s:9:\"image_url\";s:115:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-mailpoet.svg\";s:15:\"learn_more_link\";s:111:\"https://woocommerce.com/products/mailpoet?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:7;}i:6;O:8:\"stdClass\":10:{s:4:\"name\";s:7:\"Klaviyo\";s:11:\"description\";s:105:\"Grow and retain customers with email, SMS, automations, and a consolidated view of customer interactions.\";s:9:\"image_url\";s:95:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/klaviyo.png\";s:10:\"manage_url\";s:31:\"admin.php?page=klaviyo_settings\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";s:5:\"value\";a:2:{i:0;i:85;i:1;i:120;}s:7:\"default\";b:0;s:9:\"operation\";s:5:\"range\";}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:7:\"klaviyo\";s:5:\"label\";s:7:\"Klaviyo\";s:15:\"learn_more_link\";s:126:\"https://woocommerce.com/products/klaviyo-for-woocommerce?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:7;}i:7;O:8:\"stdClass\":11:{s:4:\"name\";s:22:\"Google for WooCommerce\";s:11:\"description\";s:83:\"Reach millions of active shoppers across Google with free product listings and ads.\";s:9:\"image_url\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-google.svg\";s:10:\"manage_url\";s:46:\"admin.php?page=wc-admin&path=%2Fgoogle%2Fstart\";s:10:\"is_visible\";b:1;s:14:\"is_built_by_wc\";b:1;s:15:\"min_php_version\";s:3:\"7.4\";s:3:\"key\";s:23:\"google-listings-and-ads\";s:5:\"label\";s:39:\"Drive sales with Google for WooCommerce\";s:15:\"learn_more_link\";s:126:\"https://woocommerce.com/products/google-listings-and-ads?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:6;}i:8;O:8:\"stdClass\":9:{s:4:\"name\";s:15:\"WooCommerce Tax\";s:11:\"description\";s:94:\"Automatically calculate how much sales tax should be collected – by city, country, or state.\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:11:{i:0;s:2:\"US\";i:1;s:2:\"FR\";i:2;s:2:\"GB\";i:3;s:2:\"DE\";i:4;s:2:\"CA\";i:5;s:2:\"AU\";i:6;s:2:\"GR\";i:7;s:2:\"BE\";i:8;s:2:\"PT\";i:9;s:2:\"DK\";i:10;s:2:\"SE\";}s:9:\"operation\";s:2:\"in\";}}s:14:\"is_built_by_wc\";b:1;s:3:\"key\";s:24:\"woocommerce-services:tax\";s:5:\"label\";s:44:\"Get automated tax rates with WooCommerce Tax\";s:9:\"image_url\";s:120:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-woo-rebrand-2.svg\";s:15:\"learn_more_link\";s:106:\"https://woocommerce.com/products/tax?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:4;}i:9;O:8:\"stdClass\":10:{s:4:\"name\";s:22:\"TikTok for WooCommerce\";s:9:\"image_url\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-tiktok.svg\";s:11:\"description\";s:64:\"Create advertising campaigns and reach one billion global users.\";s:10:\"manage_url\";s:21:\"admin.php?page=tiktok\";s:10:\"is_visible\";a:1:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:40:{i:0;s:2:\"US\";i:1;s:2:\"CA\";i:2;s:2:\"MX\";i:3;s:2:\"AT\";i:4;s:2:\"BE\";i:5;s:2:\"CZ\";i:6;s:2:\"DK\";i:7;s:2:\"FI\";i:8;s:2:\"FR\";i:9;s:2:\"DE\";i:10;s:2:\"GR\";i:11;s:2:\"HU\";i:12;s:2:\"IE\";i:13;s:2:\"IT\";i:14;s:2:\"NL\";i:15;s:2:\"PL\";i:16;s:2:\"PT\";i:17;s:2:\"RO\";i:18;s:2:\"ES\";i:19;s:2:\"SE\";i:20;s:2:\"GB\";i:21;s:2:\"CH\";i:22;s:2:\"NO\";i:23;s:2:\"AU\";i:24;s:2:\"NZ\";i:25;s:2:\"SG\";i:26;s:2:\"MY\";i:27;s:2:\"PH\";i:28;s:2:\"ID\";i:29;s:2:\"VN\";i:30;s:2:\"TH\";i:31;s:2:\"KR\";i:32;s:2:\"IL\";i:33;s:2:\"AE\";i:34;s:2:\"RU\";i:35;s:2:\"UA\";i:36;s:2:\"TR\";i:37;s:2:\"SA\";i:38;s:2:\"BR\";i:39;s:2:\"JP\";}s:9:\"operation\";s:2:\"in\";}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:19:\"tiktok-for-business\";s:5:\"label\";s:31:\"Create ad campaigns with TikTok\";s:15:\"learn_more_link\";s:125:\"https://woocommerce.com/products/tiktok-for-woocommerce?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:1;}i:10;O:8:\"stdClass\":10:{s:4:\"name\";s:29:\"Print on Demand with Printful\";s:9:\"image_url\";s:115:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/obw-free-extensions/images/core-profiler/logo-printful.png\";s:11:\"description\";s:66:\"Design and easily sell custom print products online with Printful.\";s:10:\"manage_url\";s:0:\"\";s:10:\"is_visible\";a:2:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:5:\"value\";a:9:{i:0;s:2:\"AU\";i:1;s:2:\"GB\";i:2;s:2:\"CA\";i:3;s:2:\"ES\";i:4;s:2:\"DE\";i:5;s:2:\"FR\";i:6;s:2:\"NL\";i:7;s:2:\"BE\";i:8;s:2:\"LU\";}s:9:\"operation\";s:2:\"in\";}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:10:\"industry.0\";}}}s:11:\"option_name\";s:30:\"woocommerce_onboarding_profile\";s:5:\"value\";s:24:\"clothing_and_accessories\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}s:14:\"is_built_by_wc\";b:0;s:3:\"key\";s:33:\"printful-shipping-for-woocommerce\";s:5:\"label\";s:29:\"Print on Demand with Printful\";s:15:\"learn_more_link\";s:111:\"https://woocommerce.com/products/printful?utm_source=storeprofiler&utm_medium=product&utm_campaign=freefeatures\";s:16:\"install_priority\";i:9;}}}}}','off'),(525,'wc_blocks_db_schema_version','260','auto'),(526,'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:0;}','off'),(527,'_transient_timeout_woocommerce_admin_remote_inbox_notifications_specs','1742140527','off'),(528,'_transient_woocommerce_admin_remote_inbox_notifications_specs','a:1:{s:5:\"en_US\";a:57:{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 WooCommerce Shipping – 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: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.

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 WooCommerce Shipping.\";}}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: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:46:\"WooPayments setup - let us know what you think\";s:7:\"content\";s:137:\"Congrats on enabling WooPayments 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:58:\"https://automattic.survey.fm/woopayments-new-user-feedback\";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 WooCommerce Subscriptions to version 3.0.15 or later.

Click the button below to view and update to the latest Subscriptions version, or log in to WooCommerce.com Dashboard and navigate to your Downloads page.

We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.

If you have any questions we are here to help — just open a ticket.\";}}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§ion=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!

Now is a great time to upgrade to our latest PayPal extension to continue to receive support and updates with PayPal.

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.

Start using our latest PayPal today 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).

Our investigation into this vulnerability is ongoing, but we wanted to let you know now about the importance of updating immediately.

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).

Our investigation into this vulnerability is ongoing, but we wanted to let you know now about the importance of updating immediately.

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).

Your store has been updated to the latest secure version(s). 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).

Your store has been updated to the latest secure version(s). 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: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:\"Your store has been updated to the latest secure version of WooCommerce. 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 PayPal Payments 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:\"Your store has been updated to the latest secure version of WooCommerce. 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 Plugins > Installed Plugins, 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: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:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";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:58:\"Security vulnerability patched in WooCommerce Eway Gateway\";s:7:\"content\";s:323:\"In response to a potential vulnerability identified in WooCommerce Eway Gateway versions 3.1.0 to 3.5.0, we’ve worked to deploy security fixes and have released an updated version.\r\nNo external exploits have been detected, but we recommend you update to your latest supported version 3.1.26, 3.2.3, 3.3.1, 3.4.6, or 3.5.1\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:62:\"needs-update-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:63:\"needs-update-eway-payment-gateway-rin-dismiss-button-2022-12-20\";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:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:7:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-03 23:45:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.1.26\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"3.5.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"3.1.0\";}}}s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:43:\"updated-eway-payment-gateway-rin-2022-12-20\";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:\"WooCommerce Eway Gateway has been automatically updated\";s:7:\"content\";s:280:\"Your store is now running the latest secure version of WooCommerce Eway Gateway. We worked with the WordPress Plugins team to deploy a software update to stores running WooCommerce Eway Gateway (versions 3.1.0 to 3.5.0) in response to a security vulnerability that was discovered.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"updated-eway-payment-gateway-rin-action-button-2022-12-20\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"See all updates\";}}s:3:\"url\";s:16:\"/update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"updated-eway-payment-gateway-rin-dismiss-button-2022-12-20\";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:1:\"#\";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-01-03 23:45:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"needs-update-eway-payment-gateway-rin-2022-12-20\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:5:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"3.1.26\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.3\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:24:\"woocommerce-gateway-eway\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}}}}}s:31:\"ecomm-wc-navigation-survey-2023\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"ecomm-wc-navigation-survey-2023\";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:39:\"Navigating WooCommerce on WordPress.com\";s:7:\"content\";s:166:\"We are improving the WooCommerce navigation on WordPress.com and would love your help to make it better! Please share your experience with us 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:58:\"https://automattic.survey.fm/new-ecommerce-plan-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:\"2023-01-16 09:53:44\";}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:180;}}}s:39:\"woopay-beta-merchantrecruitment-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"woopay-beta-merchantrecruitment-04MAY23\";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:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:319:\"WooPay, a new express checkout feature built into WooCommerce Payments, is now available —and we’re inviting you to be one of the first to try it. \r\n

\r\nBoost conversions by offering your customers a simple, secure way to pay with a single click.\r\n

\r\nGet started in seconds.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:48:\"woopay-beta-merchantrecruitment-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";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:155:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-activate-learnmore-04MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;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:\"2023-05-04 18:00:27\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:42:\"woocommerce-wcpay-march-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-wcpay-march-2023-update-needed\";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:57:\"Action required: Security update for WooCommerce Payments\";s:7:\"content\";s:296:\"Your store requires a security update for WooCommerce Payments. Please update to the latest version of WooCommerce Payments immediately to address a potential vulnerability discovered on March 22. For more information on how to update, visit this WooCommerce Developer Blog Post.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:49:\"woocommerce-wcpay-march-2023-update-needed-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"See Blog Post\";}}s:3:\"url\";s:122:\"https://developer.woocommerce.com/2023/03/23/critical-vulnerability-detected-in-woocommerce-payments-what-you-need-to-know\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:57:\"woocommerce-wcpay-march-2023-update-needed-dismiss-button\";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:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:11:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-03-22 20:25:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.1\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"4.8.0\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"5.6.1\";}}}s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";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:52:\"Accept in-person contactless payments on your iPhone\";s:7:\"content\";s:230:\"Tap to Pay on iPhone and WooCommerce Payments is quick, secure, and simple to set up — no extra terminals or card readers are needed. Accept contactless debit and credit cards, Apple Pay, and other NFC digital wallets in person.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"tap_to_pay_iphone_q2_2023_no_wcpay\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:20:\"Simplify my payments\";}}s:3:\"url\";s:143:\"https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox_note&utm_medium=product&utm_campaign=tap_to_pay_iphone_q2_2023_no_wcpay\";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:\"2023-04-03 23:59:47\";}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-payments\";}}}}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\";}}}s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-WCPreOrders-april-2023-update-needed\";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:68:\"Action required: Security update of WooCommerce Pre-Orders extension\";s:7:\"content\";s:220:\"Your store requires a security update for the WooCommerce Pre-Orders extension. Please update the WooCommerce Pre-Orders extension immediately to address a potential vulnerability discovered on April 11.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:18:\"extension-settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:15:\"update-core.php\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;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:1:\"#\";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:\"2023-04-12 22:16:37\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:22:\"woocommerce-pre-orders\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.0.0\";}}}s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-merchantrecruitment-update-04MAY23\";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:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:321:\"WooPay, a new express checkout feature built into WooCommerce Payments, is now available — and you’re invited to try it. \r\n

\r\nBoost conversions by offering your customers a simple, secure way to pay with a single click.\r\n

\r\nUpdate WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:52:\"woopay-beta-merchantrecruitment-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:55:\"woopay-beta-merchantrecruitment-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;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:\"2023-05-04 18:00:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.handinhandparenting.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://pritikinfoods.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://utahrecsports.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.hunterpta.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.smokinbeans.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://shulabeauty.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bingeworthytvmerch.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://s91.4d8.myftpupload.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://stephanienicolenorris.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://aliensshirt.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://libertyordeathapparelllc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://cowboystatedaily.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:42:\"https://fundrgear.com/beckendorffathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:50:\"http://wordpress-528155-2231771.cloudwaysapps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://checkout.sohaprice.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://amadozstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://eliwehbe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://lunabra.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://nptixx.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://louisianapantry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://aplusanatomy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://wildsvg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://bleachfilm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://benabeautyspa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:47:\"http://barrettfitnessenterprises.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://goabroadable.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://alexoathletica.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.fourpurls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.hagmannreport.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://busybeeorganics.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nallsproduce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://bigtimebats.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://shop.cookingwithkarli.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.queenofpeacemedia.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://bigjohnsbeefjerky.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://paperbyjaney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://carolinarisemembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://veroticaevents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://spira.farm\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://endlessassist.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://betterlifeblog.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://ashleighrenard.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.turkeymerck.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://carfiershop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://normanmusicfestival.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://www.olfactoryfactoryllc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://fundrgear.com/anthonyathletics\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"http://tkechilifestdotcom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://pvsa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://becbatop.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wwmeconvention.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://lswmp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bubbaskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://fusango.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://vcdpostershow.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://www.rileysribz.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.fakeultrasound.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://onelongfellowsquare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://agodpod.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/littleladybulldogs\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://thecirclelarp.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://byletam.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.nachonite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://designerdab.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2151.temp.domains/~lovebyt2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://shortporchbaseballcompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://distancecme.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://middleswarthchips.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://railblazausa.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://mikescountrymeats.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://www.woodenshoe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://rockspringscafe.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"http://footballfangears.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://ybtoner.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://simplyclayyy.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://naturecreation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://marisrodriguez.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://asanteinternational.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://theatre55.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://carolynscreativeclassroom.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.miiriya.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://trendyds.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wooedbythefood.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://papasteamstores.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://omdurags.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://happydogbarkery.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"http://kitbose.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://seamossdeals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://zeatala.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://shop.atwaterffa.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://www.brettsfirstresponders.org/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://shirtactive.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://boerneparade.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://zorahshrine.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://davidcervenka.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://addisjourney.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://305ycle.cc\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"http://yourworstnightmarehaunt.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://westcoastpreps.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://checkout.sohaking.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://www.theunshakeablepundit.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.stellaandchewys.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.raywhitcomb.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"http://constellationtheatercompany.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://stacynguyen.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:46:\"https://fundrgear.com/lakecreekgirlsbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://winslowartcenter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://flufftastik.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mygreenbeach.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://ebookvip.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/needvillevolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://bifocalmedia.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://clrc.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://hyperpins.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/lakecreekboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://fundrgear.com/kparktennis\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mogadorspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://fundrgear.com/newcaneytrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://sigmascents.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://bsharisemoore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://morrflate.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://westbrosinc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://shop.danceplexaz.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://chikepod.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.advanahealth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://tatter.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://greatawakeningbrewing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://waterfowlfestival.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://preppedwellness.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://events.thus.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://stormtide.thefifthtrooper.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.tabsynth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"http://staging.fliptheswitchon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://duffysdough.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodieliving.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://breakerbrotherstcg.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://andymation.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://recklessmetals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://sophielark.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://wp.arabtherapy.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://creativeappliques.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://altitude.win\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woopay-beta-existingmerchants-noaction-27APR23\";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:15:\"WooPay is back!\";s:7:\"content\";s:361:\"Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. We’re excited to announce that WooPay availability has resumed. No action is required on your part.\r\n

\r\nYou can now continue boosting conversions by offering your customers a simple, secure way to pay with a single click.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-existingmerchants-noaction-documentation-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Documentation\";}}s:3:\"url\";s:178:\"https://woocommerce.com/document/woopay-merchant-documentation/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-existingmerchants-noaction-documentation-27APR23\";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:\"2023-04-26 19:00:23\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:44:\"woopay-beta-existingmerchants-update-27APR23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woopay-beta-existingmerchants-update-27APR23\";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:15:\"WooPay is back!\";s:7:\"content\";s:368:\"Thanks for previously trying WooPay, the express checkout feature built into WooCommerce Payments. We’re excited to announce that WooPay availability has resumed.\r\n

\r\n\r\nUpdate to the latest WooCommerce Payments version to continue boosting conversions by offering your customers a simple, secure way to pay with a single click.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:50:\"woopay-beta-existingmerchants-update-WCPay-27APR23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;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:\"2023-04-26 19:00:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.0\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:38:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://store.startingstrongman.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://joacreativelab.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.pureskincaresalon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://mariablaquier.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://getprodigital.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://dalefrickeholsters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"https://sstour.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://tk-txstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://humanspiritproject.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://viradadrums.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://rosariumblends.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://organicskincare.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://stuckpigmedical.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.seattlegiftbasket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://www.cloverandviolet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gvscholarship.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://yesimadiva.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://www.old.jmtrashbgone.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://victorialansford.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://craftcosplay.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://thefossilexchange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://nextgenspeed.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cappellarecords.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://ontimesupermarket.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://new2knox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://lovestudiollc.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://socceruniformkits.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://willowcreativ.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://summitprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://howda.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://soapavenuecompany.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"https://subsbox.mystagingwebsite.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://wifflebreakers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.mps-outfitters.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://howardharrisassociates.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bettersaferadio.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://bunnyluna.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-04MAY23\";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:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woopay-beta-merchantrecruitment-short-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:64:\"woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";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:161:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-04MAY23\";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:\"2023-05-04 18:00:36\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-04MAY23\";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:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature.
Boost conversions by letting customers pay with a single click.

Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-04MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;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:\"2023-05-04 18:00:20\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:144:{i:0;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.bluebeautifly.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://indianrivernatural.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:3;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://fouroaksproducts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:14:\"https://acb.la\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:5;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://www.sweetpotatoplant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:6;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"http://www.gocaseyourself.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:7;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://laugun.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:8;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://nebraskadaybyday.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:9;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://vintagemarche727.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:10;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:17:\"https://kohai.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:11;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://gracegaze.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:12;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://aliensmeaning.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:13;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://myheritagegardens.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:14;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://shopmoresport.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:15;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://oladino.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:16;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://frogjumpstore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:17;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://cagedthundermma.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:18;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/mcelwainelementary\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:19;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://mgco.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:20;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://500gp.io/pay\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:21;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://waterglassslimes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:22;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://antiqueful.shop/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:23;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://deeperkidmin.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:24;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:45:\"https://fundrgear.com/cyspringsboysbasketball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:25;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://houseofminifigs.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:26;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"http://box2273.temp.domains/~dreambx2/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:27;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://madebymixture.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:28;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://reliabletrash.company\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:29;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://www.daddybutter.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:30;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://circleqessentials.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:31;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://garlicbraids.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:32;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://fbdonline.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:33;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://galaxysedge.us\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:34;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://duckduckbeetfarm.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:35;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://varsitygraphics.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:36;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"http://jademackenzie.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:37;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://kristysketolifestyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:38;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://covid19criticalcare.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:39;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://parkviewprep.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:40;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://rock-fest.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:41;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"http://fillinxsolutions.com/etarix/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:42;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://doughremitx.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:43;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://www.montanafiddlecamp.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:44;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://fococomiccon.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:45;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://patricendouglas.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:46;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://hectue.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:47;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://montanamaxbbq.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:48;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://smellzoom.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:49;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://uptowne.theoandson.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:50;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://superbasic.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:51;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ppodstore.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:52;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://kerenzan.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:53;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://a13bargains.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:54;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://colorgr.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:55;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://mindbodysoulcandles.com/Charlotte\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:56;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://peaceloveandadhd.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:57;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://seymoursmash.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:58;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mwtournament.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:59;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:43:\"https://fundrgear.com/beckendorffgirlstrack\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:60;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:15:\"No results foun\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:61;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"http://allswellnyc.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:62;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://childoftheredwoodsmembers.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:63;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:41:\"https://fundrgear.com/grandoaksvolleyball\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:64;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.newhollandrochester.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:65;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://www.purplecatvet.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:66;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:39:\"https://www.mustangmountaincoaster.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:67;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://www.roccanj.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:68;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://www.teerico.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:69;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://passportunlimited.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:70;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.paladincards20.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:71;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://giantshorties.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:72;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visualsports.biz\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:73;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://thefreakinricanrestaurant.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:74;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://arequestionscom.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:75;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"https://pt.tktxcompanystore.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:76;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://fitfoodiechicks.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:77;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://nutoshop.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:78;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://backwoodzhiphop.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:79;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://gartapparel.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:80;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://bodega.badiaspices.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:81;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://rampartrange.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:82;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://teeuni.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:83;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://bearsinthealley.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:84;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"http://vitalbooks.net/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:85;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://hair-free-hair-remover.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:86;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://gangtaynails.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:87;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://crochetfoundry.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:88;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://westcoastbelts.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:89;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:31:\"http://payment.sundryfiles.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:90;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://ccadunkirk.mudhenmama.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:91;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://desertsupercup.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:92;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://shops-eminem.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:93;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://75yearsofracing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:94;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:18:\"http://tixpls.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:95;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:44:\"http://legacyoutfitters.org/banquet/raffles/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:96;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://91170e9fc9.nxcli.io/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:97;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://beachwayrentals.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:98;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://thehivelivebox.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:99;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:16:\"https://esd.camp\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:100;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://mfkgamecalls.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:101;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://1greatce.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:102;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:25:\"https://www.luthyouth.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:103;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:34:\"https://electionintegrityidaho.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:104;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://renbundle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:105;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"http://premierseamoss.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:106;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://teemart.net\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:107;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:40:\"https://fundrgear.com/beckendorffgirlsbb\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:108;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://visiblechild.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:109;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"http://ebookvital.me/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:110;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:21:\"https://renemarsh.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:111;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://www.eventricate.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:112;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"https://transgression.party\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:113;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://profadex.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:114;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:28:\"https://mxsbattlegrounds.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:115;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.poeinbaltimore.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:116;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:19:\"https://freefall.gg\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:117;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"https://underthechurchhatblog.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:118;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"http://naksparkle.store/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:119;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"http://bearlyburly.gay/inventory\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:120;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.premierboneandjoint.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:121;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://farm-2-bowl.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:122;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://hollandgrill.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:123;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://lividian.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:124;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:29:\"https://www.trainingrange.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:125;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://sarakepskitchen.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:126;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:35:\"https://www.phoenixyouththeatre.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:127;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://drivenarmsco.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:128;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://audiobro.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:129;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://www.iowaabortionaccessfund.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:130;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:33:\"http://findthemenu.wordpress.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:131;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://moderndepot.co\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:132;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://granitesupplements.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:133;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:24:\"https://healthyrican.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:134;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://utest.edsandbox.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:135;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"http://c-pounds.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:136;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:32:\"https://littleschoolofsmiths.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:137;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:23:\"https://goblinstyle.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:138;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://proper-testing.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:139;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:30:\"https://www.cosafoundation.org\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:140;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:26:\"https://farmsteadboxes.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:141;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:27:\"http://fundraise4books.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:142;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:22:\"https://norskenook.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}i:143;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:20:\"https://cajulove.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTA\";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:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTA\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test A\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";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:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;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:\"2023-05-05 00:01:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"https://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTB\";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:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTB\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test B\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";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:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTA\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;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:\"2023-05-05 20:58:43\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:36:\"http://pieroatomic3.wpcomstaging.com\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTC\";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:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTC\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test C\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";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:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTC\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;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:\"2023-05-05 21:03:33\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:38:\"https://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";O:8:\"stdClass\":8:{s:4:\"slug\";s:51:\"woopay-beta-merchantrecruitment-short-06MAY23-TESTD\";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:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woopay-beta-merchantrecruitment-short-activate-06MAY23-TESTD\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:22:\"Activate WooPay Test D\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:70:\"woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";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:167:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-06MAY23-TESTD\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;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:\"2023-05-05 21:32:09\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:7:\"siteurl\";s:5:\"value\";s:37:\"http://pieroatomic3.wpcomstaging.com/\";s:7:\"default\";s:0:\"\";s:9:\"operation\";s:1:\"=\";}}}s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woopay-beta-merchantrecruitment-short-09MAY23\";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:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:181:\"Be one of the first to try WooPay, a new express checkout feature for WooCommerce Payments. \r\n

\r\nBoost conversions by letting customers pay with a single click.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-activate-button-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:72:\"woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";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:169:\"https://woocommerce.com/woopay-businesses/?utm_source=inbox_note&utm_medium=product&utm_campaign=woopay-beta-merchantrecruitment-short-activate-learnmore-button2-09MAY23\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;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:\"2023-05-08 19:18:44\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.8.1\";}i:2;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:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;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:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woopay-beta-merchantrecruitment-short-update-09MAY23\";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:61:\"Increase conversions with WooPay — our fastest checkout yet\";s:7:\"content\";s:227:\"Be one of the first to try WooPay, our new express checkout feature.
Boost conversions by letting customers pay with a single click.

Update to the latest version of WooCommerce Payments to get started.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:58:\"woopay-beta-merchantrecruitment-short-update-WCPay-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:27:\"Update WooCommerce Payments\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:61:\"woopay-beta-merchantrecruitment-short-update-activate-09MAY23\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Activate WooPay\";}}s:3:\"url\";s:93:\"admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments&method=platform_checkout\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;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:\"2023-05-08 19:45:57\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.8.1\";}i:2;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:17:\"platform_checkout\";}}}s:11:\"option_name\";s:41:\"woocommerce_woocommerce_payments_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"no\";s:7:\"default\";b:0;}i:3;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:31:\"data.platform_checkout_eligible\";}}}s:11:\"option_name\";s:18:\"wcpay_account_data\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;s:7:\"default\";b:0;}}}s:52:\"woocommerce-WCSubscriptions-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:52:\"woocommerce-WCSubscriptions-June-2023-updated-needed\";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:61:\"Action required: Security update of WooCommerce Subscriptions\";s:7:\"content\";s:197:\"Your store requires a security update for the WooCommerce Subscriptions plugin. Please update the WooCommerce Subscriptions plugin immediately to address a potential vulnerability.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:68:\"woocommerce-WCSubscriptions-June-2023-updated-needed-Plugin-Settings\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:60:\"woocommerce-WCSubscriptions-June-2023-updated-needed-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:1:\"#\";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:\"2023-06-06 08:00:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"2.1.0\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"5.1.2\";}}}s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";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:87:\"Action required: Security update of WooCommerce Returns and Warranty Requests extension\";s:7:\"content\";s:270:\"Your store requires a security update for the Returns and Warranty Requests extension. Please update to the latest version of the WooCommerce Returns and Warranty Requests extension immediately to address a potential vulnerability discovered on May 31.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:54:\"woocommerce-WCReturnsWarranty-June-2023-updated-needed\";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:1:\"#\";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:\"2023-06-02 23:53:57\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-warranty\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.1.8\";}}}s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";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:65:\"Action required: Security update of WooCommerce One Page Checkout\";s:7:\"content\";s:232:\"Your shop requires a security update to address a vulnerability in the WooCommerce One Page Checkout extension. The fix for this vulnerability was released for this extension on June 13th. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:42:\"woocommerce-WCOPC-June-2023-updated-needed\";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:1:\"#\";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:\"2023-06-21 14:05:46\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:29:\"woocommerce-one-page-checkout\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"2.4.0\";}}}s:40:\"woocommerce-WCGC-July-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";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:68:\"Action required: Security update of WooCommerce GoCardless Extension\";s:7:\"content\";s:205:\"Your shop requires a security update to address a vulnerability in the WooCommerce GoCardless extension. The fix for this vulnerability was released on July 4th. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:40:\"woocommerce-WCGC-July-2023-update-needed\";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:1:\"#\";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:\"2023-07-04 15:36:07\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:30:\"woocommerce-gateway-gocardless\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"2.5.6\";}}}s:48:\"woocommerce-shipping-fedex-api-outage-2023-07-16\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-shipping-fedex-api-outage-2023-07-16\";s:4:\"type\";s:7:\"warning\";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:\"Scheduled FedEx API outage — July 2023\";s:7:\"content\";s:277:\"On July 16 there will be a full outage of the FedEx API from 04:00 to 08:00 AM UTC. Due to planned maintenance by FedEx, you\'ll be unable to provide FedEx shipping rates during this time. Follow the link below for more information and recommendations on how to minimize impact.\";}}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:125:\"https://woocommerce.com/document/fedex/?utm_medium=product&utm_source=inbox_note&utm_campaign=learn-more#july-2023-api-outage\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;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:\"2023-07-05 18:19:17\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-shipping-fedex\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-07-17 00:00:00\";}}}s:35:\"wcship-2023-07-hazmat-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wcship-2023-07-hazmat-update-needed\";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:87:\"Action required: USPS HAZMAT compliance update for WooCommerce Shipping & Tax extension\";s:7:\"content\";s:251:\"Your store requires an update for the WooCommerce Shipping extension. Please update to the latest version of the WooCommerce Shipping & Tax extension immediately to ensure compliance with new USPS HAZMAT rules currently in effect.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"plugin-list\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:29:\"plugins.php?plugin_status=all\";s:18:\"url_is_admin_query\";b:1;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:23:\"admin.php?page=wc-admin\";s:18:\"url_is_admin_query\";b:1;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:\"2023-07-11 20:26:59\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-services\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"2.3.0\";}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\";}}}s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";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:\"Action required: Security update for WooCommerce Stripe plugin\";s:7:\"content\";s:183:\"Your shop requires an important security update for the WooCommerce Stripe plugin. The fix for this vulnerability was released on July 31. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:43:\"woocommerce-WCStripe-Aug-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"update-core.php?\";s:18:\"url_is_admin_query\";b:1;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:1:\"#\";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:\"2023-08-03 05:00:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"7.4.2\";}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:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.3.2\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.4.5\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.5.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.6.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.9.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.0.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.2.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.3.2\";}}}}}}}s:46:\"woocommerce-WCStripe-Aug-2023-security-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-WCStripe-Aug-2023-security-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:44:\"Security update of WooCommerce Stripe plugin\";s:7:\"content\";s:144:\"Your store has been updated to the latest secure version of the WooCommerce Stripe plugin. This update was released on July 31.\";}}s:7:\"actions\";a:1:{i:0;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:1:\"#\";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:\"2023-08-03 05:00:07\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:11:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.3.2\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.4.5\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.5.3\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.6.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.9.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.0.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.2.2\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"7.3.2\";}}}}}s:49:\"woocommerce-WooPayments-Aug-2023-security-updated\";O:8:\"stdClass\":8:{s:4:\"slug\";s:49:\"woocommerce-WooPayments-Aug-2023-security-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:60:\"Security update of WooPayments (WooCommerce Payments) plugin\";s:7:\"content\";s:147:\"Your store has been updated to the more secure version of WooPayments (WooCommerce Payments). This update was released on July 31.\";}}s:7:\"actions\";a:1:{i:0;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:1:\"#\";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:\"2023-08-03 05:00:13\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:17:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.4\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.4\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.6\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.5\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.3\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.5.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.6.4\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.8.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.9.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"6.1.2\";}}}}}s:24:\"avalara_q3-2023_noAvaTax\";O:8:\"stdClass\":8:{s:4:\"slug\";s:24:\"avalara_q3-2023_noAvaTax\";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:40:\"Automatically calculate VAT in real time\";s:7:\"content\";s:284:\"Take the effort out of determining tax rates and sell confidently across borders with automated tax management from Avalara AvaTax— including built-in VAT calculation when you sell into or across the EU and UK. Save time and stay compliant when you let Avalara do the heavy lifting.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:24:\"avalara_q3-2023_noAvaTax\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Automate my sales tax\";}}s:3:\"url\";s:131:\"https://woocommerce.com/products/woocommerce-avatax/?utm_source=inbox_note&utm_medium=product&utm_campaign=avalara_q3-2023_noAvaTax\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}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:\"2023-08-08 22:32:23\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2023-08-09 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:18:\"woocommerce-avatax\";}}}}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:30;}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:20:\"total_payments_value\";s:9:\"timeframe\";s:9:\"last_year\";s:5:\"value\";i:100;s:9:\"operation\";s:1:\">\";}}}s:44:\"woocommerce-usermeta-Sept2023-productvendors\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"woocommerce-usermeta-Sept2023-productvendors\";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:37:\"Your store requires a security update\";s:7:\"content\";s:339:\"Your shop needs an update to address a vulnerability in WooCommerce. The fix was released on Sept 15. Please update WooCommerce to the latest version immediately. Read our developer update for more information.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:44:\"woocommerce-usermeta-Sept2023-productvendors\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:11:\"plugins.php\";s:18:\"url_is_admin_query\";b:1;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:1:\"#\";s:18:\"url_is_admin_query\";b:1;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:\"2023-09-20 00:50:07\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-product-vendors\";}}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:\"8.1.1\";}}}s:41:\"woocommerce-STRIPE-Oct-2023-update-needed\";O:8:\"stdClass\":8:{s:4:\"slug\";s:41:\"woocommerce-STRIPE-Oct-2023-update-needed\";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: Security update for WooCommerce Stripe Gateway\";s:7:\"content\";s:201:\"Your shop requires a security update to address a vulnerability in the WooCommerce Stripe Gateway. The fix for this vulnerability was released on October 17. Please update immediately.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:41:\"woocommerce-STRIPE-Oct-2023-update-needed\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:15:\"update-core.php\";s:18:\"url_is_admin_query\";b:1;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:1:\"#\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:36:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2023-10-18 00:01:58\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"4.5.4\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.6\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.5.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.6.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.8.3\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.9.2\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.0.2\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.1.2\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.2.2\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.3.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.4.6\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.5.4\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.6.3\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.5.4\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.6.3\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.7.3\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.8.3\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"6.9.3\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.0.5\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.1.3\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.2.3\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.3.3\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.4.3\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"7.5.1\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:26:\"woocommerce-gateway-stripe\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"7.6.1\";}}}s:29:\"amazon-mcf-reviews-2023-12-07\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"amazon-mcf-reviews-2023-12-07\";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:36:\"Enjoying Amazon MCF for WooCommerce?\";s:7:\"content\";s:292:\"We\'re Never Settle, the developers behind Amazon MCF for WooCommerce, and would be deeply honored to have your review. Reviews help immensely as other users can learn how MCF can solve their needs too! Not happy or need help? Please reach out for support and we’d love to make things right!\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"amazon-mcf-review-button-2023-12-07\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Leave a review\";}}s:3:\"url\";s:161:\"https://woocommerce.com/products/woocommerce-amazon-fulfillment/?review&utm_source=inbox_note&utm_medium=product&utm_campaign=amazon-mcf-review-button-2023-12-07\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:36:\"amazon-mcf-support-button-2023-12-07\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:15:\"Request support\";}}s:3:\"url\";s:142:\"https://woocommerce.com/my-account/contact-support/?utm_source=inbox_note&utm_medium=product&utm_campaign=amazon-mcf-support-button-2023-12-07\";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:\"2023-12-06 15:21:27\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:30:\"woocommerce-amazon-fulfillment\";}}}}s:30:\"remove_estimated_deposits_2024\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"remove_estimated_deposits_2024\";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:33:\"Estimated deposits are going away\";s:7:\"content\";s:267:\"To provide more accurate deposit information and support the expansion of instant deposits, estimated deposit details will no longer be available in WooPayments. We recommend upgrading to the latest version of WooPayments for more detailed balance status information.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:9:\"view_docs\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:29:\"Learn about Deposit schedules\";}}s:3:\"url\";s:151:\"https://woocommerce.com/document/woopayments/deposits/deposit-schedule/?utm_source=inbox_note&utm_medium=product&utm_campaign=view_docs#available-funds\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:20:\"woocommerce-payments\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:3:\"6.9\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2024-01-21 08:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2024-01-31 23:59:59\";}}}s:26:\"sirt-woo-2024-11-xss-admin\";O:8:\"stdClass\":8:{s:4:\"slug\";s:26:\"sirt-woo-2024-11-xss-admin\";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:47:\"An important update is required for WooCommerce\";s:7:\"content\";s:353:\"This update addresses a security vulnerability that could allow unauthorized access to administrative privileges on your site. Learn more.\r\n

\r\nPlease ensure your site is updated to the latest version to stay secure.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"sirt-woo-2024-11-xss-admin\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"See available updates\";}}s:3:\"url\";s:16:\"update-core.php?\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:26:\"sirt-woo-2024-11-xss-admin\";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:1:\"#\";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:\"2024-12-04 02:07: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:\"8.4.0\";}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:\"9.4.3\";}}}s:64:\"woocommerce-analytics-order-attribution-promotions-december-2024\";O:8:\"stdClass\":8:{s:4:\"slug\";s:64:\"woocommerce-analytics-order-attribution-promotions-december-2024\";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:31:\"Discover what drives your sales\";s:7:\"content\";s:216:\"Use our powerful Order Attribution extension to understand what truly drives your revenue. Track your sales journey, identify your most effective marketing channels, and optimize your sales strategy.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:78:\"woocommerce-analytics-order-attribution-promotions-december-2024-find-out-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Find out more\";}}s:3:\"url\";s:51:\"https://wordpress.org/plugins/woocommerce-analytics\";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:\"2024-12-23 09:56:01\";}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:21:\"woocommerce-analytics\";}}}}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:5:\"value\";a:2:{i:0;i:1;i:1;i:12;}s:7:\"default\";i:0;s:9:\"operation\";s:5:\"range\";s:11:\"option_name\";s:37:\"woocommerce_remote_variant_assignment\";}}}s:44:\"paypal-braintree-sdk-depreciation-2025-02-20\";O:8:\"stdClass\":8:{s:4:\"slug\";s:44:\"paypal-braintree-sdk-depreciation-2025-02-20\";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:51:\"Update required for your PayPal Braintree extension\";s:7:\"content\";s:253:\"To continue securely accepting payments, you must update your PayPal Braintree extension to version 3.2.4 or newer before June 30, 2025. Your current extension version will not support payment processing after this date due to an SSL certificate update.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:51:\"paypal-braintree-sdk-depreciation-2025-02-20-button\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Upgrade now\";}}s:3:\"url\";s:21:\"/wp-admin/plugins.php\";s:18:\"url_is_admin_query\";b:1;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:\"2025-03-03 19:49:10\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:47:\"woocommerce-gateway-paypal-powered-by-braintree\";s:8:\"operator\";s:2:\"<=\";s:7:\"version\";s:5:\"3.2.3\";}}}}}','off'),(529,'jetpack_options','a:1:{s:14:\"last_heartbeat\";i:1741535727;}','auto'),(542,'woocommerce_checkout_phone_field','optional','auto'),(543,'woocommerce_checkout_company_field','hidden','auto'),(544,'woocommerce_checkout_address_2_field','optional','auto'),(545,'_transient_woocommerce_reports-transient-version','1741190094','on'),(551,'woocommerce_onboarding_profile_progress','a:1:{s:29:\"core_profiler_completed_steps\";a:3:{s:12:\"intro-opt-in\";a:1:{s:12:\"completed_at\";s:20:\"2025-03-05T15:54:37Z\";}s:12:\"user-profile\";a:1:{s:12:\"completed_at\";s:20:\"2025-03-05T15:54:18Z\";}s:17:\"skip-guided-setup\";a:1:{s:12:\"completed_at\";s:20:\"2025-03-05T15:54:54Z\";}}}','auto'),(555,'_transient_timeout_wc_term_counts','1743782051','off'),(556,'_transient_wc_term_counts','a:0:{}','off'),(557,'woocommerce_allow_tracking_first_optin','1741190051','auto'),(558,'woocommerce_allow_tracking_last_modified','1741190051','auto'),(561,'wc_has_tracked_default_theme','1','auto'),(563,'woocommerce_onboarding_profile','a:2:{s:15:\"business_choice\";s:28:\"im_just_starting_my_business\";s:7:\"skipped\";b:1;}','auto'),(564,'_transient_product_query-transient-version','1741191158','on'),(565,'_transient_timeout_wc_blocks_query_5363a57d92ddac380bcea0733b79eaad','1743782099','off'),(566,'_transient_wc_blocks_query_5363a57d92ddac380bcea0733b79eaad','a:2:{s:7:\"version\";s:10:\"1741190099\";s:5:\"value\";a:0:{}}','off'),(567,'woocommerce_private_link','no','auto'),(568,'woocommerce_share_key','KbXA5M4Cp6yukVrwZ5QTDmyvls4F1ZMN','auto'),(746,'_transient_woocommerce_product_task_product_count_transient','0','on'),(749,'_transient_woocommerce_shipping_task_zone_count_transient','0','on'),(762,'woocommerce_gateway_order','a:6:{s:19:\"_wc_pes_woopayments\";i:0;s:25:\"_wc_pes_paypal_full_stack\";i:1;s:33:\"_wc_offline_payment_methods_group\";i:2;s:4:\"bacs\";i:3;s:6:\"cheque\";i:4;s:3:\"cod\";i:5;}','auto'),(781,'mwb_mbfw_is_plugin_enable','yes','auto'),(782,'mwb_mbfw_is_booking_enable','yes','auto'),(783,'mwb_mbfw_is_show_included_service','yes','auto'),(784,'mwb_mbfw_is_show_totals','yes','auto'),(785,'mwb_mbfw_daily_start_time','05:24','auto'),(786,'mwb_mbfw_daily_end_time','23:26','auto'),(787,'mwb_mbfw_plugin_setting_migrated','yes','auto'),(788,'mwb_all_plugins_active','a:1:{s:28:\"mwb-bookings-for-woocommerce\";a:2:{s:11:\"plugin_name\";s:24:\"Bookings For WooCommerce\";s:6:\"active\";s:1:\"0\";}}','auto'),(790,'jetpack_connection_active_plugins','a:1:{s:11:\"woocommerce\";a:1:{s:4:\"name\";s:11:\"WooCommerce\";}}','auto'),(795,'mwb_mbfw_onboarding_data_skipped','1741190321','auto'),(804,'auth_key','qg5g[yPvg~s!K!%6CfRRc','off'),(805,'auth_salt','jNj^tGPgu.cX*ov5s@ ,/WmJj{u{-GNg~.Z)(u&08yfo*Saturday 09:00 am – 12:00 pm','off'),(3628,'_options_business_hours_text','field_67ced0e02feda','off'),(3761,'options_storage_access_hours','Storage Access Hours','off'),(3762,'_options_storage_access_hours','field_67cedeb68660e','off'),(3763,'options_storage_access_hours_text','Sunday - Saturday 6:00 AM - 9:00 PM','off'),(3764,'_options_storage_access_hours_text','field_67cededc8660f','off'),(4786,'_transient_timeout_wpseo_total_unindexed_post_type_archives','1741859682','off'),(4787,'_transient_wpseo_total_unindexed_post_type_archives','0','off'),(4788,'_transient_timeout_wpseo_total_unindexed_general_items','1741859682','off'),(4789,'_transient_wpseo_total_unindexed_general_items','0','off'),(4790,'_transient_timeout_wpseo_unindexed_post_link_count','1741859682','off'),(4791,'_transient_wpseo_unindexed_post_link_count','0','off'),(4792,'_transient_timeout_wpseo_unindexed_term_link_count','1741859682','off'),(4793,'_transient_wpseo_unindexed_term_link_count','0','off'),(4794,'_site_transient_timeout_php_check_d0f8c44ddd5901bff1588223538812e8','1742378082','off'),(4795,'_site_transient_php_check_d0f8c44ddd5901bff1588223538812e8','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','off'),(5194,'secret_key','mYq!8yQd)Ym>A*{t>(?1i>z/.hR9(`(hAP^`dt!aMToMQR/cY@-0^D_jq:VZAel%','off'),(5214,'_transient_timeout_wpseo-statistics-totals','1741886575','off'),(5215,'_transient_wpseo-statistics-totals','a:2:{i:2;a:2:{s:6:\"scores\";a:1:{i:0;a:4:{s:8:\"seo_rank\";s:2:\"na\";s:5:\"label\";s:48:\"Posts without a focus keyphrase\";s:5:\"count\";i:1;s:4:\"link\";s:103:\"https://nomudrvstorage.com/wp-admin/edit.php?post_status=publish&post_type=post&seo_filter=na\";}}s:8:\"division\";a:5:{s:3:\"bad\";i:0;s:2:\"ok\";i:0;s:4:\"good\";i:0;s:2:\"na\";i:1;s:7:\"noindex\";i:0;}}i:1;a:2:{s:6:\"scores\";a:1:{i:0;a:4:{s:8:\"seo_rank\";s:2:\"na\";s:5:\"label\";s:48:\"Posts without a focus keyphrase\";s:5:\"count\";i:1;s:4:\"link\";s:103:\"https://nomudrvstorage.com/wp-admin/edit.php?post_status=publish&post_type=post&seo_filter=na\";}}s:8:\"division\";a:5:{s:3:\"bad\";i:0;s:2:\"ok\";i:0;s:4:\"good\";i:0;s:2:\"na\";i:1;s:7:\"noindex\";i:0;}}}','off'),(5258,'_site_transient_timeout_community-events-8afd0f65d5ab3f350a54ecb90ea022f6','1741843375','off'),(5259,'_site_transient_community-events-8afd0f65d5ab3f350a54ecb90ea022f6','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:10:\"38.52.49.0\";}s:6:\"events\";a:0:{}}','off'),(5438,'_site_transient_timeout_theme_roots','1741870570','off'),(5439,'_site_transient_theme_roots','a:5:{s:4:\"rezo\";s:7:\"/themes\";s:11:\"safe_harbor\";s:7:\"/themes\";s:16:\"twentytwentyfive\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";}','off'),(5456,'_site_transient_timeout_wp_theme_files_patterns-d61ecf164be7312ad3b30378d46fe0cd','1741885590','off'),(5457,'_site_transient_wp_theme_files_patterns-d61ecf164be7312ad3b30378d46fe0cd','a:2:{s:7:\"version\";b:0;s:8:\"patterns\";a:0:{}}','off'),(5458,'_transient_doing_cron','1741883786.5039470195770263671875','on'),(5459,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1741883787;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:2:{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:\"5.3.7\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.3.7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}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.3.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:7:\"checked\";a:2:{s:19:\"akismet/akismet.php\";s:5:\"5.3.7\";s:9:\"hello.php\";s:5:\"1.7.2\";}}','off'); /*!40000 ALTER TABLE `I09Moptions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `I09Mpostmeta` -- DROP TABLE IF EXISTS `I09Mpostmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `I09Mpostmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT 0, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=2832 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `I09Mpostmeta` -- LOCK TABLES `I09Mpostmeta` WRITE; /*!40000 ALTER TABLE `I09Mpostmeta` DISABLE KEYS */; INSERT INTO `I09Mpostmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(3,7,'_wp_attached_file','woocommerce-placeholder.png'),(4,7,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:8:\"filesize\";i:48149;s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:6:{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:8:\"filesize\";i:10490;s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:5:{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:8:\"filesize\";i:1790;}s:18:\"woocommerce_single\";a:5:{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:8:\"filesize\";i:31287;}s:6:\"medium\";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:8:\"filesize\";i:10490;}s:5:\"large\";a:5:{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:8:\"filesize\";i:79721;}s:9:\"thumbnail\";a:5:{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:8:\"filesize\";i:3762;}s:12:\"medium_large\";a:5:{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:8:\"filesize\";i:47515;}}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:{}}}'),(5,62,'_edit_lock','1741192198:2'),(6,62,'_edit_last','2'),(7,62,'Price','200'),(8,62,'_yoast_wpseo_primary_storage_unit_type',''),(9,62,'_yoast_wpseo_estimated-reading-time-minutes','1'),(10,63,'_edit_lock','1741574288:2'),(28,69,'_edit_lock','1741777102:2'),(29,69,'_edit_last','2'),(30,81,'_wp_attached_file','2025/03/WhatsApp-Image-2025-03-10-at-3.18.48-PM.jpeg'),(31,81,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:435;s:6:\"height\";i:202;s:4:\"file\";s:52:\"2025/03/WhatsApp-Image-2025-03-10-at-3.18.48-PM.jpeg\";s:8:\"filesize\";i:31277;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2025-03-10-at-3.18.48-PM-300x139.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:139;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11741;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2025-03-10-at-3.18.48-PM-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7506;}}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:{}}}'),(32,83,'_wp_attached_file','2025/03/WhatsApp_Image_2025-03-10_at_3.18.48_PM-removebg-preview.png'),(33,83,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:435;s:6:\"height\";i:202;s:4:\"file\";s:68:\"2025/03/WhatsApp_Image_2025-03-10_at_3.18.48_PM-removebg-preview.png\";s:8:\"filesize\";i:83426;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:68:\"WhatsApp_Image_2025-03-10_at_3.18.48_PM-removebg-preview-300x139.png\";s:5:\"width\";i:300;s:6:\"height\";i:139;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41456;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:68:\"WhatsApp_Image_2025-03-10_at_3.18.48_PM-removebg-preview-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25644;}}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:{}}}'),(34,84,'_edit_lock','1741601871:2'),(35,85,'_edit_lock','1741775569:2'),(36,85,'_edit_last','2'),(37,85,'_yoast_wpseo_estimated-reading-time-minutes','0'),(38,87,'_edit_lock','1741777653:2'),(39,87,'_edit_last','2'),(40,87,'_yoast_wpseo_estimated-reading-time-minutes','1'),(41,89,'_edit_lock','1741777010:2'),(42,89,'_edit_last','2'),(43,89,'_yoast_wpseo_estimated-reading-time-minutes','1'),(44,91,'_edit_lock','1741778165:2'),(45,91,'_edit_last','2'),(46,91,'_yoast_wpseo_estimated-reading-time-minutes','1'),(47,93,'_edit_lock','1741630919:2'),(48,93,'_edit_last','2'),(49,93,'_yoast_wpseo_estimated-reading-time-minutes','0'),(50,95,'_edit_lock','1741602101:2'),(51,96,'_edit_lock','1741602085:2'),(52,95,'_edit_last','2'),(53,95,'_yoast_wpseo_estimated-reading-time-minutes','0'),(54,98,'_edit_lock','1741779359:2'),(55,99,'_edit_lock','1741602106:2'),(56,98,'_edit_last','2'),(57,98,'_yoast_wpseo_estimated-reading-time-minutes','0'),(58,101,'_edit_lock','1741784100:2'),(59,102,'_edit_lock','1741602191:2'),(60,101,'_edit_last','2'),(61,101,'_yoast_wpseo_estimated-reading-time-minutes','0'),(62,104,'_edit_lock','1741783911:2'),(63,104,'_edit_last','2'),(64,104,'_yoast_wpseo_estimated-reading-time-minutes','1'),(65,106,'_wp_attached_file','2025/03/large.png'),(66,106,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:480;s:4:\"file\";s:17:\"2025/03/large.png\";s:8:\"filesize\";i:32432;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"large-300x240.png\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22716;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"large-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11416;}}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:{}}}'),(67,107,'_menu_item_type','post_type'),(68,107,'_menu_item_menu_item_parent','0'),(69,107,'_menu_item_object_id','85'),(70,107,'_menu_item_object','page'),(71,107,'_menu_item_target',''),(72,107,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(73,107,'_menu_item_xfn',''),(74,107,'_menu_item_url',''),(76,108,'_menu_item_type','post_type'),(77,108,'_menu_item_menu_item_parent','0'),(78,108,'_menu_item_object_id','89'),(79,108,'_menu_item_object','page'),(80,108,'_menu_item_target',''),(81,108,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(82,108,'_menu_item_xfn',''),(83,108,'_menu_item_url',''),(85,109,'_menu_item_type','post_type'),(86,109,'_menu_item_menu_item_parent','0'),(87,109,'_menu_item_object_id','87'),(88,109,'_menu_item_object','page'),(89,109,'_menu_item_target',''),(90,109,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(91,109,'_menu_item_xfn',''),(92,109,'_menu_item_url',''),(94,110,'_menu_item_type','post_type'),(95,110,'_menu_item_menu_item_parent','0'),(96,110,'_menu_item_object_id','91'),(97,110,'_menu_item_object','page'),(98,110,'_menu_item_target',''),(99,110,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(100,110,'_menu_item_xfn',''),(101,110,'_menu_item_url',''),(130,114,'_menu_item_type','post_type'),(131,114,'_menu_item_menu_item_parent','0'),(132,114,'_menu_item_object_id','104'),(133,114,'_menu_item_object','page'),(134,114,'_menu_item_target',''),(135,114,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(136,114,'_menu_item_xfn',''),(137,114,'_menu_item_url',''),(138,114,'_menu_item_orphaned','1741602651'),(139,115,'_menu_item_type','post_type'),(140,115,'_menu_item_menu_item_parent','125'),(141,115,'_menu_item_object_id','98'),(142,115,'_menu_item_object','page'),(143,115,'_menu_item_target',''),(144,115,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(145,115,'_menu_item_xfn',''),(146,115,'_menu_item_url',''),(148,116,'_menu_item_type','post_type'),(149,116,'_menu_item_menu_item_parent','0'),(150,116,'_menu_item_object_id','93'),(151,116,'_menu_item_object','page'),(152,116,'_menu_item_target',''),(153,116,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(154,116,'_menu_item_xfn',''),(155,116,'_menu_item_url',''),(157,117,'_menu_item_type','post_type'),(158,117,'_menu_item_menu_item_parent','0'),(159,117,'_menu_item_object_id','93'),(160,117,'_menu_item_object','page'),(161,117,'_menu_item_target',''),(162,117,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(163,117,'_menu_item_xfn',''),(164,117,'_menu_item_url',''),(165,117,'_menu_item_orphaned','1741602663'),(166,118,'_wp_attached_file','2025/03/Nomudrv_Storage_Transparent.png'),(167,118,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:39:\"2025/03/Nomudrv_Storage_Transparent.png\";s:8:\"filesize\";i:1058579;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Nomudrv_Storage_Transparent-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:98988;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Nomudrv_Storage_Transparent-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28747;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:39:\"Nomudrv_Storage_Transparent-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:601638;}}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:{}}}'),(168,119,'_wp_attached_file','2025/03/Nomudrv_Storage_Transparent-removebg-preview.png'),(169,119,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:56:\"2025/03/Nomudrv_Storage_Transparent-removebg-preview.png\";s:8:\"filesize\";i:65554;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"Nomudrv_Storage_Transparent-removebg-preview-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27827;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"Nomudrv_Storage_Transparent-removebg-preview-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9884;}}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:{}}}'),(170,120,'_wp_attached_file','2025/03/Nomudrv_Storage_Transparent-removebg-preview-1.png'),(171,120,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:302;s:6:\"height\";i:239;s:4:\"file\";s:58:\"2025/03/Nomudrv_Storage_Transparent-removebg-preview-1.png\";s:8:\"filesize\";i:53522;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"Nomudrv_Storage_Transparent-removebg-preview-1-300x237.png\";s:5:\"width\";i:300;s:6:\"height\";i:237;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57701;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"Nomudrv_Storage_Transparent-removebg-preview-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27220;}}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:{}}}'),(172,121,'_wp_attached_file','2025/03/Nomudrv_Storage_Transparent-removebg-preview-2.png'),(173,121,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:327;s:6:\"height\";i:281;s:4:\"file\";s:58:\"2025/03/Nomudrv_Storage_Transparent-removebg-preview-2.png\";s:8:\"filesize\";i:53909;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"Nomudrv_Storage_Transparent-removebg-preview-2-300x258.png\";s:5:\"width\";i:300;s:6:\"height\";i:258;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51263;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"Nomudrv_Storage_Transparent-removebg-preview-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22922;}}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:{}}}'),(174,122,'_edit_lock','1741603544:2'),(177,125,'_menu_item_type','custom'),(178,125,'_menu_item_menu_item_parent','0'),(179,125,'_menu_item_object_id','125'),(180,125,'_menu_item_object','custom'),(181,125,'_menu_item_target',''),(182,125,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(183,125,'_menu_item_xfn',''),(184,125,'_menu_item_url','#'),(186,126,'_menu_item_type','custom'),(187,126,'_menu_item_menu_item_parent','0'),(188,126,'_menu_item_object_id','126'),(189,126,'_menu_item_object','custom'),(190,126,'_menu_item_target',''),(191,126,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(192,126,'_menu_item_xfn',''),(193,126,'_menu_item_url','#'),(195,127,'_menu_item_type','post_type'),(196,127,'_menu_item_menu_item_parent','126'),(197,127,'_menu_item_object_id','104'),(198,127,'_menu_item_object','page'),(199,127,'_menu_item_target',''),(200,127,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(201,127,'_menu_item_xfn',''),(202,127,'_menu_item_url',''),(204,128,'_menu_item_type','post_type'),(205,128,'_menu_item_menu_item_parent','126'),(206,128,'_menu_item_object_id','101'),(207,128,'_menu_item_object','page'),(208,128,'_menu_item_target',''),(209,128,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(210,128,'_menu_item_xfn',''),(211,128,'_menu_item_url',''),(213,129,'_menu_item_type','custom'),(214,129,'_menu_item_menu_item_parent','0'),(215,129,'_menu_item_object_id','129'),(216,129,'_menu_item_object','custom'),(217,129,'_menu_item_target',''),(218,129,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(219,129,'_menu_item_xfn',''),(220,129,'_menu_item_url','https://onlinepayments.storagecommander.net/login/41695/sizes'),(222,130,'_wp_attached_file','2025/03/Nomudrv_Storage_Transparent-removebg-preview1.png'),(223,130,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:292;s:6:\"height\";i:86;s:4:\"file\";s:57:\"2025/03/Nomudrv_Storage_Transparent-removebg-preview1.png\";s:8:\"filesize\";i:24327;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"Nomudrv_Storage_Transparent-removebg-preview1-150x86.png\";s:5:\"width\";i:150;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15394;}}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:{}}}'),(224,131,'_wp_attached_file','2025/03/Nomudrv_Storage_Transparent-removebg-preview11.png'),(225,131,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:292;s:6:\"height\";i:86;s:4:\"file\";s:58:\"2025/03/Nomudrv_Storage_Transparent-removebg-preview11.png\";s:8:\"filesize\";i:17393;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"Nomudrv_Storage_Transparent-removebg-preview11-150x86.png\";s:5:\"width\";i:150;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9082;}}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:{}}}'),(226,132,'_edit_lock','1741786171:2'),(227,132,'_edit_last','2'),(228,132,'_yoast_wpseo_estimated-reading-time-minutes','0'),(229,134,'_edit_lock','1741784171:2'),(230,134,'_edit_last','2'),(231,134,'_yoast_wpseo_estimated-reading-time-minutes','0'),(232,136,'_menu_item_type','post_type'),(233,136,'_menu_item_menu_item_parent','0'),(234,136,'_menu_item_object_id','132'),(235,136,'_menu_item_object','page'),(236,136,'_menu_item_target',''),(237,136,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(238,136,'_menu_item_xfn',''),(239,136,'_menu_item_url',''),(241,137,'_menu_item_type','post_type'),(242,137,'_menu_item_menu_item_parent','0'),(243,137,'_menu_item_object_id','134'),(244,137,'_menu_item_object','page'),(245,137,'_menu_item_target',''),(246,137,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(247,137,'_menu_item_xfn',''),(248,137,'_menu_item_url',''),(250,138,'_menu_item_type','post_type'),(251,138,'_menu_item_menu_item_parent','0'),(252,138,'_menu_item_object_id','93'),(253,138,'_menu_item_object','page'),(254,138,'_menu_item_target',''),(255,138,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(256,138,'_menu_item_xfn',''),(257,138,'_menu_item_url',''),(259,139,'_menu_item_type','post_type'),(260,139,'_menu_item_menu_item_parent','0'),(261,139,'_menu_item_object_id','98'),(262,139,'_menu_item_object','page'),(263,139,'_menu_item_target',''),(264,139,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(265,139,'_menu_item_xfn',''),(266,139,'_menu_item_url',''),(268,140,'_wp_attached_file','2025/03/Nomudrv-Storage-1.png'),(269,140,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:344;s:6:\"height\";i:212;s:4:\"file\";s:29:\"2025/03/Nomudrv-Storage-1.png\";s:8:\"filesize\";i:8592;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Nomudrv-Storage-1-300x185.png\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17912;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Nomudrv-Storage-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11634;}}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:{}}}'),(270,141,'_wp_attached_file','2025/03/Nomudrv-Storage1-1.png'),(271,141,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:291;s:6:\"height\";i:156;s:4:\"file\";s:30:\"2025/03/Nomudrv-Storage1-1.png\";s:8:\"filesize\";i:8417;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Nomudrv-Storage1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11454;}}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:{}}}'),(272,93,'_wp_page_template','contact-page.php'),(273,142,'_form','
\n

First Name

\n[text* first-name class:w-full class:p-3 class:input-color placeholder \"First Name\"] \n
\n
\n

Second Name

\n[text* last-name class:w-full class:p-3 class:input-color placeholder \"Second Name\"] \n
\n
\n

Email

\n[email* your-email class:w-full class:p-3 class:input-color placeholder \"Your email\"]\n
\n
\n

Message

\n[textarea your-message class:w-full class:p-3 class:input-color ]\n
\n
[submit class:font-serif class:text-2 class:col-span-2 class:w-full class:bg-green class:text-white class:rounded-full class:py-2 class:mt-5 \"Submit\"]
'),(274,142,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:44:\"[_site_title] \";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:4:\"body\";s:191:\"From: [your-name] [your-email]\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis is a notification that a contact form was submitted on your website ([_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;}'),(275,142,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:44:\"[_site_title] \";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:220:\"Message Body:\n[your-message]\n\n-- \nThis email is a receipt for your contact form submission on our website ([_site_title] [_site_url]) in which your email address was used. If that was not you, please ignore this message.\";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;}'),(276,142,'_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:27:\"Please fill out this field.\";s:16:\"invalid_too_long\";s:32:\"This field has a too long input.\";s:17:\"invalid_too_short\";s:33:\"This field has a too short input.\";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:31:\"The uploaded file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:12:\"invalid_date\";s:41:\"Please enter a date in YYYY-MM-DD format.\";s:14:\"date_too_early\";s:32:\"This field has a too early date.\";s:13:\"date_too_late\";s:31:\"This field has a too late date.\";s:14:\"invalid_number\";s:22:\"Please enter a number.\";s:16:\"number_too_small\";s:34:\"This field has a too small number.\";s:16:\"number_too_large\";s:34:\"This field has a too large number.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:30:\"Please enter an email address.\";s:11:\"invalid_url\";s:19:\"Please enter a URL.\";s:11:\"invalid_tel\";s:32:\"Please enter a telephone number.\";}'),(277,142,'_additional_settings',''),(278,142,'_locale','en_US'),(279,142,'_hash','60530b3998737ebf24d5670a8038907f4383d6fc'),(280,144,'_edit_lock','1741786171:2'),(281,144,'_edit_last','2'),(284,153,'_wp_attached_file','2025/03/shutterstock_2481710485-min-scaled.jpg'),(285,153,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:46:\"2025/03/shutterstock_2481710485-min-scaled.jpg\";s:8:\"filesize\";i:550982;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"shutterstock_2481710485-min-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12874;}s:5:\"large\";a:5:{s:4:\"file\";s:40:\"shutterstock_2481710485-min-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104699;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"shutterstock_2481710485-min-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5628;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:39:\"shutterstock_2481710485-min-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63235;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:41:\"shutterstock_2481710485-min-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:215396;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:41:\"shutterstock_2481710485-min-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:363765;}}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:31:\"shutterstock_2481710485-min.jpg\";}'),(287,85,'footnotes',''),(289,154,'footnotes',''),(291,85,'pages_block_components_0_carousel_item_0_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(292,85,'_pages_block_components_0_carousel_item_0_heading','field_67cee10a86380'),(293,85,'pages_block_components_0_carousel_item_0_images','153'),(294,85,'_pages_block_components_0_carousel_item_0_images','field_67cee12c86381'),(295,85,'pages_block_components_0_carousel_item_0_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(296,85,'_pages_block_components_0_carousel_item_0_desc','field_67cee13e86382'),(297,85,'pages_block_components_0_carousel_item','3'),(298,85,'_pages_block_components_0_carousel_item','field_67cee0c68637f'),(299,85,'pages_block_components','a:4:{i:0;s:14:\"carousel_block\";i:1;s:15:\"service_section\";i:2;s:16:\"customer_section\";i:3;s:14:\"review_section\";}'),(300,85,'_pages_block_components','field_67ceddb41e1f1'),(301,154,'pages_block_components_0_carousel_item_0_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(302,154,'_pages_block_components_0_carousel_item_0_heading','field_67cee10a86380'),(303,154,'pages_block_components_0_carousel_item_0_images','153'),(304,154,'_pages_block_components_0_carousel_item_0_images','field_67cee12c86381'),(305,154,'pages_block_components_0_carousel_item_0_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
\r\n\r\n'),(306,154,'_pages_block_components_0_carousel_item_0_desc','field_67cee13e86382'),(307,154,'pages_block_components_0_carousel_item','1'),(308,154,'_pages_block_components_0_carousel_item','field_67cee0c68637f'),(309,154,'pages_block_components','a:1:{i:0;s:14:\"carousel_block\";}'),(310,154,'_pages_block_components','field_67ceddb41e1f1'),(313,85,'_wp_page_template','home-page.php'),(326,157,'_wp_attached_file','2025/03/shutterstock_2026342661-min-scaled.jpg'),(327,157,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:46:\"2025/03/shutterstock_2026342661-min-scaled.jpg\";s:8:\"filesize\";i:346024;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"shutterstock_2026342661-min-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9569;}s:5:\"large\";a:5:{s:4:\"file\";s:40:\"shutterstock_2026342661-min-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71526;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"shutterstock_2026342661-min-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4234;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:39:\"shutterstock_2026342661-min-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44125;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:41:\"shutterstock_2026342661-min-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141587;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:41:\"shutterstock_2026342661-min-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:232715;}}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:31:\"shutterstock_2026342661-min.jpg\";}'),(328,158,'_wp_attached_file','2025/03/shutterstock_708231286-min-scaled.jpg'),(329,158,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1696;s:4:\"file\";s:45:\"2025/03/shutterstock_708231286-min-scaled.jpg\";s:8:\"filesize\";i:627661;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"shutterstock_708231286-min-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15031;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"shutterstock_708231286-min-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128601;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"shutterstock_708231286-min-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6316;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"shutterstock_708231286-min-768x509.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77381;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:40:\"shutterstock_708231286-min-1536x1017.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1017;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:261187;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:40:\"shutterstock_708231286-min-2048x1356.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1356;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:429074;}}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:\"shutterstock_708231286-min.jpg\";}'),(332,159,'footnotes',''),(334,85,'pages_block_components_0_carousel_item_1_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(335,85,'_pages_block_components_0_carousel_item_1_heading','field_67cee10a86380'),(336,85,'pages_block_components_0_carousel_item_1_images','157'),(337,85,'_pages_block_components_0_carousel_item_1_images','field_67cee12c86381'),(338,85,'pages_block_components_0_carousel_item_1_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(339,85,'_pages_block_components_0_carousel_item_1_desc','field_67cee13e86382'),(340,85,'pages_block_components_0_carousel_item_2_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(341,85,'_pages_block_components_0_carousel_item_2_heading','field_67cee10a86380'),(342,85,'pages_block_components_0_carousel_item_2_images','158'),(343,85,'_pages_block_components_0_carousel_item_2_images','field_67cee12c86381'),(344,85,'pages_block_components_0_carousel_item_2_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(345,85,'_pages_block_components_0_carousel_item_2_desc','field_67cee13e86382'),(346,159,'pages_block_components_0_carousel_item_0_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(347,159,'_pages_block_components_0_carousel_item_0_heading','field_67cee10a86380'),(348,159,'pages_block_components_0_carousel_item_0_images','153'),(349,159,'_pages_block_components_0_carousel_item_0_images','field_67cee12c86381'),(350,159,'pages_block_components_0_carousel_item_0_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(351,159,'_pages_block_components_0_carousel_item_0_desc','field_67cee13e86382'),(352,159,'pages_block_components_0_carousel_item','3'),(353,159,'_pages_block_components_0_carousel_item','field_67cee0c68637f'),(354,159,'pages_block_components','a:1:{i:0;s:14:\"carousel_block\";}'),(355,159,'_pages_block_components','field_67ceddb41e1f1'),(356,159,'pages_block_components_0_carousel_item_1_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(357,159,'_pages_block_components_0_carousel_item_1_heading','field_67cee10a86380'),(358,159,'pages_block_components_0_carousel_item_1_images','157'),(359,159,'_pages_block_components_0_carousel_item_1_images','field_67cee12c86381'),(360,159,'pages_block_components_0_carousel_item_1_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(361,159,'_pages_block_components_0_carousel_item_1_desc','field_67cee13e86382'),(362,159,'pages_block_components_0_carousel_item_2_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(363,159,'_pages_block_components_0_carousel_item_2_heading','field_67cee10a86380'),(364,159,'pages_block_components_0_carousel_item_2_images','158'),(365,159,'_pages_block_components_0_carousel_item_2_images','field_67cee12c86381'),(366,159,'pages_block_components_0_carousel_item_2_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(367,159,'_pages_block_components_0_carousel_item_2_desc','field_67cee13e86382'),(368,160,'_wp_attached_file','2025/03/Nomudrv-Storage.png'),(369,160,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:27:\"2025/03/Nomudrv-Storage.png\";s:8:\"filesize\";i:20017;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Nomudrv-Storage-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11222;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Nomudrv-Storage-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4110;}}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:{}}}'),(370,161,'_wp_attached_file','2025/03/Nomudrv_Storage-removebg-preview.png'),(371,161,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:44:\"2025/03/Nomudrv_Storage-removebg-preview.png\";s:8:\"filesize\";i:39349;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"Nomudrv_Storage-removebg-preview-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13490;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"Nomudrv_Storage-removebg-preview-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4431;}}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:{}}}'),(372,162,'_wp_attached_file','2025/03/Nomudrv_Storage-removebg-preview1.png'),(373,162,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:273;s:6:\"height\";i:106;s:4:\"file\";s:45:\"2025/03/Nomudrv_Storage-removebg-preview1.png\";s:8:\"filesize\";i:26614;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"Nomudrv_Storage-removebg-preview1-150x106.png\";s:5:\"width\";i:150;s:6:\"height\";i:106;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18037;}}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:{}}}'),(374,163,'_wp_attached_file','2025/03/Nomudrv_Storage-removebg-preview11.png'),(375,163,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:266;s:6:\"height\";i:93;s:4:\"file\";s:46:\"2025/03/Nomudrv_Storage-removebg-preview11.png\";s:8:\"filesize\";i:26430;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"Nomudrv_Storage-removebg-preview11-150x93.png\";s:5:\"width\";i:150;s:6:\"height\";i:93;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17927;}}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:{}}}'),(376,164,'_wp_attached_file','2025/03/Nomudrv_Storage_1_-removebg-preview2.png'),(377,164,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:115;s:6:\"height\";i:40;s:4:\"file\";s:48:\"2025/03/Nomudrv_Storage_1_-removebg-preview2.png\";s:8:\"filesize\";i:6207;s:5:\"sizes\";a: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:{}}}'),(380,174,'_wp_attached_file','2025/03/unnamed.png'),(381,174,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:19:\"2025/03/unnamed.png\";s:8:\"filesize\";i:26043;s:5:\"sizes\";a: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:{}}}'),(382,175,'_wp_attached_file','2025/03/unnamed-1.png'),(383,175,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:21:\"2025/03/unnamed-1.png\";s:8:\"filesize\";i:27142;s:5:\"sizes\";a: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:{}}}'),(384,176,'_wp_attached_file','2025/03/unnamed-2.png'),(385,176,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:21:\"2025/03/unnamed-2.png\";s:8:\"filesize\";i:3199;s:5:\"sizes\";a: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:{}}}'),(388,179,'footnotes',''),(416,179,'pages_block_components_0_carousel_item_0_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(417,179,'_pages_block_components_0_carousel_item_0_heading','field_67cee10a86380'),(418,179,'pages_block_components_0_carousel_item_0_images','153'),(419,179,'_pages_block_components_0_carousel_item_0_images','field_67cee12c86381'),(420,179,'pages_block_components_0_carousel_item_0_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(421,179,'_pages_block_components_0_carousel_item_0_desc','field_67cee13e86382'),(422,179,'pages_block_components_0_carousel_item','3'),(423,179,'_pages_block_components_0_carousel_item','field_67cee0c68637f'),(424,179,'pages_block_components','a:2:{i:0;s:14:\"carousel_block\";i:1;s:14:\"review_section\";}'),(425,179,'_pages_block_components','field_67ceddb41e1f1'),(426,179,'pages_block_components_0_carousel_item_1_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(427,179,'_pages_block_components_0_carousel_item_1_heading','field_67cee10a86380'),(428,179,'pages_block_components_0_carousel_item_1_images','157'),(429,179,'_pages_block_components_0_carousel_item_1_images','field_67cee12c86381'),(430,179,'pages_block_components_0_carousel_item_1_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(431,179,'_pages_block_components_0_carousel_item_1_desc','field_67cee13e86382'),(432,179,'pages_block_components_0_carousel_item_2_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(433,179,'_pages_block_components_0_carousel_item_2_heading','field_67cee10a86380'),(434,179,'pages_block_components_0_carousel_item_2_images','158'),(435,179,'_pages_block_components_0_carousel_item_2_images','field_67cee12c86381'),(436,179,'pages_block_components_0_carousel_item_2_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(437,179,'_pages_block_components_0_carousel_item_2_desc','field_67cee13e86382'),(438,179,'pages_block_components_1_main_heading','Don\'t Just Take Our Word for It!'),(439,179,'_pages_block_components_1_main_heading','field_67cf0552bb668'),(440,179,'pages_block_components_1_maindsc','Long Leaf Boat, RV and Trailer Storage'),(441,179,'_pages_block_components_1_maindsc','field_67cf05a4bb669'),(442,179,'pages_block_components_1_num_review','15 Reviews'),(443,179,'_pages_block_components_1_num_review','field_67cf05dfbb66a'),(444,179,'pages_block_components_1_reviews_0_image','174'),(445,179,'_pages_block_components_1_reviews_0_image','field_67cf076cbb66c'),(446,179,'pages_block_components_1_reviews_0_reviewer_name','Olgie'),(447,179,'_pages_block_components_1_reviews_0_reviewer_name','field_67cf0784bb66d'),(448,179,'pages_block_components_1_reviews_0_date','20250304'),(449,179,'_pages_block_components_1_reviews_0_date','field_67cf079cbb66e'),(450,179,'pages_block_components_1_reviews_1_image','175'),(451,179,'_pages_block_components_1_reviews_1_image','field_67cf076cbb66c'),(452,179,'pages_block_components_1_reviews_1_reviewer_name','Ryan Castle'),(453,179,'_pages_block_components_1_reviews_1_reviewer_name','field_67cf0784bb66d'),(454,179,'pages_block_components_1_reviews_1_date','20250213'),(455,179,'_pages_block_components_1_reviews_1_date','field_67cf079cbb66e'),(456,179,'pages_block_components_1_reviews_2_image','176'),(457,179,'_pages_block_components_1_reviews_2_image','field_67cf076cbb66c'),(458,179,'pages_block_components_1_reviews_2_reviewer_name','james messervy'),(459,179,'_pages_block_components_1_reviews_2_reviewer_name','field_67cf0784bb66d'),(460,179,'pages_block_components_1_reviews_2_date','20250130'),(461,179,'_pages_block_components_1_reviews_2_date','field_67cf079cbb66e'),(462,179,'pages_block_components_1_reviews','3'),(463,179,'_pages_block_components_1_reviews','field_67cf0729bb66b'),(468,181,'footnotes',''),(482,181,'pages_block_components_0_carousel_item_0_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(483,181,'_pages_block_components_0_carousel_item_0_heading','field_67cee10a86380'),(484,181,'pages_block_components_0_carousel_item_0_images','153'),(485,181,'_pages_block_components_0_carousel_item_0_images','field_67cee12c86381'),(486,181,'pages_block_components_0_carousel_item_0_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(487,181,'_pages_block_components_0_carousel_item_0_desc','field_67cee13e86382'),(488,181,'pages_block_components_0_carousel_item','3'),(489,181,'_pages_block_components_0_carousel_item','field_67cee0c68637f'),(490,181,'pages_block_components','a:2:{i:0;s:14:\"carousel_block\";i:1;s:14:\"review_section\";}'),(491,181,'_pages_block_components','field_67ceddb41e1f1'),(492,181,'pages_block_components_0_carousel_item_1_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(493,181,'_pages_block_components_0_carousel_item_1_heading','field_67cee10a86380'),(494,181,'pages_block_components_0_carousel_item_1_images','157'),(495,181,'_pages_block_components_0_carousel_item_1_images','field_67cee12c86381'),(496,181,'pages_block_components_0_carousel_item_1_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(497,181,'_pages_block_components_0_carousel_item_1_desc','field_67cee13e86382'),(498,181,'pages_block_components_0_carousel_item_2_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(499,181,'_pages_block_components_0_carousel_item_2_heading','field_67cee10a86380'),(500,181,'pages_block_components_0_carousel_item_2_images','158'),(501,181,'_pages_block_components_0_carousel_item_2_images','field_67cee12c86381'),(502,181,'pages_block_components_0_carousel_item_2_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(503,181,'_pages_block_components_0_carousel_item_2_desc','field_67cee13e86382'),(504,181,'pages_block_components_1_main_heading','Don\'t Just Take Our Word for It!'),(505,181,'_pages_block_components_1_main_heading','field_67cf0552bb668'),(506,181,'pages_block_components_1_maindsc','Long Leaf Boat, RV and Trailer Storage'),(507,181,'_pages_block_components_1_maindsc','field_67cf05a4bb669'),(508,181,'pages_block_components_1_num_review','15 Reviews'),(509,181,'_pages_block_components_1_num_review','field_67cf05dfbb66a'),(510,181,'pages_block_components_1_reviews_0_image','174'),(511,181,'_pages_block_components_1_reviews_0_image','field_67cf076cbb66c'),(512,181,'pages_block_components_1_reviews_0_reviewer_name','Olgie'),(513,181,'_pages_block_components_1_reviews_0_reviewer_name','field_67cf0784bb66d'),(514,181,'pages_block_components_1_reviews_0_date','20250304'),(515,181,'_pages_block_components_1_reviews_0_date','field_67cf079cbb66e'),(516,181,'pages_block_components_1_reviews_1_image','175'),(517,181,'_pages_block_components_1_reviews_1_image','field_67cf076cbb66c'),(518,181,'pages_block_components_1_reviews_1_reviewer_name','Ryan Castle'),(519,181,'_pages_block_components_1_reviews_1_reviewer_name','field_67cf0784bb66d'),(520,181,'pages_block_components_1_reviews_1_date','20250213'),(521,181,'_pages_block_components_1_reviews_1_date','field_67cf079cbb66e'),(522,181,'pages_block_components_1_reviews_2_image','176'),(523,181,'_pages_block_components_1_reviews_2_image','field_67cf076cbb66c'),(524,181,'pages_block_components_1_reviews_2_reviewer_name','james messervy'),(525,181,'_pages_block_components_1_reviews_2_reviewer_name','field_67cf0784bb66d'),(526,181,'pages_block_components_1_reviews_2_date','20250130'),(527,181,'_pages_block_components_1_reviews_2_date','field_67cf079cbb66e'),(528,181,'pages_block_components_1_reviews','3'),(529,181,'_pages_block_components_1_reviews','field_67cf0729bb66b'),(530,181,'pages_block_components_1_reviews_0_desc','Thank you Jay for your help and for secure RV storage. It was g...'),(531,181,'_pages_block_components_1_reviews_0_desc','field_67cf0ab4f9481'),(532,181,'pages_block_components_1_reviews_0_review_link','https://www.google.com/maps?cid=13487484730203671818'),(533,181,'_pages_block_components_1_reviews_0_review_link','field_67cf0ac7f9482'),(534,181,'pages_block_components_1_reviews_1_desc','They do a great job of keeping it secure and making you feel sa...'),(535,181,'_pages_block_components_1_reviews_1_desc','field_67cf0ab4f9481'),(536,181,'pages_block_components_1_reviews_1_review_link','https://www.google.com/maps?cid=13487484730203671818'),(537,181,'_pages_block_components_1_reviews_1_review_link','field_67cf0ac7f9482'),(538,181,'pages_block_components_1_reviews_2_desc','Great experience. Great\r\nlocation.'),(539,181,'_pages_block_components_1_reviews_2_desc','field_67cf0ab4f9481'),(540,181,'pages_block_components_1_reviews_2_review_link',''),(541,181,'_pages_block_components_1_reviews_2_review_link','field_67cf0ac7f9482'),(544,183,'_wp_attached_file','2025/03/unnamed-8.png'),(545,183,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:21:\"2025/03/unnamed-8.png\";s:8:\"filesize\";i:29372;s:5:\"sizes\";a: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:{}}}'),(546,184,'_wp_attached_file','2025/03/unnamed-7.png'),(547,184,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:21:\"2025/03/unnamed-7.png\";s:8:\"filesize\";i:4309;s:5:\"sizes\";a: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:{}}}'),(548,185,'_wp_attached_file','2025/03/unnamed-6.png'),(549,185,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:21:\"2025/03/unnamed-6.png\";s:8:\"filesize\";i:3622;s:5:\"sizes\";a: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:{}}}'),(550,186,'_wp_attached_file','2025/03/unnamed-5.png'),(551,186,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:21:\"2025/03/unnamed-5.png\";s:8:\"filesize\";i:4596;s:5:\"sizes\";a: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:{}}}'),(552,187,'_wp_attached_file','2025/03/unnamed-4.png'),(553,187,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:21:\"2025/03/unnamed-4.png\";s:8:\"filesize\";i:26593;s:5:\"sizes\";a: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:{}}}'),(554,188,'_wp_attached_file','2025/03/unnamed-3.png'),(555,188,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:21:\"2025/03/unnamed-3.png\";s:8:\"filesize\";i:4592;s:5:\"sizes\";a: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:{}}}'),(558,189,'footnotes',''),(620,189,'pages_block_components_0_carousel_item_0_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(621,189,'_pages_block_components_0_carousel_item_0_heading','field_67cee10a86380'),(622,189,'pages_block_components_0_carousel_item_0_images','153'),(623,189,'_pages_block_components_0_carousel_item_0_images','field_67cee12c86381'),(624,189,'pages_block_components_0_carousel_item_0_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(625,189,'_pages_block_components_0_carousel_item_0_desc','field_67cee13e86382'),(626,189,'pages_block_components_0_carousel_item','3'),(627,189,'_pages_block_components_0_carousel_item','field_67cee0c68637f'),(628,189,'pages_block_components','a:2:{i:0;s:14:\"carousel_block\";i:1;s:14:\"review_section\";}'),(629,189,'_pages_block_components','field_67ceddb41e1f1'),(630,189,'pages_block_components_0_carousel_item_1_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(631,189,'_pages_block_components_0_carousel_item_1_heading','field_67cee10a86380'),(632,189,'pages_block_components_0_carousel_item_1_images','157'),(633,189,'_pages_block_components_0_carousel_item_1_images','field_67cee12c86381'),(634,189,'pages_block_components_0_carousel_item_1_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(635,189,'_pages_block_components_0_carousel_item_1_desc','field_67cee13e86382'),(636,189,'pages_block_components_0_carousel_item_2_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(637,189,'_pages_block_components_0_carousel_item_2_heading','field_67cee10a86380'),(638,189,'pages_block_components_0_carousel_item_2_images','158'),(639,189,'_pages_block_components_0_carousel_item_2_images','field_67cee12c86381'),(640,189,'pages_block_components_0_carousel_item_2_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(641,189,'_pages_block_components_0_carousel_item_2_desc','field_67cee13e86382'),(642,189,'pages_block_components_1_main_heading','Don\'t Just Take Our Word for It!'),(643,189,'_pages_block_components_1_main_heading','field_67cf0552bb668'),(644,189,'pages_block_components_1_maindsc','Long Leaf Boat, RV and Trailer Storage'),(645,189,'_pages_block_components_1_maindsc','field_67cf05a4bb669'),(646,189,'pages_block_components_1_num_review','15 Reviews'),(647,189,'_pages_block_components_1_num_review','field_67cf05dfbb66a'),(648,189,'pages_block_components_1_reviews_0_image','174'),(649,189,'_pages_block_components_1_reviews_0_image','field_67cf076cbb66c'),(650,189,'pages_block_components_1_reviews_0_reviewer_name','Olgie'),(651,189,'_pages_block_components_1_reviews_0_reviewer_name','field_67cf0784bb66d'),(652,189,'pages_block_components_1_reviews_0_date','20250304'),(653,189,'_pages_block_components_1_reviews_0_date','field_67cf079cbb66e'),(654,189,'pages_block_components_1_reviews_1_image','175'),(655,189,'_pages_block_components_1_reviews_1_image','field_67cf076cbb66c'),(656,189,'pages_block_components_1_reviews_1_reviewer_name','Ryan Castle'),(657,189,'_pages_block_components_1_reviews_1_reviewer_name','field_67cf0784bb66d'),(658,189,'pages_block_components_1_reviews_1_date','20250213'),(659,189,'_pages_block_components_1_reviews_1_date','field_67cf079cbb66e'),(660,189,'pages_block_components_1_reviews_2_image','176'),(661,189,'_pages_block_components_1_reviews_2_image','field_67cf076cbb66c'),(662,189,'pages_block_components_1_reviews_2_reviewer_name','james messervy'),(663,189,'_pages_block_components_1_reviews_2_reviewer_name','field_67cf0784bb66d'),(664,189,'pages_block_components_1_reviews_2_date','20250130'),(665,189,'_pages_block_components_1_reviews_2_date','field_67cf079cbb66e'),(666,189,'pages_block_components_1_reviews','9'),(667,189,'_pages_block_components_1_reviews','field_67cf0729bb66b'),(668,189,'pages_block_components_1_reviews_0_desc','Thank you Jay for your help and for secure RV storage. It was g...'),(669,189,'_pages_block_components_1_reviews_0_desc','field_67cf0ab4f9481'),(670,189,'pages_block_components_1_reviews_0_review_link','https://www.google.com/maps?cid=13487484730203671818'),(671,189,'_pages_block_components_1_reviews_0_review_link','field_67cf0ac7f9482'),(672,189,'pages_block_components_1_reviews_1_desc','They do a great job of keeping it secure and making you feel sa...'),(673,189,'_pages_block_components_1_reviews_1_desc','field_67cf0ab4f9481'),(674,189,'pages_block_components_1_reviews_1_review_link','https://www.google.com/maps?cid=13487484730203671818'),(675,189,'_pages_block_components_1_reviews_1_review_link','field_67cf0ac7f9482'),(676,189,'pages_block_components_1_reviews_2_desc','Great experience. Great\r\nlocation.'),(677,189,'_pages_block_components_1_reviews_2_desc','field_67cf0ab4f9481'),(678,189,'pages_block_components_1_reviews_2_review_link',''),(679,189,'_pages_block_components_1_reviews_2_review_link','field_67cf0ac7f9482'),(680,189,'pages_block_components_1_reviews_3_image','188'),(681,189,'_pages_block_components_1_reviews_3_image','field_67cf076cbb66c'),(682,189,'pages_block_components_1_reviews_3_reviewer_name','Carey Johnson'),(683,189,'_pages_block_components_1_reviews_3_reviewer_name','field_67cf0784bb66d'),(684,189,'pages_block_components_1_reviews_3_date','20250125'),(685,189,'_pages_block_components_1_reviews_3_date','field_67cf079cbb66e'),(686,189,'pages_block_components_1_reviews_3_desc','Great location with easy\r\naccess.'),(687,189,'_pages_block_components_1_reviews_3_desc','field_67cf0ab4f9481'),(688,189,'pages_block_components_1_reviews_3_review_link',''),(689,189,'_pages_block_components_1_reviews_3_review_link','field_67cf0ac7f9482'),(690,189,'pages_block_components_1_reviews_4_image','187'),(691,189,'_pages_block_components_1_reviews_4_image','field_67cf076cbb66c'),(692,189,'pages_block_components_1_reviews_4_reviewer_name','Amber Byars'),(693,189,'_pages_block_components_1_reviews_4_reviewer_name','field_67cf0784bb66d'),(694,189,'pages_block_components_1_reviews_4_date','20241216'),(695,189,'_pages_block_components_1_reviews_4_date','field_67cf079cbb66e'),(696,189,'pages_block_components_1_reviews_4_desc','Convenient location and great communication.'),(697,189,'_pages_block_components_1_reviews_4_desc','field_67cf0ab4f9481'),(698,189,'pages_block_components_1_reviews_4_review_link',''),(699,189,'_pages_block_components_1_reviews_4_review_link','field_67cf0ac7f9482'),(700,189,'pages_block_components_1_reviews_5_image','186'),(701,189,'_pages_block_components_1_reviews_5_image','field_67cf076cbb66c'),(702,189,'pages_block_components_1_reviews_5_reviewer_name','Catherine McRae'),(703,189,'_pages_block_components_1_reviews_5_reviewer_name','field_67cf0784bb66d'),(704,189,'pages_block_components_1_reviews_5_date','20240722'),(705,189,'_pages_block_components_1_reviews_5_date','field_67cf079cbb66e'),(706,189,'pages_block_components_1_reviews_5_desc','Sales representative was very helpful. Rental process was ve...'),(707,189,'_pages_block_components_1_reviews_5_desc','field_67cf0ab4f9481'),(708,189,'pages_block_components_1_reviews_5_review_link','https://www.google.com/maps?cid=13487484730203671818'),(709,189,'_pages_block_components_1_reviews_5_review_link','field_67cf0ac7f9482'),(710,189,'pages_block_components_1_reviews_6_image','185'),(711,189,'_pages_block_components_1_reviews_6_image','field_67cf076cbb66c'),(712,189,'pages_block_components_1_reviews_6_reviewer_name','Josh Cecil'),(713,189,'_pages_block_components_1_reviews_6_reviewer_name','field_67cf0784bb66d'),(714,189,'pages_block_components_1_reviews_6_date','20240722'),(715,189,'_pages_block_components_1_reviews_6_date','field_67cf079cbb66e'),(716,189,'pages_block_components_1_reviews_6_desc','This customer did not write a review.'),(717,189,'_pages_block_components_1_reviews_6_desc','field_67cf0ab4f9481'),(718,189,'pages_block_components_1_reviews_6_review_link',''),(719,189,'_pages_block_components_1_reviews_6_review_link','field_67cf0ac7f9482'),(720,189,'pages_block_components_1_reviews_7_image','184'),(721,189,'_pages_block_components_1_reviews_7_image','field_67cf076cbb66c'),(722,189,'pages_block_components_1_reviews_7_reviewer_name','Keith Edwards'),(723,189,'_pages_block_components_1_reviews_7_reviewer_name','field_67cf0784bb66d'),(724,189,'pages_block_components_1_reviews_7_date','20240719'),(725,189,'_pages_block_components_1_reviews_7_date','field_67cf079cbb66e'),(726,189,'pages_block_components_1_reviews_7_desc','Overall a very good spot to store a vehicle, boat or RV if you live...'),(727,189,'_pages_block_components_1_reviews_7_desc','field_67cf0ab4f9481'),(728,189,'pages_block_components_1_reviews_7_review_link','https://www.google.com/maps?cid=13487484730203671818'),(729,189,'_pages_block_components_1_reviews_7_review_link','field_67cf0ac7f9482'),(730,189,'pages_block_components_1_reviews_8_image','183'),(731,189,'_pages_block_components_1_reviews_8_image','field_67cf076cbb66c'),(732,189,'pages_block_components_1_reviews_8_reviewer_name','Kalleigh Cook'),(733,189,'_pages_block_components_1_reviews_8_reviewer_name','field_67cf0784bb66d'),(734,189,'pages_block_components_1_reviews_8_date','20240719'),(735,189,'_pages_block_components_1_reviews_8_date','field_67cf079cbb66e'),(736,189,'pages_block_components_1_reviews_8_desc','Great place for boat storage. Very responsive office staff.'),(737,189,'_pages_block_components_1_reviews_8_desc','field_67cf0ab4f9481'),(738,189,'pages_block_components_1_reviews_8_review_link',''),(739,189,'_pages_block_components_1_reviews_8_review_link','field_67cf0ac7f9482'),(740,191,'_wp_attached_file','2025/03/WhatsApp-Image-2025-03-10-at-9.39.46-PM.jpeg'),(741,191,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1117;s:4:\"file\";s:52:\"2025/03/WhatsApp-Image-2025-03-10-at-9.39.46-PM.jpeg\";s:8:\"filesize\";i:423085;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2025-03-10-at-9.39.46-PM-300x209.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19990;}s:5:\"large\";a:5:{s:4:\"file\";s:53:\"WhatsApp-Image-2025-03-10-at-9.39.46-PM-1024x715.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:715;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133622;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2025-03-10-at-9.39.46-PM-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8555;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:52:\"WhatsApp-Image-2025-03-10-at-9.39.46-PM-768x536.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85823;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:54:\"WhatsApp-Image-2025-03-10-at-9.39.46-PM-1536x1072.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1072;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:244900;}}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:{}}}'),(744,192,'footnotes',''),(748,192,'pages_block_components_0_carousel_item_0_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(749,192,'_pages_block_components_0_carousel_item_0_heading','field_67cee10a86380'),(750,192,'pages_block_components_0_carousel_item_0_images','153'),(751,192,'_pages_block_components_0_carousel_item_0_images','field_67cee12c86381'),(752,192,'pages_block_components_0_carousel_item_0_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(753,192,'_pages_block_components_0_carousel_item_0_desc','field_67cee13e86382'),(754,192,'pages_block_components_0_carousel_item','3'),(755,192,'_pages_block_components_0_carousel_item','field_67cee0c68637f'),(756,192,'pages_block_components','a:2:{i:0;s:14:\"carousel_block\";i:1;s:14:\"review_section\";}'),(757,192,'_pages_block_components','field_67ceddb41e1f1'),(758,192,'pages_block_components_0_carousel_item_1_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(759,192,'_pages_block_components_0_carousel_item_1_heading','field_67cee10a86380'),(760,192,'pages_block_components_0_carousel_item_1_images','157'),(761,192,'_pages_block_components_0_carousel_item_1_images','field_67cee12c86381'),(762,192,'pages_block_components_0_carousel_item_1_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(763,192,'_pages_block_components_0_carousel_item_1_desc','field_67cee13e86382'),(764,192,'pages_block_components_0_carousel_item_2_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(765,192,'_pages_block_components_0_carousel_item_2_heading','field_67cee10a86380'),(766,192,'pages_block_components_0_carousel_item_2_images','158'),(767,192,'_pages_block_components_0_carousel_item_2_images','field_67cee12c86381'),(768,192,'pages_block_components_0_carousel_item_2_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(769,192,'_pages_block_components_0_carousel_item_2_desc','field_67cee13e86382'),(770,192,'pages_block_components_1_main_heading','Don\'t Just Take Our Word for It!'),(771,192,'_pages_block_components_1_main_heading','field_67cf0552bb668'),(772,192,'pages_block_components_1_maindsc','Long Leaf Boat, RV and Trailer Storage'),(773,192,'_pages_block_components_1_maindsc','field_67cf05a4bb669'),(774,192,'pages_block_components_1_num_review','15 Reviews'),(775,192,'_pages_block_components_1_num_review','field_67cf05dfbb66a'),(776,192,'pages_block_components_1_reviews_0_image','174'),(777,192,'_pages_block_components_1_reviews_0_image','field_67cf076cbb66c'),(778,192,'pages_block_components_1_reviews_0_reviewer_name','Olgie'),(779,192,'_pages_block_components_1_reviews_0_reviewer_name','field_67cf0784bb66d'),(780,192,'pages_block_components_1_reviews_0_date','20250304'),(781,192,'_pages_block_components_1_reviews_0_date','field_67cf079cbb66e'),(782,192,'pages_block_components_1_reviews_1_image','175'),(783,192,'_pages_block_components_1_reviews_1_image','field_67cf076cbb66c'),(784,192,'pages_block_components_1_reviews_1_reviewer_name','Ryan Castle'),(785,192,'_pages_block_components_1_reviews_1_reviewer_name','field_67cf0784bb66d'),(786,192,'pages_block_components_1_reviews_1_date','20250213'),(787,192,'_pages_block_components_1_reviews_1_date','field_67cf079cbb66e'),(788,192,'pages_block_components_1_reviews_2_image','176'),(789,192,'_pages_block_components_1_reviews_2_image','field_67cf076cbb66c'),(790,192,'pages_block_components_1_reviews_2_reviewer_name','james messervy'),(791,192,'_pages_block_components_1_reviews_2_reviewer_name','field_67cf0784bb66d'),(792,192,'pages_block_components_1_reviews_2_date','20250130'),(793,192,'_pages_block_components_1_reviews_2_date','field_67cf079cbb66e'),(794,192,'pages_block_components_1_reviews','9'),(795,192,'_pages_block_components_1_reviews','field_67cf0729bb66b'),(796,192,'pages_block_components_1_reviews_0_desc','Thank you Jay for your help and for secure RV storage. It was g...'),(797,192,'_pages_block_components_1_reviews_0_desc','field_67cf0ab4f9481'),(798,192,'pages_block_components_1_reviews_0_review_link','https://www.google.com/maps?cid=13487484730203671818'),(799,192,'_pages_block_components_1_reviews_0_review_link','field_67cf0ac7f9482'),(800,192,'pages_block_components_1_reviews_1_desc','They do a great job of keeping it secure and making you feel sa...'),(801,192,'_pages_block_components_1_reviews_1_desc','field_67cf0ab4f9481'),(802,192,'pages_block_components_1_reviews_1_review_link','https://www.google.com/maps?cid=13487484730203671818'),(803,192,'_pages_block_components_1_reviews_1_review_link','field_67cf0ac7f9482'),(804,192,'pages_block_components_1_reviews_2_desc','Great experience. Great\r\nlocation.'),(805,192,'_pages_block_components_1_reviews_2_desc','field_67cf0ab4f9481'),(806,192,'pages_block_components_1_reviews_2_review_link',''),(807,192,'_pages_block_components_1_reviews_2_review_link','field_67cf0ac7f9482'),(808,192,'pages_block_components_1_reviews_3_image','188'),(809,192,'_pages_block_components_1_reviews_3_image','field_67cf076cbb66c'),(810,192,'pages_block_components_1_reviews_3_reviewer_name','Carey Johnson'),(811,192,'_pages_block_components_1_reviews_3_reviewer_name','field_67cf0784bb66d'),(812,192,'pages_block_components_1_reviews_3_date','20250125'),(813,192,'_pages_block_components_1_reviews_3_date','field_67cf079cbb66e'),(814,192,'pages_block_components_1_reviews_3_desc','Great location with easy\r\naccess.'),(815,192,'_pages_block_components_1_reviews_3_desc','field_67cf0ab4f9481'),(816,192,'pages_block_components_1_reviews_3_review_link',''),(817,192,'_pages_block_components_1_reviews_3_review_link','field_67cf0ac7f9482'),(818,192,'pages_block_components_1_reviews_4_image','187'),(819,192,'_pages_block_components_1_reviews_4_image','field_67cf076cbb66c'),(820,192,'pages_block_components_1_reviews_4_reviewer_name','Amber Byars'),(821,192,'_pages_block_components_1_reviews_4_reviewer_name','field_67cf0784bb66d'),(822,192,'pages_block_components_1_reviews_4_date','20241216'),(823,192,'_pages_block_components_1_reviews_4_date','field_67cf079cbb66e'),(824,192,'pages_block_components_1_reviews_4_desc','Convenient location and great communication.'),(825,192,'_pages_block_components_1_reviews_4_desc','field_67cf0ab4f9481'),(826,192,'pages_block_components_1_reviews_4_review_link',''),(827,192,'_pages_block_components_1_reviews_4_review_link','field_67cf0ac7f9482'),(828,192,'pages_block_components_1_reviews_5_image','186'),(829,192,'_pages_block_components_1_reviews_5_image','field_67cf076cbb66c'),(830,192,'pages_block_components_1_reviews_5_reviewer_name','Catherine McRae'),(831,192,'_pages_block_components_1_reviews_5_reviewer_name','field_67cf0784bb66d'),(832,192,'pages_block_components_1_reviews_5_date','20240722'),(833,192,'_pages_block_components_1_reviews_5_date','field_67cf079cbb66e'),(834,192,'pages_block_components_1_reviews_5_desc','Sales representative was very helpful. Rental process was ve...'),(835,192,'_pages_block_components_1_reviews_5_desc','field_67cf0ab4f9481'),(836,192,'pages_block_components_1_reviews_5_review_link','https://www.google.com/maps?cid=13487484730203671818'),(837,192,'_pages_block_components_1_reviews_5_review_link','field_67cf0ac7f9482'),(838,192,'pages_block_components_1_reviews_6_image','185'),(839,192,'_pages_block_components_1_reviews_6_image','field_67cf076cbb66c'),(840,192,'pages_block_components_1_reviews_6_reviewer_name','Josh Cecil'),(841,192,'_pages_block_components_1_reviews_6_reviewer_name','field_67cf0784bb66d'),(842,192,'pages_block_components_1_reviews_6_date','20240722'),(843,192,'_pages_block_components_1_reviews_6_date','field_67cf079cbb66e'),(844,192,'pages_block_components_1_reviews_6_desc','This customer did not write a review.'),(845,192,'_pages_block_components_1_reviews_6_desc','field_67cf0ab4f9481'),(846,192,'pages_block_components_1_reviews_6_review_link',''),(847,192,'_pages_block_components_1_reviews_6_review_link','field_67cf0ac7f9482'),(848,192,'pages_block_components_1_reviews_7_image','184'),(849,192,'_pages_block_components_1_reviews_7_image','field_67cf076cbb66c'),(850,192,'pages_block_components_1_reviews_7_reviewer_name','Keith Edwards'),(851,192,'_pages_block_components_1_reviews_7_reviewer_name','field_67cf0784bb66d'),(852,192,'pages_block_components_1_reviews_7_date','20240719'),(853,192,'_pages_block_components_1_reviews_7_date','field_67cf079cbb66e'),(854,192,'pages_block_components_1_reviews_7_desc','Overall a very good spot to store a vehicle, boat or RV if you live...'),(855,192,'_pages_block_components_1_reviews_7_desc','field_67cf0ab4f9481'),(856,192,'pages_block_components_1_reviews_7_review_link','https://www.google.com/maps?cid=13487484730203671818'),(857,192,'_pages_block_components_1_reviews_7_review_link','field_67cf0ac7f9482'),(858,192,'pages_block_components_1_reviews_8_image','183'),(859,192,'_pages_block_components_1_reviews_8_image','field_67cf076cbb66c'),(860,192,'pages_block_components_1_reviews_8_reviewer_name','Kalleigh Cook'),(861,192,'_pages_block_components_1_reviews_8_reviewer_name','field_67cf0784bb66d'),(862,192,'pages_block_components_1_reviews_8_date','20240719'),(863,192,'_pages_block_components_1_reviews_8_date','field_67cf079cbb66e'),(864,192,'pages_block_components_1_reviews_8_desc','Great place for boat storage. Very responsive office staff.'),(865,192,'_pages_block_components_1_reviews_8_desc','field_67cf0ab4f9481'),(866,192,'pages_block_components_1_reviews_8_review_link',''),(867,192,'_pages_block_components_1_reviews_8_review_link','field_67cf0ac7f9482'),(868,192,'pages_block_components_1_background_image','191'),(869,192,'_pages_block_components_1_background_image','field_67cf0ed7f052f'),(873,89,'footnotes',''),(875,201,'footnotes',''),(877,89,'pages_block_components_0_heading','Exterior Space for your Recreational or Work Vehicle'),(878,89,'_pages_block_components_0_heading','field_67cf10a1c28be'),(879,89,'pages_block_components_0_sub_heading','Store your boat, RV, utility trailer, commercial vehicle, or extra vehicle securely and affordably.'),(880,89,'_pages_block_components_0_sub_heading','field_67cf10bec28bf'),(881,89,'pages_block_components_0_add_more_price_0_size','10\' x 15\''),(882,89,'_pages_block_components_0_add_more_price_0_size','field_67cf1115c28c1'),(883,89,'pages_block_components_0_add_more_price_0_desc','Great for a car or small trailer. '),(884,89,'_pages_block_components_0_add_more_price_0_desc','field_67cf1135c28c2'),(885,89,'pages_block_components_0_add_more_price_0_price','$69/month'),(886,89,'_pages_block_components_0_add_more_price_0_price','field_67cf1146c28c3'),(887,89,'pages_block_components_0_add_more_price_1_size','10\' x 20\''),(888,89,'_pages_block_components_0_add_more_price_1_size','field_67cf1115c28c1'),(889,89,'pages_block_components_0_add_more_price_1_desc','Great for utility trailers, small Jon boats, commercial vehicles, and small campers.'),(890,89,'_pages_block_components_0_add_more_price_1_desc','field_67cf1135c28c2'),(891,89,'pages_block_components_0_add_more_price_1_price','$99/month'),(892,89,'_pages_block_components_0_add_more_price_1_price','field_67cf1146c28c3'),(893,89,'pages_block_components_0_add_more_price_2_size','10\' x 30\''),(894,89,'_pages_block_components_0_add_more_price_2_size','field_67cf1115c28c1'),(895,89,'pages_block_components_0_add_more_price_2_desc','Store that 24\' center console or 25\' Airstream camper! '),(896,89,'_pages_block_components_0_add_more_price_2_desc','field_67cf1135c28c2'),(897,89,'pages_block_components_0_add_more_price_2_price','$119/month'),(898,89,'_pages_block_components_0_add_more_price_2_price','field_67cf1146c28c3'),(899,89,'pages_block_components_0_add_more_price_3_size','11\' x 40\''),(900,89,'_pages_block_components_0_add_more_price_3_size','field_67cf1115c28c1'),(901,89,'pages_block_components_0_add_more_price_3_desc','Big rig and 5th Wheel Campers rejoice. We got you covered. '),(902,89,'_pages_block_components_0_add_more_price_3_desc','field_67cf1135c28c2'),(903,89,'pages_block_components_0_add_more_price_3_price','$135/month'),(904,89,'_pages_block_components_0_add_more_price_3_price','field_67cf1146c28c3'),(905,89,'pages_block_components_0_add_more_price','4'),(906,89,'_pages_block_components_0_add_more_price','field_67cf10d8c28c0'),(907,89,'pages_block_components','a:1:{i:0;s:13:\"price_section\";}'),(908,89,'_pages_block_components','field_67ceddb41e1f1'),(909,89,'pay_here','https://onlinepayments.storagecommander.net/login/41695'),(910,89,'_pay_here','field_67cf118953b60'),(911,201,'pages_block_components_0_heading','Exterior Space for your Recreational or Work Vehicle'),(912,201,'_pages_block_components_0_heading','field_67cf10a1c28be'),(913,201,'pages_block_components_0_sub_heading','Store your boat, RV, utility trailer, commercial vehicle, or extra vehicle securely and affordably.'),(914,201,'_pages_block_components_0_sub_heading','field_67cf10bec28bf'),(915,201,'pages_block_components_0_add_more_price_0_size','10\' x 15\''),(916,201,'_pages_block_components_0_add_more_price_0_size','field_67cf1115c28c1'),(917,201,'pages_block_components_0_add_more_price_0_desc','Great for a car or small trailer. '),(918,201,'_pages_block_components_0_add_more_price_0_desc','field_67cf1135c28c2'),(919,201,'pages_block_components_0_add_more_price_0_price','$69/month'),(920,201,'_pages_block_components_0_add_more_price_0_price','field_67cf1146c28c3'),(921,201,'pages_block_components_0_add_more_price_1_size','10\' x 20\''),(922,201,'_pages_block_components_0_add_more_price_1_size','field_67cf1115c28c1'),(923,201,'pages_block_components_0_add_more_price_1_desc','Great for utility trailers, small Jon boats, commercial vehicles, and small campers.'),(924,201,'_pages_block_components_0_add_more_price_1_desc','field_67cf1135c28c2'),(925,201,'pages_block_components_0_add_more_price_1_price','$99/month'),(926,201,'_pages_block_components_0_add_more_price_1_price','field_67cf1146c28c3'),(927,201,'pages_block_components_0_add_more_price_2_size','10\' x 30\''),(928,201,'_pages_block_components_0_add_more_price_2_size','field_67cf1115c28c1'),(929,201,'pages_block_components_0_add_more_price_2_desc','Store that 24\' center console or 25\' Airstream camper! '),(930,201,'_pages_block_components_0_add_more_price_2_desc','field_67cf1135c28c2'),(931,201,'pages_block_components_0_add_more_price_2_price','$119/month'),(932,201,'_pages_block_components_0_add_more_price_2_price','field_67cf1146c28c3'),(933,201,'pages_block_components_0_add_more_price_3_size','11\' x 40\''),(934,201,'_pages_block_components_0_add_more_price_3_size','field_67cf1115c28c1'),(935,201,'pages_block_components_0_add_more_price_3_desc','Big rig and 5th Wheel Campers rejoice. We got you covered. '),(936,201,'_pages_block_components_0_add_more_price_3_desc','field_67cf1135c28c2'),(937,201,'pages_block_components_0_add_more_price_3_price','$135/month'),(938,201,'_pages_block_components_0_add_more_price_3_price','field_67cf1146c28c3'),(939,201,'pages_block_components_0_add_more_price','4'),(940,201,'_pages_block_components_0_add_more_price','field_67cf10d8c28c0'),(941,201,'pages_block_components','a:1:{i:0;s:13:\"price_section\";}'),(942,201,'_pages_block_components','field_67ceddb41e1f1'),(943,201,'pay_here','https://onlinepayments.storagecommander.net/login/41695'),(944,201,'_pay_here','field_67cf118953b60'),(945,202,'_wp_attached_file','2025/03/Nomudrv_Storage_2_-removebg-preview.png'),(946,202,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:47:\"2025/03/Nomudrv_Storage_2_-removebg-preview.png\";s:8:\"filesize\";i:18275;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"Nomudrv_Storage_2_-removebg-preview-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5874;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Nomudrv_Storage_2_-removebg-preview-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2039;}}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:{}}}'),(947,203,'_wp_attached_file','2025/03/Nomudrv_Storage_2_-removebg-preview1.png'),(948,203,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:146;s:6:\"height\";i:53;s:4:\"file\";s:48:\"2025/03/Nomudrv_Storage_2_-removebg-preview1.png\";s:8:\"filesize\";i:10192;s:5:\"sizes\";a: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:{}}}'),(949,204,'_edit_lock','1741631100:2'),(950,204,'_edit_last','2'),(953,215,'footnotes',''),(955,89,'pages_block_components_0_pay_link','https://onlinepayments.storagecommander.net/login/41695'),(956,89,'_pages_block_components_0_pay_link','field_67cf1e00abbb8'),(957,215,'pages_block_components_0_heading','Exterior Space for your Recreational or Work Vehicle'),(958,215,'_pages_block_components_0_heading','field_67cf10a1c28be'),(959,215,'pages_block_components_0_sub_heading','Store your boat, RV, utility trailer, commercial vehicle, or extra vehicle securely and affordably.'),(960,215,'_pages_block_components_0_sub_heading','field_67cf10bec28bf'),(961,215,'pages_block_components_0_add_more_price_0_size','10\' x 15\''),(962,215,'_pages_block_components_0_add_more_price_0_size','field_67cf1115c28c1'),(963,215,'pages_block_components_0_add_more_price_0_desc','Great for a car or small trailer. '),(964,215,'_pages_block_components_0_add_more_price_0_desc','field_67cf1135c28c2'),(965,215,'pages_block_components_0_add_more_price_0_price','$69/month'),(966,215,'_pages_block_components_0_add_more_price_0_price','field_67cf1146c28c3'),(967,215,'pages_block_components_0_add_more_price_1_size','10\' x 20\''),(968,215,'_pages_block_components_0_add_more_price_1_size','field_67cf1115c28c1'),(969,215,'pages_block_components_0_add_more_price_1_desc','Great for utility trailers, small Jon boats, commercial vehicles, and small campers.'),(970,215,'_pages_block_components_0_add_more_price_1_desc','field_67cf1135c28c2'),(971,215,'pages_block_components_0_add_more_price_1_price','$99/month'),(972,215,'_pages_block_components_0_add_more_price_1_price','field_67cf1146c28c3'),(973,215,'pages_block_components_0_add_more_price_2_size','10\' x 30\''),(974,215,'_pages_block_components_0_add_more_price_2_size','field_67cf1115c28c1'),(975,215,'pages_block_components_0_add_more_price_2_desc','Store that 24\' center console or 25\' Airstream camper! '),(976,215,'_pages_block_components_0_add_more_price_2_desc','field_67cf1135c28c2'),(977,215,'pages_block_components_0_add_more_price_2_price','$119/month'),(978,215,'_pages_block_components_0_add_more_price_2_price','field_67cf1146c28c3'),(979,215,'pages_block_components_0_add_more_price_3_size','11\' x 40\''),(980,215,'_pages_block_components_0_add_more_price_3_size','field_67cf1115c28c1'),(981,215,'pages_block_components_0_add_more_price_3_desc','Big rig and 5th Wheel Campers rejoice. We got you covered. '),(982,215,'_pages_block_components_0_add_more_price_3_desc','field_67cf1135c28c2'),(983,215,'pages_block_components_0_add_more_price_3_price','$135/month'),(984,215,'_pages_block_components_0_add_more_price_3_price','field_67cf1146c28c3'),(985,215,'pages_block_components_0_add_more_price','4'),(986,215,'_pages_block_components_0_add_more_price','field_67cf10d8c28c0'),(987,215,'pages_block_components','a:1:{i:0;s:13:\"price_section\";}'),(988,215,'_pages_block_components','field_67ceddb41e1f1'),(989,215,'pay_here','https://onlinepayments.storagecommander.net/login/41695'),(990,215,'_pay_here','field_67cf118953b60'),(991,215,'pages_block_components_0_pay_link','https://onlinepayments.storagecommander.net/login/41695'),(992,215,'_pages_block_components_0_pay_link','field_67cf1e00abbb8'),(996,93,'footnotes',''),(998,217,'footnotes',''),(1000,93,'pages_block_components',''),(1001,93,'_pages_block_components','field_67ceddb41e1f1'),(1002,93,'heading','No Mud RV Storage'),(1003,93,'_heading','field_67cf1c9f9f1a3'),(1004,93,'address','2527 West 5th North Street, Summerville, South Carolina 29483, United States'),(1005,93,'_address','field_67cf1ce41c27c'),(1006,93,'phone','843-829-5500'),(1007,93,'_phone','field_67cf1d051c27d'),(1008,93,'add_more_time_slot_0_add_slot','Mon 09:00 am – 05:00 pm'),(1009,93,'_add_more_time_slot_0_add_slot','field_67cf1ecd743e8'),(1010,93,'add_more_time_slot_1_add_slot','Tue 09:00 am – 05:00 pm'),(1011,93,'_add_more_time_slot_1_add_slot','field_67cf1ecd743e8'),(1012,93,'add_more_time_slot_2_add_slot','Wed 09:00 am – 05:00 pm'),(1013,93,'_add_more_time_slot_2_add_slot','field_67cf1ecd743e8'),(1014,93,'add_more_time_slot_3_add_slot','Thu 09:00 am – 05:00 pm'),(1015,93,'_add_more_time_slot_3_add_slot','field_67cf1ecd743e8'),(1016,93,'add_more_time_slot_4_add_slot','Fri 09:00 am – 05:00 pm'),(1017,93,'_add_more_time_slot_4_add_slot','field_67cf1ecd743e8'),(1018,93,'add_more_time_slot_5_add_slot','Sat 09:00 am – 12:00 pm'),(1019,93,'_add_more_time_slot_5_add_slot','field_67cf1ecd743e8'),(1020,93,'add_more_time_slot_6_add_slot','Sun Closed'),(1021,93,'_add_more_time_slot_6_add_slot','field_67cf1ecd743e8'),(1022,93,'add_more_time_slot','7'),(1023,93,'_add_more_time_slot','field_67cf1e90743e7'),(1024,93,'storage_heading','Storage Access Hours'),(1025,93,'_storage_heading','field_67cf1ef2743ea'),(1026,93,'day','Sunday - Saturday'),(1027,93,'_day','field_67cf1f10743eb'),(1028,93,'time','6:00 AM - 9:00 PM'),(1029,93,'_time','field_67cf1f1e743ec'),(1030,217,'pages_block_components',''),(1031,217,'_pages_block_components','field_67ceddb41e1f1'),(1032,217,'heading','Business Hours'),(1033,217,'_heading','field_67cf1e77743e6'),(1034,217,'address','2527 West 5th North Street, Summerville, South Carolina 29483, United States'),(1035,217,'_address','field_67cf1ce41c27c'),(1036,217,'phone','843-829-5500'),(1037,217,'_phone','field_67cf1d051c27d'),(1038,217,'add_more_time_slot_0_add_slot','Mon 09:00 am – 05:00 pm'),(1039,217,'_add_more_time_slot_0_add_slot','field_67cf1ecd743e8'),(1040,217,'add_more_time_slot_1_add_slot','Tue 09:00 am – 05:00 pm'),(1041,217,'_add_more_time_slot_1_add_slot','field_67cf1ecd743e8'),(1042,217,'add_more_time_slot_2_add_slot','Wed 09:00 am – 05:00 pm'),(1043,217,'_add_more_time_slot_2_add_slot','field_67cf1ecd743e8'),(1044,217,'add_more_time_slot_3_add_slot','Thu 09:00 am – 05:00 pm'),(1045,217,'_add_more_time_slot_3_add_slot','field_67cf1ecd743e8'),(1046,217,'add_more_time_slot_4_add_slot','Fri 09:00 am – 05:00 pm'),(1047,217,'_add_more_time_slot_4_add_slot','field_67cf1ecd743e8'),(1048,217,'add_more_time_slot_5_add_slot','Sat 09:00 am – 12:00 pm'),(1049,217,'_add_more_time_slot_5_add_slot','field_67cf1ecd743e8'),(1050,217,'add_more_time_slot_6_add_slot','Sun Closed'),(1051,217,'_add_more_time_slot_6_add_slot','field_67cf1ecd743e8'),(1052,217,'add_more_time_slot','7'),(1053,217,'_add_more_time_slot','field_67cf1e90743e7'),(1054,217,'storage_heading','Storage Access Hours'),(1055,217,'_storage_heading','field_67cf1ef2743ea'),(1056,217,'day','Sunday - Saturday'),(1057,217,'_day','field_67cf1f10743eb'),(1058,217,'time','6:00 AM - 9:00 PM'),(1059,217,'_time','field_67cf1f1e743ec'),(1062,218,'footnotes',''),(1064,218,'pages_block_components',''),(1065,218,'_pages_block_components','field_67ceddb41e1f1'),(1066,218,'heading','Business Hours'),(1067,218,'_heading','field_67cf1e77743e6'),(1068,218,'address','2527 West 5th North Street, Summerville, South Carolina 29483, United States'),(1069,218,'_address','field_67cf1ce41c27c'),(1070,218,'phone','843-829-5500'),(1071,218,'_phone','field_67cf1d051c27d'),(1072,218,'add_more_time_slot_0_add_slot','Mon 09:00 am – 05:00 pm'),(1073,218,'_add_more_time_slot_0_add_slot','field_67cf1ecd743e8'),(1074,218,'add_more_time_slot_1_add_slot','Tue 09:00 am – 05:00 pm'),(1075,218,'_add_more_time_slot_1_add_slot','field_67cf1ecd743e8'),(1076,218,'add_more_time_slot_2_add_slot','Wed 09:00 am – 05:00 pm'),(1077,218,'_add_more_time_slot_2_add_slot','field_67cf1ecd743e8'),(1078,218,'add_more_time_slot_3_add_slot','Thu 09:00 am – 05:00 pm'),(1079,218,'_add_more_time_slot_3_add_slot','field_67cf1ecd743e8'),(1080,218,'add_more_time_slot_4_add_slot','Fri 09:00 am – 05:00 pm'),(1081,218,'_add_more_time_slot_4_add_slot','field_67cf1ecd743e8'),(1082,218,'add_more_time_slot_5_add_slot','Sat 09:00 am – 12:00 pm'),(1083,218,'_add_more_time_slot_5_add_slot','field_67cf1ecd743e8'),(1084,218,'add_more_time_slot_6_add_slot','Sun Closed'),(1085,218,'_add_more_time_slot_6_add_slot','field_67cf1ecd743e8'),(1086,218,'add_more_time_slot','7'),(1087,218,'_add_more_time_slot','field_67cf1e90743e7'),(1088,218,'storage_heading','Storage Access Hours'),(1089,218,'_storage_heading','field_67cf1ef2743ea'),(1090,218,'day','Sunday - Saturday'),(1091,218,'_day','field_67cf1f10743eb'),(1092,218,'time','6:00 AM - 9:00 PM'),(1093,218,'_time','field_67cf1f1e743ec'),(1096,219,'footnotes',''),(1098,93,'heading_2','Business Hours'),(1099,93,'_heading_2','field_67cf1e77743e6'),(1100,219,'pages_block_components',''),(1101,219,'_pages_block_components','field_67ceddb41e1f1'),(1102,219,'heading','No Mud RV Storage'),(1103,219,'_heading','field_67cf1c9f9f1a3'),(1104,219,'address','2527 West 5th North Street, Summerville, South Carolina 29483, United States'),(1105,219,'_address','field_67cf1ce41c27c'),(1106,219,'phone','843-829-5500'),(1107,219,'_phone','field_67cf1d051c27d'),(1108,219,'add_more_time_slot_0_add_slot','Mon 09:00 am – 05:00 pm'),(1109,219,'_add_more_time_slot_0_add_slot','field_67cf1ecd743e8'),(1110,219,'add_more_time_slot_1_add_slot','Tue 09:00 am – 05:00 pm'),(1111,219,'_add_more_time_slot_1_add_slot','field_67cf1ecd743e8'),(1112,219,'add_more_time_slot_2_add_slot','Wed 09:00 am – 05:00 pm'),(1113,219,'_add_more_time_slot_2_add_slot','field_67cf1ecd743e8'),(1114,219,'add_more_time_slot_3_add_slot','Thu 09:00 am – 05:00 pm'),(1115,219,'_add_more_time_slot_3_add_slot','field_67cf1ecd743e8'),(1116,219,'add_more_time_slot_4_add_slot','Fri 09:00 am – 05:00 pm'),(1117,219,'_add_more_time_slot_4_add_slot','field_67cf1ecd743e8'),(1118,219,'add_more_time_slot_5_add_slot','Sat 09:00 am – 12:00 pm'),(1119,219,'_add_more_time_slot_5_add_slot','field_67cf1ecd743e8'),(1120,219,'add_more_time_slot_6_add_slot','Sun Closed'),(1121,219,'_add_more_time_slot_6_add_slot','field_67cf1ecd743e8'),(1122,219,'add_more_time_slot','7'),(1123,219,'_add_more_time_slot','field_67cf1e90743e7'),(1124,219,'storage_heading','Storage Access Hours'),(1125,219,'_storage_heading','field_67cf1ef2743ea'),(1126,219,'day','Sunday - Saturday'),(1127,219,'_day','field_67cf1f10743eb'),(1128,219,'time','6:00 AM - 9:00 PM'),(1129,219,'_time','field_67cf1f1e743ec'),(1130,219,'heading_2','Business Hours'),(1131,219,'_heading_2','field_67cf1e77743e6'),(1132,221,'_wp_attached_file','2025/03/ariel-view.jpg'),(1133,221,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:4:\"file\";s:22:\"2025/03/ariel-view.jpg\";s:8:\"filesize\";i:730303;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"ariel-view-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13272;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"ariel-view-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110916;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"ariel-view-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5997;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"ariel-view-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66978;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"ariel-view-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:235413;}}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:{}}}'),(1136,222,'footnotes',''),(1138,93,'web_banner','221'),(1139,93,'_web_banner','field_67cf2ae09426e'),(1140,222,'pages_block_components',''),(1141,222,'_pages_block_components','field_67ceddb41e1f1'),(1142,222,'heading','No Mud RV Storage'),(1143,222,'_heading','field_67cf1c9f9f1a3'),(1144,222,'address','2527 West 5th North Street, Summerville, South Carolina 29483, United States'),(1145,222,'_address','field_67cf1ce41c27c'),(1146,222,'phone','843-829-5500'),(1147,222,'_phone','field_67cf1d051c27d'),(1148,222,'add_more_time_slot_0_add_slot','Mon 09:00 am – 05:00 pm'),(1149,222,'_add_more_time_slot_0_add_slot','field_67cf1ecd743e8'),(1150,222,'add_more_time_slot_1_add_slot','Tue 09:00 am – 05:00 pm'),(1151,222,'_add_more_time_slot_1_add_slot','field_67cf1ecd743e8'),(1152,222,'add_more_time_slot_2_add_slot','Wed 09:00 am – 05:00 pm'),(1153,222,'_add_more_time_slot_2_add_slot','field_67cf1ecd743e8'),(1154,222,'add_more_time_slot_3_add_slot','Thu 09:00 am – 05:00 pm'),(1155,222,'_add_more_time_slot_3_add_slot','field_67cf1ecd743e8'),(1156,222,'add_more_time_slot_4_add_slot','Fri 09:00 am – 05:00 pm'),(1157,222,'_add_more_time_slot_4_add_slot','field_67cf1ecd743e8'),(1158,222,'add_more_time_slot_5_add_slot','Sat 09:00 am – 12:00 pm'),(1159,222,'_add_more_time_slot_5_add_slot','field_67cf1ecd743e8'),(1160,222,'add_more_time_slot_6_add_slot','Sun Closed'),(1161,222,'_add_more_time_slot_6_add_slot','field_67cf1ecd743e8'),(1162,222,'add_more_time_slot','7'),(1163,222,'_add_more_time_slot','field_67cf1e90743e7'),(1164,222,'storage_heading','Storage Access Hours'),(1165,222,'_storage_heading','field_67cf1ef2743ea'),(1166,222,'day','Sunday - Saturday'),(1167,222,'_day','field_67cf1f10743eb'),(1168,222,'time','6:00 AM - 9:00 PM'),(1169,222,'_time','field_67cf1f1e743ec'),(1170,222,'heading_2','Business Hours'),(1171,222,'_heading_2','field_67cf1e77743e6'),(1172,222,'web_banner','221'),(1173,222,'_web_banner','field_67cf2ae09426e'),(1176,234,'_wp_attached_file','2025/03/cameras.jpg'),(1177,234,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:4:\"file\";s:19:\"2025/03/cameras.jpg\";s:8:\"filesize\";i:187755;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"cameras-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12300;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"cameras-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104455;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"cameras-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5481;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"cameras-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104455;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"cameras-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:216579;}}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:{}}}'),(1178,235,'_wp_attached_file','2025/03/GATE.jpg'),(1179,235,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1200;s:4:\"file\";s:16:\"2025/03/GATE.jpg\";s:8:\"filesize\";i:592728;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"GATE-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18749;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"GATE-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:215139;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"GATE-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7154;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"GATE-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118338;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:18:\"GATE-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:487741;}}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:{}}}'),(1182,236,'footnotes',''),(1208,236,'pages_block_components_0_carousel_item_0_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(1209,236,'_pages_block_components_0_carousel_item_0_heading','field_67cee10a86380'),(1210,236,'pages_block_components_0_carousel_item_0_images','153'),(1211,236,'_pages_block_components_0_carousel_item_0_images','field_67cee12c86381'),(1212,236,'pages_block_components_0_carousel_item_0_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(1213,236,'_pages_block_components_0_carousel_item_0_desc','field_67cee13e86382'),(1214,236,'pages_block_components_0_carousel_item','3'),(1215,236,'_pages_block_components_0_carousel_item','field_67cee0c68637f'),(1216,236,'pages_block_components','a:3:{i:0;s:14:\"carousel_block\";i:1;s:14:\"review_section\";i:2;s:15:\"service_section\";}'),(1217,236,'_pages_block_components','field_67ceddb41e1f1'),(1218,236,'pages_block_components_0_carousel_item_1_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(1219,236,'_pages_block_components_0_carousel_item_1_heading','field_67cee10a86380'),(1220,236,'pages_block_components_0_carousel_item_1_images','157'),(1221,236,'_pages_block_components_0_carousel_item_1_images','field_67cee12c86381'),(1222,236,'pages_block_components_0_carousel_item_1_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(1223,236,'_pages_block_components_0_carousel_item_1_desc','field_67cee13e86382'),(1224,236,'pages_block_components_0_carousel_item_2_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(1225,236,'_pages_block_components_0_carousel_item_2_heading','field_67cee10a86380'),(1226,236,'pages_block_components_0_carousel_item_2_images','158'),(1227,236,'_pages_block_components_0_carousel_item_2_images','field_67cee12c86381'),(1228,236,'pages_block_components_0_carousel_item_2_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(1229,236,'_pages_block_components_0_carousel_item_2_desc','field_67cee13e86382'),(1230,236,'pages_block_components_1_main_heading','Don\'t Just Take Our Word for It!'),(1231,236,'_pages_block_components_1_main_heading','field_67cf0552bb668'),(1232,236,'pages_block_components_1_maindsc','Long Leaf Boat, RV and Trailer Storage'),(1233,236,'_pages_block_components_1_maindsc','field_67cf05a4bb669'),(1234,236,'pages_block_components_1_num_review','15 Reviews'),(1235,236,'_pages_block_components_1_num_review','field_67cf05dfbb66a'),(1236,236,'pages_block_components_1_reviews_0_image','174'),(1237,236,'_pages_block_components_1_reviews_0_image','field_67cf076cbb66c'),(1238,236,'pages_block_components_1_reviews_0_reviewer_name','Olgie'),(1239,236,'_pages_block_components_1_reviews_0_reviewer_name','field_67cf0784bb66d'),(1240,236,'pages_block_components_1_reviews_0_date','20250304'),(1241,236,'_pages_block_components_1_reviews_0_date','field_67cf079cbb66e'),(1242,236,'pages_block_components_1_reviews_1_image','175'),(1243,236,'_pages_block_components_1_reviews_1_image','field_67cf076cbb66c'),(1244,236,'pages_block_components_1_reviews_1_reviewer_name','Ryan Castle'),(1245,236,'_pages_block_components_1_reviews_1_reviewer_name','field_67cf0784bb66d'),(1246,236,'pages_block_components_1_reviews_1_date','20250213'),(1247,236,'_pages_block_components_1_reviews_1_date','field_67cf079cbb66e'),(1248,236,'pages_block_components_1_reviews_2_image','176'),(1249,236,'_pages_block_components_1_reviews_2_image','field_67cf076cbb66c'),(1250,236,'pages_block_components_1_reviews_2_reviewer_name','james messervy'),(1251,236,'_pages_block_components_1_reviews_2_reviewer_name','field_67cf0784bb66d'),(1252,236,'pages_block_components_1_reviews_2_date','20250130'),(1253,236,'_pages_block_components_1_reviews_2_date','field_67cf079cbb66e'),(1254,236,'pages_block_components_1_reviews','9'),(1255,236,'_pages_block_components_1_reviews','field_67cf0729bb66b'),(1256,236,'pages_block_components_1_reviews_0_desc','Thank you Jay for your help and for secure RV storage. It was g...'),(1257,236,'_pages_block_components_1_reviews_0_desc','field_67cf0ab4f9481'),(1258,236,'pages_block_components_1_reviews_0_review_link','https://www.google.com/maps?cid=13487484730203671818'),(1259,236,'_pages_block_components_1_reviews_0_review_link','field_67cf0ac7f9482'),(1260,236,'pages_block_components_1_reviews_1_desc','They do a great job of keeping it secure and making you feel sa...'),(1261,236,'_pages_block_components_1_reviews_1_desc','field_67cf0ab4f9481'),(1262,236,'pages_block_components_1_reviews_1_review_link','https://www.google.com/maps?cid=13487484730203671818'),(1263,236,'_pages_block_components_1_reviews_1_review_link','field_67cf0ac7f9482'),(1264,236,'pages_block_components_1_reviews_2_desc','Great experience. Great\r\nlocation.'),(1265,236,'_pages_block_components_1_reviews_2_desc','field_67cf0ab4f9481'),(1266,236,'pages_block_components_1_reviews_2_review_link',''),(1267,236,'_pages_block_components_1_reviews_2_review_link','field_67cf0ac7f9482'),(1268,236,'pages_block_components_1_reviews_3_image','188'),(1269,236,'_pages_block_components_1_reviews_3_image','field_67cf076cbb66c'),(1270,236,'pages_block_components_1_reviews_3_reviewer_name','Carey Johnson'),(1271,236,'_pages_block_components_1_reviews_3_reviewer_name','field_67cf0784bb66d'),(1272,236,'pages_block_components_1_reviews_3_date','20250125'),(1273,236,'_pages_block_components_1_reviews_3_date','field_67cf079cbb66e'),(1274,236,'pages_block_components_1_reviews_3_desc','Great location with easy\r\naccess.'),(1275,236,'_pages_block_components_1_reviews_3_desc','field_67cf0ab4f9481'),(1276,236,'pages_block_components_1_reviews_3_review_link',''),(1277,236,'_pages_block_components_1_reviews_3_review_link','field_67cf0ac7f9482'),(1278,236,'pages_block_components_1_reviews_4_image','187'),(1279,236,'_pages_block_components_1_reviews_4_image','field_67cf076cbb66c'),(1280,236,'pages_block_components_1_reviews_4_reviewer_name','Amber Byars'),(1281,236,'_pages_block_components_1_reviews_4_reviewer_name','field_67cf0784bb66d'),(1282,236,'pages_block_components_1_reviews_4_date','20241216'),(1283,236,'_pages_block_components_1_reviews_4_date','field_67cf079cbb66e'),(1284,236,'pages_block_components_1_reviews_4_desc','Convenient location and great communication.'),(1285,236,'_pages_block_components_1_reviews_4_desc','field_67cf0ab4f9481'),(1286,236,'pages_block_components_1_reviews_4_review_link',''),(1287,236,'_pages_block_components_1_reviews_4_review_link','field_67cf0ac7f9482'),(1288,236,'pages_block_components_1_reviews_5_image','186'),(1289,236,'_pages_block_components_1_reviews_5_image','field_67cf076cbb66c'),(1290,236,'pages_block_components_1_reviews_5_reviewer_name','Catherine McRae'),(1291,236,'_pages_block_components_1_reviews_5_reviewer_name','field_67cf0784bb66d'),(1292,236,'pages_block_components_1_reviews_5_date','20240722'),(1293,236,'_pages_block_components_1_reviews_5_date','field_67cf079cbb66e'),(1294,236,'pages_block_components_1_reviews_5_desc','Sales representative was very helpful. Rental process was ve...'),(1295,236,'_pages_block_components_1_reviews_5_desc','field_67cf0ab4f9481'),(1296,236,'pages_block_components_1_reviews_5_review_link','https://www.google.com/maps?cid=13487484730203671818'),(1297,236,'_pages_block_components_1_reviews_5_review_link','field_67cf0ac7f9482'),(1298,236,'pages_block_components_1_reviews_6_image','185'),(1299,236,'_pages_block_components_1_reviews_6_image','field_67cf076cbb66c'),(1300,236,'pages_block_components_1_reviews_6_reviewer_name','Josh Cecil'),(1301,236,'_pages_block_components_1_reviews_6_reviewer_name','field_67cf0784bb66d'),(1302,236,'pages_block_components_1_reviews_6_date','20240722'),(1303,236,'_pages_block_components_1_reviews_6_date','field_67cf079cbb66e'),(1304,236,'pages_block_components_1_reviews_6_desc','This customer did not write a review.'),(1305,236,'_pages_block_components_1_reviews_6_desc','field_67cf0ab4f9481'),(1306,236,'pages_block_components_1_reviews_6_review_link',''),(1307,236,'_pages_block_components_1_reviews_6_review_link','field_67cf0ac7f9482'),(1308,236,'pages_block_components_1_reviews_7_image','184'),(1309,236,'_pages_block_components_1_reviews_7_image','field_67cf076cbb66c'),(1310,236,'pages_block_components_1_reviews_7_reviewer_name','Keith Edwards'),(1311,236,'_pages_block_components_1_reviews_7_reviewer_name','field_67cf0784bb66d'),(1312,236,'pages_block_components_1_reviews_7_date','20240719'),(1313,236,'_pages_block_components_1_reviews_7_date','field_67cf079cbb66e'),(1314,236,'pages_block_components_1_reviews_7_desc','Overall a very good spot to store a vehicle, boat or RV if you live...'),(1315,236,'_pages_block_components_1_reviews_7_desc','field_67cf0ab4f9481'),(1316,236,'pages_block_components_1_reviews_7_review_link','https://www.google.com/maps?cid=13487484730203671818'),(1317,236,'_pages_block_components_1_reviews_7_review_link','field_67cf0ac7f9482'),(1318,236,'pages_block_components_1_reviews_8_image','183'),(1319,236,'_pages_block_components_1_reviews_8_image','field_67cf076cbb66c'),(1320,236,'pages_block_components_1_reviews_8_reviewer_name','Kalleigh Cook'),(1321,236,'_pages_block_components_1_reviews_8_reviewer_name','field_67cf0784bb66d'),(1322,236,'pages_block_components_1_reviews_8_date','20240719'),(1323,236,'_pages_block_components_1_reviews_8_date','field_67cf079cbb66e'),(1324,236,'pages_block_components_1_reviews_8_desc','Great place for boat storage. Very responsive office staff.'),(1325,236,'_pages_block_components_1_reviews_8_desc','field_67cf0ab4f9481'),(1326,236,'pages_block_components_1_reviews_8_review_link',''),(1327,236,'_pages_block_components_1_reviews_8_review_link','field_67cf0ac7f9482'),(1328,236,'pages_block_components_1_background_image','191'),(1329,236,'_pages_block_components_1_background_image','field_67cf0ed7f052f'),(1330,236,'pages_block_components_2_main_heading','Boat, RV, Vehicle, and Self Storage Options Available!'),(1331,236,'_pages_block_components_2_main_heading','field_67d15adf994da'),(1332,236,'pages_block_components_2_desc','Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam deserunt voluptatibus, tempore fugiat quibusdam, dolore dolores in nisi quidem ipsam nam laborum alias beatae! Unde repudiandae doloremque incidunt in atque! '),(1333,236,'_pages_block_components_2_desc','field_67d15aee994db'),(1334,236,'pages_block_components_2_more_option_0_about_image','158'),(1335,236,'_pages_block_components_2_more_option_0_about_image','field_67d15b22994dd'),(1336,236,'pages_block_components_2_more_option_0_about_title','Boat Storage'),(1337,236,'_pages_block_components_2_more_option_0_about_title','field_67d15b42994de'),(1338,236,'pages_block_components_2_more_option_0_about_desc','Experience the serenity of our carefully picked venues, rejuvenating your spirit. '),(1339,236,'_pages_block_components_2_more_option_0_about_desc','field_67d15b51994df'),(1340,236,'pages_block_components_2_more_option_1_about_image','235'),(1341,236,'_pages_block_components_2_more_option_1_about_image','field_67d15b22994dd'),(1342,236,'pages_block_components_2_more_option_1_about_title','RV Storage'),(1343,236,'_pages_block_components_2_more_option_1_about_title','field_67d15b42994de'),(1344,236,'pages_block_components_2_more_option_1_about_desc','Located on US 78 in Summerville and only a mile from I-26 with easy access from Nexton and all of Summerville,'),(1345,236,'_pages_block_components_2_more_option_1_about_desc','field_67d15b51994df'),(1346,236,'pages_block_components_2_more_option_2_about_image','191'),(1347,236,'_pages_block_components_2_more_option_2_about_image','field_67d15b22994dd'),(1348,236,'pages_block_components_2_more_option_2_about_title','Trailer Storage'),(1349,236,'_pages_block_components_2_more_option_2_about_title','field_67d15b42994de'),(1350,236,'pages_block_components_2_more_option_2_about_desc','Located on US 78 in Summerville and only a mile from I-26 with easy access from Nexton and all of Summerville,'),(1351,236,'_pages_block_components_2_more_option_2_about_desc','field_67d15b51994df'),(1352,236,'pages_block_components_2_more_option','3'),(1353,236,'_pages_block_components_2_more_option','field_67d15b07994dc'),(1358,238,'footnotes',''),(1368,238,'pages_block_components_0_carousel_item_0_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(1369,238,'_pages_block_components_0_carousel_item_0_heading','field_67cee10a86380'),(1370,238,'pages_block_components_0_carousel_item_0_images','153'),(1371,238,'_pages_block_components_0_carousel_item_0_images','field_67cee12c86381'),(1372,238,'pages_block_components_0_carousel_item_0_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(1373,238,'_pages_block_components_0_carousel_item_0_desc','field_67cee13e86382'),(1374,238,'pages_block_components_0_carousel_item','3'),(1375,238,'_pages_block_components_0_carousel_item','field_67cee0c68637f'),(1376,238,'pages_block_components','a:4:{i:0;s:14:\"carousel_block\";i:1;s:14:\"review_section\";i:2;s:15:\"service_section\";i:3;s:16:\"customer_section\";}'),(1377,238,'_pages_block_components','field_67ceddb41e1f1'),(1378,238,'pages_block_components_0_carousel_item_1_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(1379,238,'_pages_block_components_0_carousel_item_1_heading','field_67cee10a86380'),(1380,238,'pages_block_components_0_carousel_item_1_images','157'),(1381,238,'_pages_block_components_0_carousel_item_1_images','field_67cee12c86381'),(1382,238,'pages_block_components_0_carousel_item_1_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(1383,238,'_pages_block_components_0_carousel_item_1_desc','field_67cee13e86382'),(1384,238,'pages_block_components_0_carousel_item_2_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(1385,238,'_pages_block_components_0_carousel_item_2_heading','field_67cee10a86380'),(1386,238,'pages_block_components_0_carousel_item_2_images','158'),(1387,238,'_pages_block_components_0_carousel_item_2_images','field_67cee12c86381'),(1388,238,'pages_block_components_0_carousel_item_2_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(1389,238,'_pages_block_components_0_carousel_item_2_desc','field_67cee13e86382'),(1390,238,'pages_block_components_1_main_heading','Don\'t Just Take Our Word for It!'),(1391,238,'_pages_block_components_1_main_heading','field_67cf0552bb668'),(1392,238,'pages_block_components_1_maindsc','Long Leaf Boat, RV and Trailer Storage'),(1393,238,'_pages_block_components_1_maindsc','field_67cf05a4bb669'),(1394,238,'pages_block_components_1_num_review','15 Reviews'),(1395,238,'_pages_block_components_1_num_review','field_67cf05dfbb66a'),(1396,238,'pages_block_components_1_reviews_0_image','174'),(1397,238,'_pages_block_components_1_reviews_0_image','field_67cf076cbb66c'),(1398,238,'pages_block_components_1_reviews_0_reviewer_name','Olgie'),(1399,238,'_pages_block_components_1_reviews_0_reviewer_name','field_67cf0784bb66d'),(1400,238,'pages_block_components_1_reviews_0_date','20250304'),(1401,238,'_pages_block_components_1_reviews_0_date','field_67cf079cbb66e'),(1402,238,'pages_block_components_1_reviews_1_image','175'),(1403,238,'_pages_block_components_1_reviews_1_image','field_67cf076cbb66c'),(1404,238,'pages_block_components_1_reviews_1_reviewer_name','Ryan Castle'),(1405,238,'_pages_block_components_1_reviews_1_reviewer_name','field_67cf0784bb66d'),(1406,238,'pages_block_components_1_reviews_1_date','20250213'),(1407,238,'_pages_block_components_1_reviews_1_date','field_67cf079cbb66e'),(1408,238,'pages_block_components_1_reviews_2_image','176'),(1409,238,'_pages_block_components_1_reviews_2_image','field_67cf076cbb66c'),(1410,238,'pages_block_components_1_reviews_2_reviewer_name','james messervy'),(1411,238,'_pages_block_components_1_reviews_2_reviewer_name','field_67cf0784bb66d'),(1412,238,'pages_block_components_1_reviews_2_date','20250130'),(1413,238,'_pages_block_components_1_reviews_2_date','field_67cf079cbb66e'),(1414,238,'pages_block_components_1_reviews','9'),(1415,238,'_pages_block_components_1_reviews','field_67cf0729bb66b'),(1416,238,'pages_block_components_1_reviews_0_desc','Thank you Jay for your help and for secure RV storage. It was g...'),(1417,238,'_pages_block_components_1_reviews_0_desc','field_67cf0ab4f9481'),(1418,238,'pages_block_components_1_reviews_0_review_link','https://www.google.com/maps?cid=13487484730203671818'),(1419,238,'_pages_block_components_1_reviews_0_review_link','field_67cf0ac7f9482'),(1420,238,'pages_block_components_1_reviews_1_desc','They do a great job of keeping it secure and making you feel sa...'),(1421,238,'_pages_block_components_1_reviews_1_desc','field_67cf0ab4f9481'),(1422,238,'pages_block_components_1_reviews_1_review_link','https://www.google.com/maps?cid=13487484730203671818'),(1423,238,'_pages_block_components_1_reviews_1_review_link','field_67cf0ac7f9482'),(1424,238,'pages_block_components_1_reviews_2_desc','Great experience. Great\r\nlocation.'),(1425,238,'_pages_block_components_1_reviews_2_desc','field_67cf0ab4f9481'),(1426,238,'pages_block_components_1_reviews_2_review_link',''),(1427,238,'_pages_block_components_1_reviews_2_review_link','field_67cf0ac7f9482'),(1428,238,'pages_block_components_1_reviews_3_image','188'),(1429,238,'_pages_block_components_1_reviews_3_image','field_67cf076cbb66c'),(1430,238,'pages_block_components_1_reviews_3_reviewer_name','Carey Johnson'),(1431,238,'_pages_block_components_1_reviews_3_reviewer_name','field_67cf0784bb66d'),(1432,238,'pages_block_components_1_reviews_3_date','20250125'),(1433,238,'_pages_block_components_1_reviews_3_date','field_67cf079cbb66e'),(1434,238,'pages_block_components_1_reviews_3_desc','Great location with easy\r\naccess.'),(1435,238,'_pages_block_components_1_reviews_3_desc','field_67cf0ab4f9481'),(1436,238,'pages_block_components_1_reviews_3_review_link',''),(1437,238,'_pages_block_components_1_reviews_3_review_link','field_67cf0ac7f9482'),(1438,238,'pages_block_components_1_reviews_4_image','187'),(1439,238,'_pages_block_components_1_reviews_4_image','field_67cf076cbb66c'),(1440,238,'pages_block_components_1_reviews_4_reviewer_name','Amber Byars'),(1441,238,'_pages_block_components_1_reviews_4_reviewer_name','field_67cf0784bb66d'),(1442,238,'pages_block_components_1_reviews_4_date','20241216'),(1443,238,'_pages_block_components_1_reviews_4_date','field_67cf079cbb66e'),(1444,238,'pages_block_components_1_reviews_4_desc','Convenient location and great communication.'),(1445,238,'_pages_block_components_1_reviews_4_desc','field_67cf0ab4f9481'),(1446,238,'pages_block_components_1_reviews_4_review_link',''),(1447,238,'_pages_block_components_1_reviews_4_review_link','field_67cf0ac7f9482'),(1448,238,'pages_block_components_1_reviews_5_image','186'),(1449,238,'_pages_block_components_1_reviews_5_image','field_67cf076cbb66c'),(1450,238,'pages_block_components_1_reviews_5_reviewer_name','Catherine McRae'),(1451,238,'_pages_block_components_1_reviews_5_reviewer_name','field_67cf0784bb66d'),(1452,238,'pages_block_components_1_reviews_5_date','20240722'),(1453,238,'_pages_block_components_1_reviews_5_date','field_67cf079cbb66e'),(1454,238,'pages_block_components_1_reviews_5_desc','Sales representative was very helpful. Rental process was ve...'),(1455,238,'_pages_block_components_1_reviews_5_desc','field_67cf0ab4f9481'),(1456,238,'pages_block_components_1_reviews_5_review_link','https://www.google.com/maps?cid=13487484730203671818'),(1457,238,'_pages_block_components_1_reviews_5_review_link','field_67cf0ac7f9482'),(1458,238,'pages_block_components_1_reviews_6_image','185'),(1459,238,'_pages_block_components_1_reviews_6_image','field_67cf076cbb66c'),(1460,238,'pages_block_components_1_reviews_6_reviewer_name','Josh Cecil'),(1461,238,'_pages_block_components_1_reviews_6_reviewer_name','field_67cf0784bb66d'),(1462,238,'pages_block_components_1_reviews_6_date','20240722'),(1463,238,'_pages_block_components_1_reviews_6_date','field_67cf079cbb66e'),(1464,238,'pages_block_components_1_reviews_6_desc','This customer did not write a review.'),(1465,238,'_pages_block_components_1_reviews_6_desc','field_67cf0ab4f9481'),(1466,238,'pages_block_components_1_reviews_6_review_link',''),(1467,238,'_pages_block_components_1_reviews_6_review_link','field_67cf0ac7f9482'),(1468,238,'pages_block_components_1_reviews_7_image','184'),(1469,238,'_pages_block_components_1_reviews_7_image','field_67cf076cbb66c'),(1470,238,'pages_block_components_1_reviews_7_reviewer_name','Keith Edwards'),(1471,238,'_pages_block_components_1_reviews_7_reviewer_name','field_67cf0784bb66d'),(1472,238,'pages_block_components_1_reviews_7_date','20240719'),(1473,238,'_pages_block_components_1_reviews_7_date','field_67cf079cbb66e'),(1474,238,'pages_block_components_1_reviews_7_desc','Overall a very good spot to store a vehicle, boat or RV if you live...'),(1475,238,'_pages_block_components_1_reviews_7_desc','field_67cf0ab4f9481'),(1476,238,'pages_block_components_1_reviews_7_review_link','https://www.google.com/maps?cid=13487484730203671818'),(1477,238,'_pages_block_components_1_reviews_7_review_link','field_67cf0ac7f9482'),(1478,238,'pages_block_components_1_reviews_8_image','183'),(1479,238,'_pages_block_components_1_reviews_8_image','field_67cf076cbb66c'),(1480,238,'pages_block_components_1_reviews_8_reviewer_name','Kalleigh Cook'),(1481,238,'_pages_block_components_1_reviews_8_reviewer_name','field_67cf0784bb66d'),(1482,238,'pages_block_components_1_reviews_8_date','20240719'),(1483,238,'_pages_block_components_1_reviews_8_date','field_67cf079cbb66e'),(1484,238,'pages_block_components_1_reviews_8_desc','Great place for boat storage. Very responsive office staff.'),(1485,238,'_pages_block_components_1_reviews_8_desc','field_67cf0ab4f9481'),(1486,238,'pages_block_components_1_reviews_8_review_link',''),(1487,238,'_pages_block_components_1_reviews_8_review_link','field_67cf0ac7f9482'),(1488,238,'pages_block_components_1_background_image','191'),(1489,238,'_pages_block_components_1_background_image','field_67cf0ed7f052f'),(1490,238,'pages_block_components_2_main_heading','Boat, RV, Vehicle, and Self Storage Options Available!'),(1491,238,'_pages_block_components_2_main_heading','field_67d15adf994da'),(1492,238,'pages_block_components_2_desc','Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam deserunt voluptatibus, tempore fugiat quibusdam, dolore dolores in nisi quidem ipsam nam laborum alias beatae! Unde repudiandae doloremque incidunt in atque! '),(1493,238,'_pages_block_components_2_desc','field_67d15aee994db'),(1494,238,'pages_block_components_2_more_option_0_about_image','158'),(1495,238,'_pages_block_components_2_more_option_0_about_image','field_67d15b22994dd'),(1496,238,'pages_block_components_2_more_option_0_about_title','Boat Storage'),(1497,238,'_pages_block_components_2_more_option_0_about_title','field_67d15b42994de'),(1498,238,'pages_block_components_2_more_option_0_about_desc','Experience the serenity of our carefully picked venues, rejuvenating your spirit. '),(1499,238,'_pages_block_components_2_more_option_0_about_desc','field_67d15b51994df'),(1500,238,'pages_block_components_2_more_option_1_about_image','235'),(1501,238,'_pages_block_components_2_more_option_1_about_image','field_67d15b22994dd'),(1502,238,'pages_block_components_2_more_option_1_about_title','RV Storage'),(1503,238,'_pages_block_components_2_more_option_1_about_title','field_67d15b42994de'),(1504,238,'pages_block_components_2_more_option_1_about_desc','Located on US 78 in Summerville and only a mile from I-26 with easy access from Nexton and all of Summerville,'),(1505,238,'_pages_block_components_2_more_option_1_about_desc','field_67d15b51994df'),(1506,238,'pages_block_components_2_more_option_2_about_image','191'),(1507,238,'_pages_block_components_2_more_option_2_about_image','field_67d15b22994dd'),(1508,238,'pages_block_components_2_more_option_2_about_title','Trailer Storage'),(1509,238,'_pages_block_components_2_more_option_2_about_title','field_67d15b42994de'),(1510,238,'pages_block_components_2_more_option_2_about_desc','Located on US 78 in Summerville and only a mile from I-26 with easy access from Nexton and all of Summerville,'),(1511,238,'_pages_block_components_2_more_option_2_about_desc','field_67d15b51994df'),(1512,238,'pages_block_components_2_more_option','3'),(1513,238,'_pages_block_components_2_more_option','field_67d15b07994dc'),(1514,238,'pages_block_components_3_main_heading','Our Commitment to Customers'),(1515,238,'_pages_block_components_3_main_heading','field_67d15b85d91ff'),(1516,238,'pages_block_components_3_heading','Easy Access & Secure Vehicle Storage'),(1517,238,'_pages_block_components_3_heading','field_67d15b98d9200'),(1518,238,'pages_block_components_3_desc','Located on US 78 in Summerville and only a mile from I-26 with easy access from Nexton and all of Summerville, the team at Long Leaf Storage is committed to providing the storage you need at a fair price. '),(1519,238,'_pages_block_components_3_desc','field_67d15ba9d9201'),(1520,238,'pages_block_components_3_image','234'),(1521,238,'_pages_block_components_3_image','field_67d15bb9d9202'),(1524,239,'footnotes',''),(1526,239,'pages_block_components_0_carousel_item_0_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(1527,239,'_pages_block_components_0_carousel_item_0_heading','field_67cee10a86380'),(1528,239,'pages_block_components_0_carousel_item_0_images','153'),(1529,239,'_pages_block_components_0_carousel_item_0_images','field_67cee12c86381'),(1530,239,'pages_block_components_0_carousel_item_0_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(1531,239,'_pages_block_components_0_carousel_item_0_desc','field_67cee13e86382'),(1532,239,'pages_block_components_0_carousel_item','3'),(1533,239,'_pages_block_components_0_carousel_item','field_67cee0c68637f'),(1534,239,'pages_block_components','a:4:{i:0;s:14:\"carousel_block\";i:1;s:14:\"review_section\";i:2;s:15:\"service_section\";i:3;s:16:\"customer_section\";}'),(1535,239,'_pages_block_components','field_67ceddb41e1f1'),(1536,239,'pages_block_components_0_carousel_item_1_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(1537,239,'_pages_block_components_0_carousel_item_1_heading','field_67cee10a86380'),(1538,239,'pages_block_components_0_carousel_item_1_images','157'),(1539,239,'_pages_block_components_0_carousel_item_1_images','field_67cee12c86381'),(1540,239,'pages_block_components_0_carousel_item_1_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(1541,239,'_pages_block_components_0_carousel_item_1_desc','field_67cee13e86382'),(1542,239,'pages_block_components_0_carousel_item_2_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(1543,239,'_pages_block_components_0_carousel_item_2_heading','field_67cee10a86380'),(1544,239,'pages_block_components_0_carousel_item_2_images','158'),(1545,239,'_pages_block_components_0_carousel_item_2_images','field_67cee12c86381'),(1546,239,'pages_block_components_0_carousel_item_2_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(1547,239,'_pages_block_components_0_carousel_item_2_desc','field_67cee13e86382'),(1548,239,'pages_block_components_1_main_heading','Don\'t Just Take Our Word for It!'),(1549,239,'_pages_block_components_1_main_heading','field_67cf0552bb668'),(1550,239,'pages_block_components_1_maindsc','Long Leaf Boat, RV and Trailer Storage'),(1551,239,'_pages_block_components_1_maindsc','field_67cf05a4bb669'),(1552,239,'pages_block_components_1_num_review','15 Reviews'),(1553,239,'_pages_block_components_1_num_review','field_67cf05dfbb66a'),(1554,239,'pages_block_components_1_reviews_0_image','174'),(1555,239,'_pages_block_components_1_reviews_0_image','field_67cf076cbb66c'),(1556,239,'pages_block_components_1_reviews_0_reviewer_name','Olgie'),(1557,239,'_pages_block_components_1_reviews_0_reviewer_name','field_67cf0784bb66d'),(1558,239,'pages_block_components_1_reviews_0_date','20250304'),(1559,239,'_pages_block_components_1_reviews_0_date','field_67cf079cbb66e'),(1560,239,'pages_block_components_1_reviews_1_image','175'),(1561,239,'_pages_block_components_1_reviews_1_image','field_67cf076cbb66c'),(1562,239,'pages_block_components_1_reviews_1_reviewer_name','Ryan Castle'),(1563,239,'_pages_block_components_1_reviews_1_reviewer_name','field_67cf0784bb66d'),(1564,239,'pages_block_components_1_reviews_1_date','20250213'),(1565,239,'_pages_block_components_1_reviews_1_date','field_67cf079cbb66e'),(1566,239,'pages_block_components_1_reviews_2_image','176'),(1567,239,'_pages_block_components_1_reviews_2_image','field_67cf076cbb66c'),(1568,239,'pages_block_components_1_reviews_2_reviewer_name','james messervy'),(1569,239,'_pages_block_components_1_reviews_2_reviewer_name','field_67cf0784bb66d'),(1570,239,'pages_block_components_1_reviews_2_date','20250130'),(1571,239,'_pages_block_components_1_reviews_2_date','field_67cf079cbb66e'),(1572,239,'pages_block_components_1_reviews','9'),(1573,239,'_pages_block_components_1_reviews','field_67cf0729bb66b'),(1574,239,'pages_block_components_1_reviews_0_desc','Thank you Jay for your help and for secure RV storage. It was g...'),(1575,239,'_pages_block_components_1_reviews_0_desc','field_67cf0ab4f9481'),(1576,239,'pages_block_components_1_reviews_0_review_link','https://www.google.com/maps?cid=13487484730203671818'),(1577,239,'_pages_block_components_1_reviews_0_review_link','field_67cf0ac7f9482'),(1578,239,'pages_block_components_1_reviews_1_desc','They do a great job of keeping it secure and making you feel sa...'),(1579,239,'_pages_block_components_1_reviews_1_desc','field_67cf0ab4f9481'),(1580,239,'pages_block_components_1_reviews_1_review_link','https://www.google.com/maps?cid=13487484730203671818'),(1581,239,'_pages_block_components_1_reviews_1_review_link','field_67cf0ac7f9482'),(1582,239,'pages_block_components_1_reviews_2_desc','Great experience. Great\r\nlocation.'),(1583,239,'_pages_block_components_1_reviews_2_desc','field_67cf0ab4f9481'),(1584,239,'pages_block_components_1_reviews_2_review_link',''),(1585,239,'_pages_block_components_1_reviews_2_review_link','field_67cf0ac7f9482'),(1586,239,'pages_block_components_1_reviews_3_image','188'),(1587,239,'_pages_block_components_1_reviews_3_image','field_67cf076cbb66c'),(1588,239,'pages_block_components_1_reviews_3_reviewer_name','Carey Johnson'),(1589,239,'_pages_block_components_1_reviews_3_reviewer_name','field_67cf0784bb66d'),(1590,239,'pages_block_components_1_reviews_3_date','20250125'),(1591,239,'_pages_block_components_1_reviews_3_date','field_67cf079cbb66e'),(1592,239,'pages_block_components_1_reviews_3_desc','Great location with easy\r\naccess.'),(1593,239,'_pages_block_components_1_reviews_3_desc','field_67cf0ab4f9481'),(1594,239,'pages_block_components_1_reviews_3_review_link',''),(1595,239,'_pages_block_components_1_reviews_3_review_link','field_67cf0ac7f9482'),(1596,239,'pages_block_components_1_reviews_4_image','187'),(1597,239,'_pages_block_components_1_reviews_4_image','field_67cf076cbb66c'),(1598,239,'pages_block_components_1_reviews_4_reviewer_name','Amber Byars'),(1599,239,'_pages_block_components_1_reviews_4_reviewer_name','field_67cf0784bb66d'),(1600,239,'pages_block_components_1_reviews_4_date','20241216'),(1601,239,'_pages_block_components_1_reviews_4_date','field_67cf079cbb66e'),(1602,239,'pages_block_components_1_reviews_4_desc','Convenient location and great communication.'),(1603,239,'_pages_block_components_1_reviews_4_desc','field_67cf0ab4f9481'),(1604,239,'pages_block_components_1_reviews_4_review_link',''),(1605,239,'_pages_block_components_1_reviews_4_review_link','field_67cf0ac7f9482'),(1606,239,'pages_block_components_1_reviews_5_image','186'),(1607,239,'_pages_block_components_1_reviews_5_image','field_67cf076cbb66c'),(1608,239,'pages_block_components_1_reviews_5_reviewer_name','Catherine McRae'),(1609,239,'_pages_block_components_1_reviews_5_reviewer_name','field_67cf0784bb66d'),(1610,239,'pages_block_components_1_reviews_5_date','20240722'),(1611,239,'_pages_block_components_1_reviews_5_date','field_67cf079cbb66e'),(1612,239,'pages_block_components_1_reviews_5_desc','Sales representative was very helpful. Rental process was ve...'),(1613,239,'_pages_block_components_1_reviews_5_desc','field_67cf0ab4f9481'),(1614,239,'pages_block_components_1_reviews_5_review_link','https://www.google.com/maps?cid=13487484730203671818'),(1615,239,'_pages_block_components_1_reviews_5_review_link','field_67cf0ac7f9482'),(1616,239,'pages_block_components_1_reviews_6_image','185'),(1617,239,'_pages_block_components_1_reviews_6_image','field_67cf076cbb66c'),(1618,239,'pages_block_components_1_reviews_6_reviewer_name','Josh Cecil'),(1619,239,'_pages_block_components_1_reviews_6_reviewer_name','field_67cf0784bb66d'),(1620,239,'pages_block_components_1_reviews_6_date','20240722'),(1621,239,'_pages_block_components_1_reviews_6_date','field_67cf079cbb66e'),(1622,239,'pages_block_components_1_reviews_6_desc','This customer did not write a review.'),(1623,239,'_pages_block_components_1_reviews_6_desc','field_67cf0ab4f9481'),(1624,239,'pages_block_components_1_reviews_6_review_link',''),(1625,239,'_pages_block_components_1_reviews_6_review_link','field_67cf0ac7f9482'),(1626,239,'pages_block_components_1_reviews_7_image','184'),(1627,239,'_pages_block_components_1_reviews_7_image','field_67cf076cbb66c'),(1628,239,'pages_block_components_1_reviews_7_reviewer_name','Keith Edwards'),(1629,239,'_pages_block_components_1_reviews_7_reviewer_name','field_67cf0784bb66d'),(1630,239,'pages_block_components_1_reviews_7_date','20240719'),(1631,239,'_pages_block_components_1_reviews_7_date','field_67cf079cbb66e'),(1632,239,'pages_block_components_1_reviews_7_desc','Overall a very good spot to store a vehicle, boat or RV if you live...'),(1633,239,'_pages_block_components_1_reviews_7_desc','field_67cf0ab4f9481'),(1634,239,'pages_block_components_1_reviews_7_review_link','https://www.google.com/maps?cid=13487484730203671818'),(1635,239,'_pages_block_components_1_reviews_7_review_link','field_67cf0ac7f9482'),(1636,239,'pages_block_components_1_reviews_8_image','183'),(1637,239,'_pages_block_components_1_reviews_8_image','field_67cf076cbb66c'),(1638,239,'pages_block_components_1_reviews_8_reviewer_name','Kalleigh Cook'),(1639,239,'_pages_block_components_1_reviews_8_reviewer_name','field_67cf0784bb66d'),(1640,239,'pages_block_components_1_reviews_8_date','20240719'),(1641,239,'_pages_block_components_1_reviews_8_date','field_67cf079cbb66e'),(1642,239,'pages_block_components_1_reviews_8_desc','Great place for boat storage. Very responsive office staff.'),(1643,239,'_pages_block_components_1_reviews_8_desc','field_67cf0ab4f9481'),(1644,239,'pages_block_components_1_reviews_8_review_link',''),(1645,239,'_pages_block_components_1_reviews_8_review_link','field_67cf0ac7f9482'),(1646,239,'pages_block_components_1_background_image','191'),(1647,239,'_pages_block_components_1_background_image','field_67cf0ed7f052f'),(1648,239,'pages_block_components_2_main_heading','Boat, RV, Vehicle, and Self Storage Options Available!'),(1649,239,'_pages_block_components_2_main_heading','field_67d15adf994da'),(1650,239,'pages_block_components_2_desc','Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam deserunt voluptatibus, tempore fugiat quibusdam, dolore dolores in nisi quidem ipsam nam laborum alias beatae! Unde repudiandae doloremque incidunt in atque! '),(1651,239,'_pages_block_components_2_desc','field_67d15aee994db'),(1652,239,'pages_block_components_2_more_option_0_about_image','158'),(1653,239,'_pages_block_components_2_more_option_0_about_image','field_67d15b22994dd'),(1654,239,'pages_block_components_2_more_option_0_about_title','Boat Storage'),(1655,239,'_pages_block_components_2_more_option_0_about_title','field_67d15b42994de'),(1656,239,'pages_block_components_2_more_option_0_about_desc','Experience the serenity of our carefully picked venues, rejuvenating your spirit. '),(1657,239,'_pages_block_components_2_more_option_0_about_desc','field_67d15b51994df'),(1658,239,'pages_block_components_2_more_option_1_about_image','157'),(1659,239,'_pages_block_components_2_more_option_1_about_image','field_67d15b22994dd'),(1660,239,'pages_block_components_2_more_option_1_about_title','RV Storage'),(1661,239,'_pages_block_components_2_more_option_1_about_title','field_67d15b42994de'),(1662,239,'pages_block_components_2_more_option_1_about_desc','Located on US 78 in Summerville and only a mile from I-26 with easy access from Nexton and all of Summerville,'),(1663,239,'_pages_block_components_2_more_option_1_about_desc','field_67d15b51994df'),(1664,239,'pages_block_components_2_more_option_2_about_image','153'),(1665,239,'_pages_block_components_2_more_option_2_about_image','field_67d15b22994dd'),(1666,239,'pages_block_components_2_more_option_2_about_title','Trailer Storage'),(1667,239,'_pages_block_components_2_more_option_2_about_title','field_67d15b42994de'),(1668,239,'pages_block_components_2_more_option_2_about_desc','Located on US 78 in Summerville and only a mile from I-26 with easy access from Nexton and all of Summerville,'),(1669,239,'_pages_block_components_2_more_option_2_about_desc','field_67d15b51994df'),(1670,239,'pages_block_components_2_more_option','3'),(1671,239,'_pages_block_components_2_more_option','field_67d15b07994dc'),(1672,239,'pages_block_components_3_main_heading','Our Commitment to Customers'),(1673,239,'_pages_block_components_3_main_heading','field_67d15b85d91ff'),(1674,239,'pages_block_components_3_heading','Easy Access & Secure Vehicle Storage'),(1675,239,'_pages_block_components_3_heading','field_67d15b98d9200'),(1676,239,'pages_block_components_3_desc','Located on US 78 in Summerville and only a mile from I-26 with easy access from Nexton and all of Summerville, the team at Long Leaf Storage is committed to providing the storage you need at a fair price. '),(1677,239,'_pages_block_components_3_desc','field_67d15ba9d9201'),(1678,239,'pages_block_components_3_image','234'),(1679,239,'_pages_block_components_3_image','field_67d15bb9d9202'),(1682,240,'footnotes',''),(1684,240,'pages_block_components_0_carousel_item_0_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(1685,240,'_pages_block_components_0_carousel_item_0_heading','field_67cee10a86380'),(1686,240,'pages_block_components_0_carousel_item_0_images','153'),(1687,240,'_pages_block_components_0_carousel_item_0_images','field_67cee12c86381'),(1688,240,'pages_block_components_0_carousel_item_0_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(1689,240,'_pages_block_components_0_carousel_item_0_desc','field_67cee13e86382'),(1690,240,'pages_block_components_0_carousel_item','3'),(1691,240,'_pages_block_components_0_carousel_item','field_67cee0c68637f'),(1692,240,'pages_block_components','a:4:{i:0;s:14:\"carousel_block\";i:1;s:14:\"review_section\";i:2;s:15:\"service_section\";i:3;s:16:\"customer_section\";}'),(1693,240,'_pages_block_components','field_67ceddb41e1f1'),(1694,240,'pages_block_components_0_carousel_item_1_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(1695,240,'_pages_block_components_0_carousel_item_1_heading','field_67cee10a86380'),(1696,240,'pages_block_components_0_carousel_item_1_images','157'),(1697,240,'_pages_block_components_0_carousel_item_1_images','field_67cee12c86381'),(1698,240,'pages_block_components_0_carousel_item_1_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(1699,240,'_pages_block_components_0_carousel_item_1_desc','field_67cee13e86382'),(1700,240,'pages_block_components_0_carousel_item_2_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(1701,240,'_pages_block_components_0_carousel_item_2_heading','field_67cee10a86380'),(1702,240,'pages_block_components_0_carousel_item_2_images','158'),(1703,240,'_pages_block_components_0_carousel_item_2_images','field_67cee12c86381'),(1704,240,'pages_block_components_0_carousel_item_2_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(1705,240,'_pages_block_components_0_carousel_item_2_desc','field_67cee13e86382'),(1706,240,'pages_block_components_1_main_heading','Don\'t Just Take Our Word for It!'),(1707,240,'_pages_block_components_1_main_heading','field_67cf0552bb668'),(1708,240,'pages_block_components_1_maindsc','Long Leaf Boat, RV and Trailer Storage'),(1709,240,'_pages_block_components_1_maindsc','field_67cf05a4bb669'),(1710,240,'pages_block_components_1_num_review','15 Reviews'),(1711,240,'_pages_block_components_1_num_review','field_67cf05dfbb66a'),(1712,240,'pages_block_components_1_reviews_0_image','174'),(1713,240,'_pages_block_components_1_reviews_0_image','field_67cf076cbb66c'),(1714,240,'pages_block_components_1_reviews_0_reviewer_name','Olgie'),(1715,240,'_pages_block_components_1_reviews_0_reviewer_name','field_67cf0784bb66d'),(1716,240,'pages_block_components_1_reviews_0_date','20250304'),(1717,240,'_pages_block_components_1_reviews_0_date','field_67cf079cbb66e'),(1718,240,'pages_block_components_1_reviews_1_image','175'),(1719,240,'_pages_block_components_1_reviews_1_image','field_67cf076cbb66c'),(1720,240,'pages_block_components_1_reviews_1_reviewer_name','Ryan Castle'),(1721,240,'_pages_block_components_1_reviews_1_reviewer_name','field_67cf0784bb66d'),(1722,240,'pages_block_components_1_reviews_1_date','20250213'),(1723,240,'_pages_block_components_1_reviews_1_date','field_67cf079cbb66e'),(1724,240,'pages_block_components_1_reviews_2_image','176'),(1725,240,'_pages_block_components_1_reviews_2_image','field_67cf076cbb66c'),(1726,240,'pages_block_components_1_reviews_2_reviewer_name','james messervy'),(1727,240,'_pages_block_components_1_reviews_2_reviewer_name','field_67cf0784bb66d'),(1728,240,'pages_block_components_1_reviews_2_date','20250130'),(1729,240,'_pages_block_components_1_reviews_2_date','field_67cf079cbb66e'),(1730,240,'pages_block_components_1_reviews','9'),(1731,240,'_pages_block_components_1_reviews','field_67cf0729bb66b'),(1732,240,'pages_block_components_1_reviews_0_desc','Thank you Jay for your help and for secure RV storage. It was g...'),(1733,240,'_pages_block_components_1_reviews_0_desc','field_67cf0ab4f9481'),(1734,240,'pages_block_components_1_reviews_0_review_link','https://www.google.com/maps?cid=13487484730203671818'),(1735,240,'_pages_block_components_1_reviews_0_review_link','field_67cf0ac7f9482'),(1736,240,'pages_block_components_1_reviews_1_desc','They do a great job of keeping it secure and making you feel sa...'),(1737,240,'_pages_block_components_1_reviews_1_desc','field_67cf0ab4f9481'),(1738,240,'pages_block_components_1_reviews_1_review_link','https://www.google.com/maps?cid=13487484730203671818'),(1739,240,'_pages_block_components_1_reviews_1_review_link','field_67cf0ac7f9482'),(1740,240,'pages_block_components_1_reviews_2_desc','Great experience. Great\r\nlocation.'),(1741,240,'_pages_block_components_1_reviews_2_desc','field_67cf0ab4f9481'),(1742,240,'pages_block_components_1_reviews_2_review_link',''),(1743,240,'_pages_block_components_1_reviews_2_review_link','field_67cf0ac7f9482'),(1744,240,'pages_block_components_1_reviews_3_image','188'),(1745,240,'_pages_block_components_1_reviews_3_image','field_67cf076cbb66c'),(1746,240,'pages_block_components_1_reviews_3_reviewer_name','Carey Johnson'),(1747,240,'_pages_block_components_1_reviews_3_reviewer_name','field_67cf0784bb66d'),(1748,240,'pages_block_components_1_reviews_3_date','20250125'),(1749,240,'_pages_block_components_1_reviews_3_date','field_67cf079cbb66e'),(1750,240,'pages_block_components_1_reviews_3_desc','Great location with easy\r\naccess.'),(1751,240,'_pages_block_components_1_reviews_3_desc','field_67cf0ab4f9481'),(1752,240,'pages_block_components_1_reviews_3_review_link',''),(1753,240,'_pages_block_components_1_reviews_3_review_link','field_67cf0ac7f9482'),(1754,240,'pages_block_components_1_reviews_4_image','187'),(1755,240,'_pages_block_components_1_reviews_4_image','field_67cf076cbb66c'),(1756,240,'pages_block_components_1_reviews_4_reviewer_name','Amber Byars'),(1757,240,'_pages_block_components_1_reviews_4_reviewer_name','field_67cf0784bb66d'),(1758,240,'pages_block_components_1_reviews_4_date','20241216'),(1759,240,'_pages_block_components_1_reviews_4_date','field_67cf079cbb66e'),(1760,240,'pages_block_components_1_reviews_4_desc','Convenient location and great communication.'),(1761,240,'_pages_block_components_1_reviews_4_desc','field_67cf0ab4f9481'),(1762,240,'pages_block_components_1_reviews_4_review_link',''),(1763,240,'_pages_block_components_1_reviews_4_review_link','field_67cf0ac7f9482'),(1764,240,'pages_block_components_1_reviews_5_image','186'),(1765,240,'_pages_block_components_1_reviews_5_image','field_67cf076cbb66c'),(1766,240,'pages_block_components_1_reviews_5_reviewer_name','Catherine McRae'),(1767,240,'_pages_block_components_1_reviews_5_reviewer_name','field_67cf0784bb66d'),(1768,240,'pages_block_components_1_reviews_5_date','20240722'),(1769,240,'_pages_block_components_1_reviews_5_date','field_67cf079cbb66e'),(1770,240,'pages_block_components_1_reviews_5_desc','Sales representative was very helpful. Rental process was ve...'),(1771,240,'_pages_block_components_1_reviews_5_desc','field_67cf0ab4f9481'),(1772,240,'pages_block_components_1_reviews_5_review_link','https://www.google.com/maps?cid=13487484730203671818'),(1773,240,'_pages_block_components_1_reviews_5_review_link','field_67cf0ac7f9482'),(1774,240,'pages_block_components_1_reviews_6_image','185'),(1775,240,'_pages_block_components_1_reviews_6_image','field_67cf076cbb66c'),(1776,240,'pages_block_components_1_reviews_6_reviewer_name','Josh Cecil'),(1777,240,'_pages_block_components_1_reviews_6_reviewer_name','field_67cf0784bb66d'),(1778,240,'pages_block_components_1_reviews_6_date','20240722'),(1779,240,'_pages_block_components_1_reviews_6_date','field_67cf079cbb66e'),(1780,240,'pages_block_components_1_reviews_6_desc','This customer did not write a review.'),(1781,240,'_pages_block_components_1_reviews_6_desc','field_67cf0ab4f9481'),(1782,240,'pages_block_components_1_reviews_6_review_link',''),(1783,240,'_pages_block_components_1_reviews_6_review_link','field_67cf0ac7f9482'),(1784,240,'pages_block_components_1_reviews_7_image','184'),(1785,240,'_pages_block_components_1_reviews_7_image','field_67cf076cbb66c'),(1786,240,'pages_block_components_1_reviews_7_reviewer_name','Keith Edwards'),(1787,240,'_pages_block_components_1_reviews_7_reviewer_name','field_67cf0784bb66d'),(1788,240,'pages_block_components_1_reviews_7_date','20240719'),(1789,240,'_pages_block_components_1_reviews_7_date','field_67cf079cbb66e'),(1790,240,'pages_block_components_1_reviews_7_desc','Overall a very good spot to store a vehicle, boat or RV if you live...'),(1791,240,'_pages_block_components_1_reviews_7_desc','field_67cf0ab4f9481'),(1792,240,'pages_block_components_1_reviews_7_review_link','https://www.google.com/maps?cid=13487484730203671818'),(1793,240,'_pages_block_components_1_reviews_7_review_link','field_67cf0ac7f9482'),(1794,240,'pages_block_components_1_reviews_8_image','183'),(1795,240,'_pages_block_components_1_reviews_8_image','field_67cf076cbb66c'),(1796,240,'pages_block_components_1_reviews_8_reviewer_name','Kalleigh Cook'),(1797,240,'_pages_block_components_1_reviews_8_reviewer_name','field_67cf0784bb66d'),(1798,240,'pages_block_components_1_reviews_8_date','20240719'),(1799,240,'_pages_block_components_1_reviews_8_date','field_67cf079cbb66e'),(1800,240,'pages_block_components_1_reviews_8_desc','Great place for boat storage. Very responsive office staff.'),(1801,240,'_pages_block_components_1_reviews_8_desc','field_67cf0ab4f9481'),(1802,240,'pages_block_components_1_reviews_8_review_link',''),(1803,240,'_pages_block_components_1_reviews_8_review_link','field_67cf0ac7f9482'),(1804,240,'pages_block_components_1_background_image','191'),(1805,240,'_pages_block_components_1_background_image','field_67cf0ed7f052f'),(1806,240,'pages_block_components_2_main_heading','Boat, RV, Vehicle, and Self Storage Options Available!'),(1807,240,'_pages_block_components_2_main_heading','field_67d15adf994da'),(1808,240,'pages_block_components_2_desc','Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam deserunt voluptatibus, tempore fugiat quibusdam, dolore dolores in nisi quidem ipsam nam laborum alias beatae! Unde repudiandae doloremque incidunt in atque! '),(1809,240,'_pages_block_components_2_desc','field_67d15aee994db'),(1810,240,'pages_block_components_2_more_option_0_about_image','235'),(1811,240,'_pages_block_components_2_more_option_0_about_image','field_67d15b22994dd'),(1812,240,'pages_block_components_2_more_option_0_about_title','Boat Storage'),(1813,240,'_pages_block_components_2_more_option_0_about_title','field_67d15b42994de'),(1814,240,'pages_block_components_2_more_option_0_about_desc','Experience the serenity of our carefully picked venues, rejuvenating your spirit. '),(1815,240,'_pages_block_components_2_more_option_0_about_desc','field_67d15b51994df'),(1816,240,'pages_block_components_2_more_option_1_about_image','157'),(1817,240,'_pages_block_components_2_more_option_1_about_image','field_67d15b22994dd'),(1818,240,'pages_block_components_2_more_option_1_about_title','RV Storage'),(1819,240,'_pages_block_components_2_more_option_1_about_title','field_67d15b42994de'),(1820,240,'pages_block_components_2_more_option_1_about_desc','Located on US 78 in Summerville and only a mile from I-26 with easy access from Nexton and all of Summerville,'),(1821,240,'_pages_block_components_2_more_option_1_about_desc','field_67d15b51994df'),(1822,240,'pages_block_components_2_more_option_2_about_image','153'),(1823,240,'_pages_block_components_2_more_option_2_about_image','field_67d15b22994dd'),(1824,240,'pages_block_components_2_more_option_2_about_title','Trailer Storage'),(1825,240,'_pages_block_components_2_more_option_2_about_title','field_67d15b42994de'),(1826,240,'pages_block_components_2_more_option_2_about_desc','Located on US 78 in Summerville and only a mile from I-26 with easy access from Nexton and all of Summerville,'),(1827,240,'_pages_block_components_2_more_option_2_about_desc','field_67d15b51994df'),(1828,240,'pages_block_components_2_more_option','3'),(1829,240,'_pages_block_components_2_more_option','field_67d15b07994dc'),(1830,240,'pages_block_components_3_main_heading','Our Commitment to Customers'),(1831,240,'_pages_block_components_3_main_heading','field_67d15b85d91ff'),(1832,240,'pages_block_components_3_heading','Easy Access & Secure Vehicle Storage'),(1833,240,'_pages_block_components_3_heading','field_67d15b98d9200'),(1834,240,'pages_block_components_3_desc','Located on US 78 in Summerville and only a mile from I-26 with easy access from Nexton and all of Summerville, the team at Long Leaf Storage is committed to providing the storage you need at a fair price. '),(1835,240,'_pages_block_components_3_desc','field_67d15ba9d9201'),(1836,240,'pages_block_components_3_image','234'),(1837,240,'_pages_block_components_3_image','field_67d15bb9d9202'),(1842,242,'footnotes',''),(1844,85,'pages_block_components_1_main_heading','Boat, RV, Vehicle, and Self Storage'),(1845,85,'_pages_block_components_1_main_heading','field_67d15adf994da'),(1846,85,'pages_block_components_1_desc','Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam deserunt voluptatibus, tempore fugiat quibusdam, dolore dolores in nisi quidem ipsam nam laborum alias beatae! Unde repudiandae doloremque incidunt in atque! '),(1847,85,'_pages_block_components_1_desc','field_67d15aee994db'),(1848,85,'pages_block_components_1_more_option_0_about_image','235'),(1849,85,'_pages_block_components_1_more_option_0_about_image','field_67d15b22994dd'),(1850,85,'pages_block_components_1_more_option_0_about_title','Boat Storage'),(1851,85,'_pages_block_components_1_more_option_0_about_title','field_67d15b42994de'),(1852,85,'pages_block_components_1_more_option_0_about_desc','Experience the serenity of our carefully picked venues, rejuvenating your spirit. '),(1853,85,'_pages_block_components_1_more_option_0_about_desc','field_67d15b51994df'),(1854,85,'pages_block_components_1_more_option_1_about_image','157'),(1855,85,'_pages_block_components_1_more_option_1_about_image','field_67d15b22994dd'),(1856,85,'pages_block_components_1_more_option_1_about_title','RV Storage'),(1857,85,'_pages_block_components_1_more_option_1_about_title','field_67d15b42994de'),(1858,85,'pages_block_components_1_more_option_1_about_desc','Located on US 78 in Summerville and only a mile from I-26 with easy access from Nexton and all of Summerville,'),(1859,85,'_pages_block_components_1_more_option_1_about_desc','field_67d15b51994df'),(1860,85,'pages_block_components_1_more_option_2_about_image','153'),(1861,85,'_pages_block_components_1_more_option_2_about_image','field_67d15b22994dd'),(1862,85,'pages_block_components_1_more_option_2_about_title','Trailer Storage'),(1863,85,'_pages_block_components_1_more_option_2_about_title','field_67d15b42994de'),(1864,85,'pages_block_components_1_more_option_2_about_desc','Located on US 78 in Summerville and only a mile from I-26 with easy access from Nexton and all of Summerville,'),(1865,85,'_pages_block_components_1_more_option_2_about_desc','field_67d15b51994df'),(1866,85,'pages_block_components_1_more_option','3'),(1867,85,'_pages_block_components_1_more_option','field_67d15b07994dc'),(1868,85,'pages_block_components_2_main_heading','Our Commitment to Customers'),(1869,85,'_pages_block_components_2_main_heading','field_67d15b85d91ff'),(1870,85,'pages_block_components_2_heading','Easy Access & Secure Vehicle Storage'),(1871,85,'_pages_block_components_2_heading','field_67d15b98d9200'),(1872,85,'pages_block_components_2_desc','Located on US 78 in Summerville and only a mile from I-26 with easy access from Nexton and all of Summerville, the team at Long Leaf Storage is committed to providing the storage you need at a fair price. '),(1873,85,'_pages_block_components_2_desc','field_67d15ba9d9201'),(1874,85,'pages_block_components_2_image','234'),(1875,85,'_pages_block_components_2_image','field_67d15bb9d9202'),(1876,85,'pages_block_components_3_main_heading','Don\'t Just Take Our Word for It!'),(1877,85,'_pages_block_components_3_main_heading','field_67cf0552bb668'),(1878,85,'pages_block_components_3_maindsc','Long Leaf Boat, RV and Trailer Storage'),(1879,85,'_pages_block_components_3_maindsc','field_67cf05a4bb669'),(1880,85,'pages_block_components_3_num_review','15 Reviews'),(1881,85,'_pages_block_components_3_num_review','field_67cf05dfbb66a'),(1882,85,'pages_block_components_3_reviews_0_image','174'),(1883,85,'_pages_block_components_3_reviews_0_image','field_67cf076cbb66c'),(1884,85,'pages_block_components_3_reviews_0_reviewer_name','Olgie'),(1885,85,'_pages_block_components_3_reviews_0_reviewer_name','field_67cf0784bb66d'),(1886,85,'pages_block_components_3_reviews_0_date','20250304'),(1887,85,'_pages_block_components_3_reviews_0_date','field_67cf079cbb66e'),(1888,85,'pages_block_components_3_reviews_0_desc','Thank you Jay for your help and for secure RV storage. It was g...'),(1889,85,'_pages_block_components_3_reviews_0_desc','field_67cf0ab4f9481'),(1890,85,'pages_block_components_3_reviews_0_review_link','https://www.google.com/maps?cid=13487484730203671818'),(1891,85,'_pages_block_components_3_reviews_0_review_link','field_67cf0ac7f9482'),(1892,85,'pages_block_components_3_reviews_1_image','175'),(1893,85,'_pages_block_components_3_reviews_1_image','field_67cf076cbb66c'),(1894,85,'pages_block_components_3_reviews_1_reviewer_name','Ryan Castle'),(1895,85,'_pages_block_components_3_reviews_1_reviewer_name','field_67cf0784bb66d'),(1896,85,'pages_block_components_3_reviews_1_date','20250213'),(1897,85,'_pages_block_components_3_reviews_1_date','field_67cf079cbb66e'),(1898,85,'pages_block_components_3_reviews_1_desc','They do a great job of keeping it secure and making you feel sa...'),(1899,85,'_pages_block_components_3_reviews_1_desc','field_67cf0ab4f9481'),(1900,85,'pages_block_components_3_reviews_1_review_link','https://www.google.com/maps?cid=13487484730203671818'),(1901,85,'_pages_block_components_3_reviews_1_review_link','field_67cf0ac7f9482'),(1902,85,'pages_block_components_3_reviews_2_image','176'),(1903,85,'_pages_block_components_3_reviews_2_image','field_67cf076cbb66c'),(1904,85,'pages_block_components_3_reviews_2_reviewer_name','james messervy'),(1905,85,'_pages_block_components_3_reviews_2_reviewer_name','field_67cf0784bb66d'),(1906,85,'pages_block_components_3_reviews_2_date','20250130'),(1907,85,'_pages_block_components_3_reviews_2_date','field_67cf079cbb66e'),(1908,85,'pages_block_components_3_reviews_2_desc','Great experience. Great\r\nlocation.'),(1909,85,'_pages_block_components_3_reviews_2_desc','field_67cf0ab4f9481'),(1910,85,'pages_block_components_3_reviews_2_review_link',''),(1911,85,'_pages_block_components_3_reviews_2_review_link','field_67cf0ac7f9482'),(1912,85,'pages_block_components_3_reviews_3_image','188'),(1913,85,'_pages_block_components_3_reviews_3_image','field_67cf076cbb66c'),(1914,85,'pages_block_components_3_reviews_3_reviewer_name','Carey Johnson'),(1915,85,'_pages_block_components_3_reviews_3_reviewer_name','field_67cf0784bb66d'),(1916,85,'pages_block_components_3_reviews_3_date','20250125'),(1917,85,'_pages_block_components_3_reviews_3_date','field_67cf079cbb66e'),(1918,85,'pages_block_components_3_reviews_3_desc','Great location with easy\r\naccess.'),(1919,85,'_pages_block_components_3_reviews_3_desc','field_67cf0ab4f9481'),(1920,85,'pages_block_components_3_reviews_3_review_link',''),(1921,85,'_pages_block_components_3_reviews_3_review_link','field_67cf0ac7f9482'),(1922,85,'pages_block_components_3_reviews_4_image','187'),(1923,85,'_pages_block_components_3_reviews_4_image','field_67cf076cbb66c'),(1924,85,'pages_block_components_3_reviews_4_reviewer_name','Amber Byars'),(1925,85,'_pages_block_components_3_reviews_4_reviewer_name','field_67cf0784bb66d'),(1926,85,'pages_block_components_3_reviews_4_date','20241216'),(1927,85,'_pages_block_components_3_reviews_4_date','field_67cf079cbb66e'),(1928,85,'pages_block_components_3_reviews_4_desc','Convenient location and great communication.'),(1929,85,'_pages_block_components_3_reviews_4_desc','field_67cf0ab4f9481'),(1930,85,'pages_block_components_3_reviews_4_review_link',''),(1931,85,'_pages_block_components_3_reviews_4_review_link','field_67cf0ac7f9482'),(1932,85,'pages_block_components_3_reviews_5_image','186'),(1933,85,'_pages_block_components_3_reviews_5_image','field_67cf076cbb66c'),(1934,85,'pages_block_components_3_reviews_5_reviewer_name','Catherine McRae'),(1935,85,'_pages_block_components_3_reviews_5_reviewer_name','field_67cf0784bb66d'),(1936,85,'pages_block_components_3_reviews_5_date','20240722'),(1937,85,'_pages_block_components_3_reviews_5_date','field_67cf079cbb66e'),(1938,85,'pages_block_components_3_reviews_5_desc','Sales representative was very helpful. Rental process was ve...'),(1939,85,'_pages_block_components_3_reviews_5_desc','field_67cf0ab4f9481'),(1940,85,'pages_block_components_3_reviews_5_review_link','https://www.google.com/maps?cid=13487484730203671818'),(1941,85,'_pages_block_components_3_reviews_5_review_link','field_67cf0ac7f9482'),(1942,85,'pages_block_components_3_reviews_6_image','185'),(1943,85,'_pages_block_components_3_reviews_6_image','field_67cf076cbb66c'),(1944,85,'pages_block_components_3_reviews_6_reviewer_name','Josh Cecil'),(1945,85,'_pages_block_components_3_reviews_6_reviewer_name','field_67cf0784bb66d'),(1946,85,'pages_block_components_3_reviews_6_date','20240722'),(1947,85,'_pages_block_components_3_reviews_6_date','field_67cf079cbb66e'),(1948,85,'pages_block_components_3_reviews_6_desc','This customer did not write a review.'),(1949,85,'_pages_block_components_3_reviews_6_desc','field_67cf0ab4f9481'),(1950,85,'pages_block_components_3_reviews_6_review_link',''),(1951,85,'_pages_block_components_3_reviews_6_review_link','field_67cf0ac7f9482'),(1952,85,'pages_block_components_3_reviews_7_image','184'),(1953,85,'_pages_block_components_3_reviews_7_image','field_67cf076cbb66c'),(1954,85,'pages_block_components_3_reviews_7_reviewer_name','Keith Edwards'),(1955,85,'_pages_block_components_3_reviews_7_reviewer_name','field_67cf0784bb66d'),(1956,85,'pages_block_components_3_reviews_7_date','20240719'),(1957,85,'_pages_block_components_3_reviews_7_date','field_67cf079cbb66e'),(1958,85,'pages_block_components_3_reviews_7_desc','Overall a very good spot to store a vehicle, boat or RV if you live...'),(1959,85,'_pages_block_components_3_reviews_7_desc','field_67cf0ab4f9481'),(1960,85,'pages_block_components_3_reviews_7_review_link','https://www.google.com/maps?cid=13487484730203671818'),(1961,85,'_pages_block_components_3_reviews_7_review_link','field_67cf0ac7f9482'),(1962,85,'pages_block_components_3_reviews_8_image','183'),(1963,85,'_pages_block_components_3_reviews_8_image','field_67cf076cbb66c'),(1964,85,'pages_block_components_3_reviews_8_reviewer_name','Kalleigh Cook'),(1965,85,'_pages_block_components_3_reviews_8_reviewer_name','field_67cf0784bb66d'),(1966,85,'pages_block_components_3_reviews_8_date','20240719'),(1967,85,'_pages_block_components_3_reviews_8_date','field_67cf079cbb66e'),(1968,85,'pages_block_components_3_reviews_8_desc','Great place for boat storage. Very responsive office staff.'),(1969,85,'_pages_block_components_3_reviews_8_desc','field_67cf0ab4f9481'),(1970,85,'pages_block_components_3_reviews_8_review_link',''),(1971,85,'_pages_block_components_3_reviews_8_review_link','field_67cf0ac7f9482'),(1972,85,'pages_block_components_3_reviews','9'),(1973,85,'_pages_block_components_3_reviews','field_67cf0729bb66b'),(1974,85,'pages_block_components_3_background_image','191'),(1975,85,'_pages_block_components_3_background_image','field_67cf0ed7f052f'),(1976,242,'pages_block_components_0_carousel_item_0_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(1977,242,'_pages_block_components_0_carousel_item_0_heading','field_67cee10a86380'),(1978,242,'pages_block_components_0_carousel_item_0_images','153'),(1979,242,'_pages_block_components_0_carousel_item_0_images','field_67cee12c86381'),(1980,242,'pages_block_components_0_carousel_item_0_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(1981,242,'_pages_block_components_0_carousel_item_0_desc','field_67cee13e86382'),(1982,242,'pages_block_components_0_carousel_item','3'),(1983,242,'_pages_block_components_0_carousel_item','field_67cee0c68637f'),(1984,242,'pages_block_components','a:4:{i:0;s:14:\"carousel_block\";i:1;s:15:\"service_section\";i:2;s:16:\"customer_section\";i:3;s:14:\"review_section\";}'),(1985,242,'_pages_block_components','field_67ceddb41e1f1'),(1986,242,'pages_block_components_0_carousel_item_1_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(1987,242,'_pages_block_components_0_carousel_item_1_heading','field_67cee10a86380'),(1988,242,'pages_block_components_0_carousel_item_1_images','157'),(1989,242,'_pages_block_components_0_carousel_item_1_images','field_67cee12c86381'),(1990,242,'pages_block_components_0_carousel_item_1_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(1991,242,'_pages_block_components_0_carousel_item_1_desc','field_67cee13e86382'),(1992,242,'pages_block_components_0_carousel_item_2_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(1993,242,'_pages_block_components_0_carousel_item_2_heading','field_67cee10a86380'),(1994,242,'pages_block_components_0_carousel_item_2_images','158'),(1995,242,'_pages_block_components_0_carousel_item_2_images','field_67cee12c86381'),(1996,242,'pages_block_components_0_carousel_item_2_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(1997,242,'_pages_block_components_0_carousel_item_2_desc','field_67cee13e86382'),(1998,242,'pages_block_components_1_main_heading','Boat, RV, Vehicle, and Self Storage Options Available!'),(1999,242,'_pages_block_components_1_main_heading','field_67d15adf994da'),(2000,242,'pages_block_components_1_desc','Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam deserunt voluptatibus, tempore fugiat quibusdam, dolore dolores in nisi quidem ipsam nam laborum alias beatae! Unde repudiandae doloremque incidunt in atque! '),(2001,242,'_pages_block_components_1_desc','field_67d15aee994db'),(2002,242,'pages_block_components_1_more_option_0_about_image','235'),(2003,242,'_pages_block_components_1_more_option_0_about_image','field_67d15b22994dd'),(2004,242,'pages_block_components_1_more_option_0_about_title','Boat Storage'),(2005,242,'_pages_block_components_1_more_option_0_about_title','field_67d15b42994de'),(2006,242,'pages_block_components_1_more_option_0_about_desc','Experience the serenity of our carefully picked venues, rejuvenating your spirit. '),(2007,242,'_pages_block_components_1_more_option_0_about_desc','field_67d15b51994df'),(2008,242,'pages_block_components_1_more_option_1_about_image','157'),(2009,242,'_pages_block_components_1_more_option_1_about_image','field_67d15b22994dd'),(2010,242,'pages_block_components_1_more_option_1_about_title','RV Storage'),(2011,242,'_pages_block_components_1_more_option_1_about_title','field_67d15b42994de'),(2012,242,'pages_block_components_1_more_option_1_about_desc','Located on US 78 in Summerville and only a mile from I-26 with easy access from Nexton and all of Summerville,'),(2013,242,'_pages_block_components_1_more_option_1_about_desc','field_67d15b51994df'),(2014,242,'pages_block_components_1_more_option_2_about_image','153'),(2015,242,'_pages_block_components_1_more_option_2_about_image','field_67d15b22994dd'),(2016,242,'pages_block_components_1_more_option_2_about_title','Trailer Storage'),(2017,242,'_pages_block_components_1_more_option_2_about_title','field_67d15b42994de'),(2018,242,'pages_block_components_1_more_option_2_about_desc','Located on US 78 in Summerville and only a mile from I-26 with easy access from Nexton and all of Summerville,'),(2019,242,'_pages_block_components_1_more_option_2_about_desc','field_67d15b51994df'),(2020,242,'pages_block_components_1_more_option','3'),(2021,242,'_pages_block_components_1_more_option','field_67d15b07994dc'),(2022,242,'pages_block_components_2_main_heading','Our Commitment to Customers'),(2023,242,'_pages_block_components_2_main_heading','field_67d15b85d91ff'),(2024,242,'pages_block_components_2_heading','Easy Access & Secure Vehicle Storage'),(2025,242,'_pages_block_components_2_heading','field_67d15b98d9200'),(2026,242,'pages_block_components_2_desc','Located on US 78 in Summerville and only a mile from I-26 with easy access from Nexton and all of Summerville, the team at Long Leaf Storage is committed to providing the storage you need at a fair price. '),(2027,242,'_pages_block_components_2_desc','field_67d15ba9d9201'),(2028,242,'pages_block_components_2_image','234'),(2029,242,'_pages_block_components_2_image','field_67d15bb9d9202'),(2030,242,'pages_block_components_3_main_heading','Don\'t Just Take Our Word for It!'),(2031,242,'_pages_block_components_3_main_heading','field_67cf0552bb668'),(2032,242,'pages_block_components_3_maindsc','Long Leaf Boat, RV and Trailer Storage'),(2033,242,'_pages_block_components_3_maindsc','field_67cf05a4bb669'),(2034,242,'pages_block_components_3_num_review','15 Reviews'),(2035,242,'_pages_block_components_3_num_review','field_67cf05dfbb66a'),(2036,242,'pages_block_components_3_reviews_0_image','174'),(2037,242,'_pages_block_components_3_reviews_0_image','field_67cf076cbb66c'),(2038,242,'pages_block_components_3_reviews_0_reviewer_name','Olgie'),(2039,242,'_pages_block_components_3_reviews_0_reviewer_name','field_67cf0784bb66d'),(2040,242,'pages_block_components_3_reviews_0_date','20250304'),(2041,242,'_pages_block_components_3_reviews_0_date','field_67cf079cbb66e'),(2042,242,'pages_block_components_3_reviews_0_desc','Thank you Jay for your help and for secure RV storage. It was g...'),(2043,242,'_pages_block_components_3_reviews_0_desc','field_67cf0ab4f9481'),(2044,242,'pages_block_components_3_reviews_0_review_link','https://www.google.com/maps?cid=13487484730203671818'),(2045,242,'_pages_block_components_3_reviews_0_review_link','field_67cf0ac7f9482'),(2046,242,'pages_block_components_3_reviews_1_image','175'),(2047,242,'_pages_block_components_3_reviews_1_image','field_67cf076cbb66c'),(2048,242,'pages_block_components_3_reviews_1_reviewer_name','Ryan Castle'),(2049,242,'_pages_block_components_3_reviews_1_reviewer_name','field_67cf0784bb66d'),(2050,242,'pages_block_components_3_reviews_1_date','20250213'),(2051,242,'_pages_block_components_3_reviews_1_date','field_67cf079cbb66e'),(2052,242,'pages_block_components_3_reviews_1_desc','They do a great job of keeping it secure and making you feel sa...'),(2053,242,'_pages_block_components_3_reviews_1_desc','field_67cf0ab4f9481'),(2054,242,'pages_block_components_3_reviews_1_review_link','https://www.google.com/maps?cid=13487484730203671818'),(2055,242,'_pages_block_components_3_reviews_1_review_link','field_67cf0ac7f9482'),(2056,242,'pages_block_components_3_reviews_2_image','176'),(2057,242,'_pages_block_components_3_reviews_2_image','field_67cf076cbb66c'),(2058,242,'pages_block_components_3_reviews_2_reviewer_name','james messervy'),(2059,242,'_pages_block_components_3_reviews_2_reviewer_name','field_67cf0784bb66d'),(2060,242,'pages_block_components_3_reviews_2_date','20250130'),(2061,242,'_pages_block_components_3_reviews_2_date','field_67cf079cbb66e'),(2062,242,'pages_block_components_3_reviews_2_desc','Great experience. Great\r\nlocation.'),(2063,242,'_pages_block_components_3_reviews_2_desc','field_67cf0ab4f9481'),(2064,242,'pages_block_components_3_reviews_2_review_link',''),(2065,242,'_pages_block_components_3_reviews_2_review_link','field_67cf0ac7f9482'),(2066,242,'pages_block_components_3_reviews_3_image','188'),(2067,242,'_pages_block_components_3_reviews_3_image','field_67cf076cbb66c'),(2068,242,'pages_block_components_3_reviews_3_reviewer_name','Carey Johnson'),(2069,242,'_pages_block_components_3_reviews_3_reviewer_name','field_67cf0784bb66d'),(2070,242,'pages_block_components_3_reviews_3_date','20250125'),(2071,242,'_pages_block_components_3_reviews_3_date','field_67cf079cbb66e'),(2072,242,'pages_block_components_3_reviews_3_desc','Great location with easy\r\naccess.'),(2073,242,'_pages_block_components_3_reviews_3_desc','field_67cf0ab4f9481'),(2074,242,'pages_block_components_3_reviews_3_review_link',''),(2075,242,'_pages_block_components_3_reviews_3_review_link','field_67cf0ac7f9482'),(2076,242,'pages_block_components_3_reviews_4_image','187'),(2077,242,'_pages_block_components_3_reviews_4_image','field_67cf076cbb66c'),(2078,242,'pages_block_components_3_reviews_4_reviewer_name','Amber Byars'),(2079,242,'_pages_block_components_3_reviews_4_reviewer_name','field_67cf0784bb66d'),(2080,242,'pages_block_components_3_reviews_4_date','20241216'),(2081,242,'_pages_block_components_3_reviews_4_date','field_67cf079cbb66e'),(2082,242,'pages_block_components_3_reviews_4_desc','Convenient location and great communication.'),(2083,242,'_pages_block_components_3_reviews_4_desc','field_67cf0ab4f9481'),(2084,242,'pages_block_components_3_reviews_4_review_link',''),(2085,242,'_pages_block_components_3_reviews_4_review_link','field_67cf0ac7f9482'),(2086,242,'pages_block_components_3_reviews_5_image','186'),(2087,242,'_pages_block_components_3_reviews_5_image','field_67cf076cbb66c'),(2088,242,'pages_block_components_3_reviews_5_reviewer_name','Catherine McRae'),(2089,242,'_pages_block_components_3_reviews_5_reviewer_name','field_67cf0784bb66d'),(2090,242,'pages_block_components_3_reviews_5_date','20240722'),(2091,242,'_pages_block_components_3_reviews_5_date','field_67cf079cbb66e'),(2092,242,'pages_block_components_3_reviews_5_desc','Sales representative was very helpful. Rental process was ve...'),(2093,242,'_pages_block_components_3_reviews_5_desc','field_67cf0ab4f9481'),(2094,242,'pages_block_components_3_reviews_5_review_link','https://www.google.com/maps?cid=13487484730203671818'),(2095,242,'_pages_block_components_3_reviews_5_review_link','field_67cf0ac7f9482'),(2096,242,'pages_block_components_3_reviews_6_image','185'),(2097,242,'_pages_block_components_3_reviews_6_image','field_67cf076cbb66c'),(2098,242,'pages_block_components_3_reviews_6_reviewer_name','Josh Cecil'),(2099,242,'_pages_block_components_3_reviews_6_reviewer_name','field_67cf0784bb66d'),(2100,242,'pages_block_components_3_reviews_6_date','20240722'),(2101,242,'_pages_block_components_3_reviews_6_date','field_67cf079cbb66e'),(2102,242,'pages_block_components_3_reviews_6_desc','This customer did not write a review.'),(2103,242,'_pages_block_components_3_reviews_6_desc','field_67cf0ab4f9481'),(2104,242,'pages_block_components_3_reviews_6_review_link',''),(2105,242,'_pages_block_components_3_reviews_6_review_link','field_67cf0ac7f9482'),(2106,242,'pages_block_components_3_reviews_7_image','184'),(2107,242,'_pages_block_components_3_reviews_7_image','field_67cf076cbb66c'),(2108,242,'pages_block_components_3_reviews_7_reviewer_name','Keith Edwards'),(2109,242,'_pages_block_components_3_reviews_7_reviewer_name','field_67cf0784bb66d'),(2110,242,'pages_block_components_3_reviews_7_date','20240719'),(2111,242,'_pages_block_components_3_reviews_7_date','field_67cf079cbb66e'),(2112,242,'pages_block_components_3_reviews_7_desc','Overall a very good spot to store a vehicle, boat or RV if you live...'),(2113,242,'_pages_block_components_3_reviews_7_desc','field_67cf0ab4f9481'),(2114,242,'pages_block_components_3_reviews_7_review_link','https://www.google.com/maps?cid=13487484730203671818'),(2115,242,'_pages_block_components_3_reviews_7_review_link','field_67cf0ac7f9482'),(2116,242,'pages_block_components_3_reviews_8_image','183'),(2117,242,'_pages_block_components_3_reviews_8_image','field_67cf076cbb66c'),(2118,242,'pages_block_components_3_reviews_8_reviewer_name','Kalleigh Cook'),(2119,242,'_pages_block_components_3_reviews_8_reviewer_name','field_67cf0784bb66d'),(2120,242,'pages_block_components_3_reviews_8_date','20240719'),(2121,242,'_pages_block_components_3_reviews_8_date','field_67cf079cbb66e'),(2122,242,'pages_block_components_3_reviews_8_desc','Great place for boat storage. Very responsive office staff.'),(2123,242,'_pages_block_components_3_reviews_8_desc','field_67cf0ab4f9481'),(2124,242,'pages_block_components_3_reviews_8_review_link',''),(2125,242,'_pages_block_components_3_reviews_8_review_link','field_67cf0ac7f9482'),(2126,242,'pages_block_components_3_reviews','9'),(2127,242,'_pages_block_components_3_reviews','field_67cf0729bb66b'),(2128,242,'pages_block_components_3_background_image','191'),(2129,242,'_pages_block_components_3_background_image','field_67cf0ed7f052f'),(2132,243,'footnotes',''),(2134,243,'pages_block_components_0_carousel_item_0_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(2135,243,'_pages_block_components_0_carousel_item_0_heading','field_67cee10a86380'),(2136,243,'pages_block_components_0_carousel_item_0_images','153'),(2137,243,'_pages_block_components_0_carousel_item_0_images','field_67cee12c86381'),(2138,243,'pages_block_components_0_carousel_item_0_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(2139,243,'_pages_block_components_0_carousel_item_0_desc','field_67cee13e86382'),(2140,243,'pages_block_components_0_carousel_item','3'),(2141,243,'_pages_block_components_0_carousel_item','field_67cee0c68637f'),(2142,243,'pages_block_components','a:4:{i:0;s:14:\"carousel_block\";i:1;s:15:\"service_section\";i:2;s:16:\"customer_section\";i:3;s:14:\"review_section\";}'),(2143,243,'_pages_block_components','field_67ceddb41e1f1'),(2144,243,'pages_block_components_0_carousel_item_1_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(2145,243,'_pages_block_components_0_carousel_item_1_heading','field_67cee10a86380'),(2146,243,'pages_block_components_0_carousel_item_1_images','157'),(2147,243,'_pages_block_components_0_carousel_item_1_images','field_67cee12c86381'),(2148,243,'pages_block_components_0_carousel_item_1_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(2149,243,'_pages_block_components_0_carousel_item_1_desc','field_67cee13e86382'),(2150,243,'pages_block_components_0_carousel_item_2_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(2151,243,'_pages_block_components_0_carousel_item_2_heading','field_67cee10a86380'),(2152,243,'pages_block_components_0_carousel_item_2_images','158'),(2153,243,'_pages_block_components_0_carousel_item_2_images','field_67cee12c86381'),(2154,243,'pages_block_components_0_carousel_item_2_desc','

We offer secure and affordable outdoor storage space for:

\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
  • \r\n
'),(2155,243,'_pages_block_components_0_carousel_item_2_desc','field_67cee13e86382'),(2156,243,'pages_block_components_1_main_heading','Boat, RV, Vehicle, and Self Storage'),(2157,243,'_pages_block_components_1_main_heading','field_67d15adf994da'),(2158,243,'pages_block_components_1_desc','Lorem ipsum dolor sit amet consectetur adipisicing elit. Quam deserunt voluptatibus, tempore fugiat quibusdam, dolore dolores in nisi quidem ipsam nam laborum alias beatae! Unde repudiandae doloremque incidunt in atque! '),(2159,243,'_pages_block_components_1_desc','field_67d15aee994db'),(2160,243,'pages_block_components_1_more_option_0_about_image','235'),(2161,243,'_pages_block_components_1_more_option_0_about_image','field_67d15b22994dd'),(2162,243,'pages_block_components_1_more_option_0_about_title','Boat Storage'),(2163,243,'_pages_block_components_1_more_option_0_about_title','field_67d15b42994de'),(2164,243,'pages_block_components_1_more_option_0_about_desc','Experience the serenity of our carefully picked venues, rejuvenating your spirit. '),(2165,243,'_pages_block_components_1_more_option_0_about_desc','field_67d15b51994df'),(2166,243,'pages_block_components_1_more_option_1_about_image','157'),(2167,243,'_pages_block_components_1_more_option_1_about_image','field_67d15b22994dd'),(2168,243,'pages_block_components_1_more_option_1_about_title','RV Storage'),(2169,243,'_pages_block_components_1_more_option_1_about_title','field_67d15b42994de'),(2170,243,'pages_block_components_1_more_option_1_about_desc','Located on US 78 in Summerville and only a mile from I-26 with easy access from Nexton and all of Summerville,'),(2171,243,'_pages_block_components_1_more_option_1_about_desc','field_67d15b51994df'),(2172,243,'pages_block_components_1_more_option_2_about_image','153'),(2173,243,'_pages_block_components_1_more_option_2_about_image','field_67d15b22994dd'),(2174,243,'pages_block_components_1_more_option_2_about_title','Trailer Storage'),(2175,243,'_pages_block_components_1_more_option_2_about_title','field_67d15b42994de'),(2176,243,'pages_block_components_1_more_option_2_about_desc','Located on US 78 in Summerville and only a mile from I-26 with easy access from Nexton and all of Summerville,'),(2177,243,'_pages_block_components_1_more_option_2_about_desc','field_67d15b51994df'),(2178,243,'pages_block_components_1_more_option','3'),(2179,243,'_pages_block_components_1_more_option','field_67d15b07994dc'),(2180,243,'pages_block_components_2_main_heading','Our Commitment to Customers'),(2181,243,'_pages_block_components_2_main_heading','field_67d15b85d91ff'),(2182,243,'pages_block_components_2_heading','Easy Access & Secure Vehicle Storage'),(2183,243,'_pages_block_components_2_heading','field_67d15b98d9200'),(2184,243,'pages_block_components_2_desc','Located on US 78 in Summerville and only a mile from I-26 with easy access from Nexton and all of Summerville, the team at Long Leaf Storage is committed to providing the storage you need at a fair price. '),(2185,243,'_pages_block_components_2_desc','field_67d15ba9d9201'),(2186,243,'pages_block_components_2_image','234'),(2187,243,'_pages_block_components_2_image','field_67d15bb9d9202'),(2188,243,'pages_block_components_3_main_heading','Don\'t Just Take Our Word for It!'),(2189,243,'_pages_block_components_3_main_heading','field_67cf0552bb668'),(2190,243,'pages_block_components_3_maindsc','Long Leaf Boat, RV and Trailer Storage'),(2191,243,'_pages_block_components_3_maindsc','field_67cf05a4bb669'),(2192,243,'pages_block_components_3_num_review','15 Reviews'),(2193,243,'_pages_block_components_3_num_review','field_67cf05dfbb66a'),(2194,243,'pages_block_components_3_reviews_0_image','174'),(2195,243,'_pages_block_components_3_reviews_0_image','field_67cf076cbb66c'),(2196,243,'pages_block_components_3_reviews_0_reviewer_name','Olgie'),(2197,243,'_pages_block_components_3_reviews_0_reviewer_name','field_67cf0784bb66d'),(2198,243,'pages_block_components_3_reviews_0_date','20250304'),(2199,243,'_pages_block_components_3_reviews_0_date','field_67cf079cbb66e'),(2200,243,'pages_block_components_3_reviews_0_desc','Thank you Jay for your help and for secure RV storage. It was g...'),(2201,243,'_pages_block_components_3_reviews_0_desc','field_67cf0ab4f9481'),(2202,243,'pages_block_components_3_reviews_0_review_link','https://www.google.com/maps?cid=13487484730203671818'),(2203,243,'_pages_block_components_3_reviews_0_review_link','field_67cf0ac7f9482'),(2204,243,'pages_block_components_3_reviews_1_image','175'),(2205,243,'_pages_block_components_3_reviews_1_image','field_67cf076cbb66c'),(2206,243,'pages_block_components_3_reviews_1_reviewer_name','Ryan Castle'),(2207,243,'_pages_block_components_3_reviews_1_reviewer_name','field_67cf0784bb66d'),(2208,243,'pages_block_components_3_reviews_1_date','20250213'),(2209,243,'_pages_block_components_3_reviews_1_date','field_67cf079cbb66e'),(2210,243,'pages_block_components_3_reviews_1_desc','They do a great job of keeping it secure and making you feel sa...'),(2211,243,'_pages_block_components_3_reviews_1_desc','field_67cf0ab4f9481'),(2212,243,'pages_block_components_3_reviews_1_review_link','https://www.google.com/maps?cid=13487484730203671818'),(2213,243,'_pages_block_components_3_reviews_1_review_link','field_67cf0ac7f9482'),(2214,243,'pages_block_components_3_reviews_2_image','176'),(2215,243,'_pages_block_components_3_reviews_2_image','field_67cf076cbb66c'),(2216,243,'pages_block_components_3_reviews_2_reviewer_name','james messervy'),(2217,243,'_pages_block_components_3_reviews_2_reviewer_name','field_67cf0784bb66d'),(2218,243,'pages_block_components_3_reviews_2_date','20250130'),(2219,243,'_pages_block_components_3_reviews_2_date','field_67cf079cbb66e'),(2220,243,'pages_block_components_3_reviews_2_desc','Great experience. Great\r\nlocation.'),(2221,243,'_pages_block_components_3_reviews_2_desc','field_67cf0ab4f9481'),(2222,243,'pages_block_components_3_reviews_2_review_link',''),(2223,243,'_pages_block_components_3_reviews_2_review_link','field_67cf0ac7f9482'),(2224,243,'pages_block_components_3_reviews_3_image','188'),(2225,243,'_pages_block_components_3_reviews_3_image','field_67cf076cbb66c'),(2226,243,'pages_block_components_3_reviews_3_reviewer_name','Carey Johnson'),(2227,243,'_pages_block_components_3_reviews_3_reviewer_name','field_67cf0784bb66d'),(2228,243,'pages_block_components_3_reviews_3_date','20250125'),(2229,243,'_pages_block_components_3_reviews_3_date','field_67cf079cbb66e'),(2230,243,'pages_block_components_3_reviews_3_desc','Great location with easy\r\naccess.'),(2231,243,'_pages_block_components_3_reviews_3_desc','field_67cf0ab4f9481'),(2232,243,'pages_block_components_3_reviews_3_review_link',''),(2233,243,'_pages_block_components_3_reviews_3_review_link','field_67cf0ac7f9482'),(2234,243,'pages_block_components_3_reviews_4_image','187'),(2235,243,'_pages_block_components_3_reviews_4_image','field_67cf076cbb66c'),(2236,243,'pages_block_components_3_reviews_4_reviewer_name','Amber Byars'),(2237,243,'_pages_block_components_3_reviews_4_reviewer_name','field_67cf0784bb66d'),(2238,243,'pages_block_components_3_reviews_4_date','20241216'),(2239,243,'_pages_block_components_3_reviews_4_date','field_67cf079cbb66e'),(2240,243,'pages_block_components_3_reviews_4_desc','Convenient location and great communication.'),(2241,243,'_pages_block_components_3_reviews_4_desc','field_67cf0ab4f9481'),(2242,243,'pages_block_components_3_reviews_4_review_link',''),(2243,243,'_pages_block_components_3_reviews_4_review_link','field_67cf0ac7f9482'),(2244,243,'pages_block_components_3_reviews_5_image','186'),(2245,243,'_pages_block_components_3_reviews_5_image','field_67cf076cbb66c'),(2246,243,'pages_block_components_3_reviews_5_reviewer_name','Catherine McRae'),(2247,243,'_pages_block_components_3_reviews_5_reviewer_name','field_67cf0784bb66d'),(2248,243,'pages_block_components_3_reviews_5_date','20240722'),(2249,243,'_pages_block_components_3_reviews_5_date','field_67cf079cbb66e'),(2250,243,'pages_block_components_3_reviews_5_desc','Sales representative was very helpful. Rental process was ve...'),(2251,243,'_pages_block_components_3_reviews_5_desc','field_67cf0ab4f9481'),(2252,243,'pages_block_components_3_reviews_5_review_link','https://www.google.com/maps?cid=13487484730203671818'),(2253,243,'_pages_block_components_3_reviews_5_review_link','field_67cf0ac7f9482'),(2254,243,'pages_block_components_3_reviews_6_image','185'),(2255,243,'_pages_block_components_3_reviews_6_image','field_67cf076cbb66c'),(2256,243,'pages_block_components_3_reviews_6_reviewer_name','Josh Cecil'),(2257,243,'_pages_block_components_3_reviews_6_reviewer_name','field_67cf0784bb66d'),(2258,243,'pages_block_components_3_reviews_6_date','20240722'),(2259,243,'_pages_block_components_3_reviews_6_date','field_67cf079cbb66e'),(2260,243,'pages_block_components_3_reviews_6_desc','This customer did not write a review.'),(2261,243,'_pages_block_components_3_reviews_6_desc','field_67cf0ab4f9481'),(2262,243,'pages_block_components_3_reviews_6_review_link',''),(2263,243,'_pages_block_components_3_reviews_6_review_link','field_67cf0ac7f9482'),(2264,243,'pages_block_components_3_reviews_7_image','184'),(2265,243,'_pages_block_components_3_reviews_7_image','field_67cf076cbb66c'),(2266,243,'pages_block_components_3_reviews_7_reviewer_name','Keith Edwards'),(2267,243,'_pages_block_components_3_reviews_7_reviewer_name','field_67cf0784bb66d'),(2268,243,'pages_block_components_3_reviews_7_date','20240719'),(2269,243,'_pages_block_components_3_reviews_7_date','field_67cf079cbb66e'),(2270,243,'pages_block_components_3_reviews_7_desc','Overall a very good spot to store a vehicle, boat or RV if you live...'),(2271,243,'_pages_block_components_3_reviews_7_desc','field_67cf0ab4f9481'),(2272,243,'pages_block_components_3_reviews_7_review_link','https://www.google.com/maps?cid=13487484730203671818'),(2273,243,'_pages_block_components_3_reviews_7_review_link','field_67cf0ac7f9482'),(2274,243,'pages_block_components_3_reviews_8_image','183'),(2275,243,'_pages_block_components_3_reviews_8_image','field_67cf076cbb66c'),(2276,243,'pages_block_components_3_reviews_8_reviewer_name','Kalleigh Cook'),(2277,243,'_pages_block_components_3_reviews_8_reviewer_name','field_67cf0784bb66d'),(2278,243,'pages_block_components_3_reviews_8_date','20240719'),(2279,243,'_pages_block_components_3_reviews_8_date','field_67cf079cbb66e'),(2280,243,'pages_block_components_3_reviews_8_desc','Great place for boat storage. Very responsive office staff.'),(2281,243,'_pages_block_components_3_reviews_8_desc','field_67cf0ab4f9481'),(2282,243,'pages_block_components_3_reviews_8_review_link',''),(2283,243,'_pages_block_components_3_reviews_8_review_link','field_67cf0ac7f9482'),(2284,243,'pages_block_components_3_reviews','9'),(2285,243,'_pages_block_components_3_reviews','field_67cf0729bb66b'),(2286,243,'pages_block_components_3_background_image','191'),(2287,243,'_pages_block_components_3_background_image','field_67cf0ed7f052f'),(2288,244,'footnotes',''),(2289,244,'pages_block_components_0_heading','Exterior Space for your Recreational or Work Vehicle'),(2290,244,'_pages_block_components_0_heading','field_67cf10a1c28be'),(2291,244,'pages_block_components_0_sub_heading','Store your boat, RV, utility trailer, commercial vehicle, or extra vehicle securely and affordably.'),(2292,244,'_pages_block_components_0_sub_heading','field_67cf10bec28bf'),(2293,244,'pages_block_components_0_add_more_price_0_size','10\' x 15\''),(2294,244,'_pages_block_components_0_add_more_price_0_size','field_67cf1115c28c1'),(2295,244,'pages_block_components_0_add_more_price_0_desc','Great for a car or small trailer. '),(2296,244,'_pages_block_components_0_add_more_price_0_desc','field_67cf1135c28c2'),(2297,244,'pages_block_components_0_add_more_price_0_price','$69/month'),(2298,244,'_pages_block_components_0_add_more_price_0_price','field_67cf1146c28c3'),(2299,244,'pages_block_components_0_add_more_price_1_size','10\' x 20\''),(2300,244,'_pages_block_components_0_add_more_price_1_size','field_67cf1115c28c1'),(2301,244,'pages_block_components_0_add_more_price_1_desc','Great for utility trailers, small Jon boats, commercial vehicles, and small campers.'),(2302,244,'_pages_block_components_0_add_more_price_1_desc','field_67cf1135c28c2'),(2303,244,'pages_block_components_0_add_more_price_1_price','$99/month'),(2304,244,'_pages_block_components_0_add_more_price_1_price','field_67cf1146c28c3'),(2305,244,'pages_block_components_0_add_more_price_2_size','10\' x 30\''),(2306,244,'_pages_block_components_0_add_more_price_2_size','field_67cf1115c28c1'),(2307,244,'pages_block_components_0_add_more_price_2_desc','Store that 24\' center console or 25\' Airstream camper! '),(2308,244,'_pages_block_components_0_add_more_price_2_desc','field_67cf1135c28c2'),(2309,244,'pages_block_components_0_add_more_price_2_price','$119/month'),(2310,244,'_pages_block_components_0_add_more_price_2_price','field_67cf1146c28c3'),(2311,244,'pages_block_components_0_add_more_price_3_size','11\' x 40\''),(2312,244,'_pages_block_components_0_add_more_price_3_size','field_67cf1115c28c1'),(2313,244,'pages_block_components_0_add_more_price_3_desc','Big rig and 5th Wheel Campers rejoice. We got you covered. '),(2314,244,'_pages_block_components_0_add_more_price_3_desc','field_67cf1135c28c2'),(2315,244,'pages_block_components_0_add_more_price_3_price','$135/month'),(2316,244,'_pages_block_components_0_add_more_price_3_price','field_67cf1146c28c3'),(2317,244,'pages_block_components_0_add_more_price','4'),(2318,244,'_pages_block_components_0_add_more_price','field_67cf10d8c28c0'),(2319,244,'pages_block_components','a:1:{i:0;s:13:\"price_section\";}'),(2320,244,'_pages_block_components','field_67ceddb41e1f1'),(2321,244,'pay_here','https://onlinepayments.storagecommander.net/login/41695'),(2322,244,'_pay_here','field_67cf118953b60'),(2323,244,'pages_block_components_0_pay_link','https://onlinepayments.storagecommander.net/login/41695'),(2324,244,'_pages_block_components_0_pay_link','field_67cf1e00abbb8'),(2327,246,'footnotes',''),(2328,89,'_yoast_wpseo_content_score','90'),(2329,246,'pages_block_components_0_heading','Exterior Space for your Recreational or Work Vehicle'),(2330,246,'_pages_block_components_0_heading','field_67cf10a1c28be'),(2331,246,'pages_block_components_0_sub_heading','Store your boat, RV, utility trailer, commercial vehicle, or extra vehicle securely and affordably.'),(2332,246,'_pages_block_components_0_sub_heading','field_67cf10bec28bf'),(2333,246,'pages_block_components_0_add_more_price_0_size','10\' x 15\''),(2334,246,'_pages_block_components_0_add_more_price_0_size','field_67cf1115c28c1'),(2335,246,'pages_block_components_0_add_more_price_0_desc','Great for a car or small trailer. '),(2336,246,'_pages_block_components_0_add_more_price_0_desc','field_67cf1135c28c2'),(2337,246,'pages_block_components_0_add_more_price_0_price','$69/month'),(2338,246,'_pages_block_components_0_add_more_price_0_price','field_67cf1146c28c3'),(2339,246,'pages_block_components_0_add_more_price_1_size','10\' x 20\''),(2340,246,'_pages_block_components_0_add_more_price_1_size','field_67cf1115c28c1'),(2341,246,'pages_block_components_0_add_more_price_1_desc','Great for utility trailers, small Jon boats, commercial vehicles, and small campers.'),(2342,246,'_pages_block_components_0_add_more_price_1_desc','field_67cf1135c28c2'),(2343,246,'pages_block_components_0_add_more_price_1_price','$99/month'),(2344,246,'_pages_block_components_0_add_more_price_1_price','field_67cf1146c28c3'),(2345,246,'pages_block_components_0_add_more_price_2_size','10\' x 30\''),(2346,246,'_pages_block_components_0_add_more_price_2_size','field_67cf1115c28c1'),(2347,246,'pages_block_components_0_add_more_price_2_desc','Store that 24\' center console or 25\' Airstream camper! '),(2348,246,'_pages_block_components_0_add_more_price_2_desc','field_67cf1135c28c2'),(2349,246,'pages_block_components_0_add_more_price_2_price','$119/month'),(2350,246,'_pages_block_components_0_add_more_price_2_price','field_67cf1146c28c3'),(2351,246,'pages_block_components_0_add_more_price_3_size','11\' x 40\''),(2352,246,'_pages_block_components_0_add_more_price_3_size','field_67cf1115c28c1'),(2353,246,'pages_block_components_0_add_more_price_3_desc','Big rig and 5th Wheel Campers rejoice. We got you covered. '),(2354,246,'_pages_block_components_0_add_more_price_3_desc','field_67cf1135c28c2'),(2355,246,'pages_block_components_0_add_more_price_3_price','$135/month'),(2356,246,'_pages_block_components_0_add_more_price_3_price','field_67cf1146c28c3'),(2357,246,'pages_block_components_0_add_more_price','4'),(2358,246,'_pages_block_components_0_add_more_price','field_67cf10d8c28c0'),(2359,246,'pages_block_components','a:1:{i:0;s:13:\"price_section\";}'),(2360,246,'_pages_block_components','field_67ceddb41e1f1'),(2361,246,'pay_here','https://onlinepayments.storagecommander.net/login/41695'),(2362,246,'_pay_here','field_67cf118953b60'),(2363,246,'pages_block_components_0_pay_link','https://onlinepayments.storagecommander.net/login/41695'),(2364,246,'_pages_block_components_0_pay_link','field_67cf1e00abbb8'),(2365,87,'pages_block_components','a:1:{i:0;s:15:\"service_section\";}'),(2366,87,'_pages_block_components','field_67ceddb41e1f1'),(2367,87,'_yoast_wpseo_content_score','90'),(2368,247,'pages_block_components',''),(2369,247,'_pages_block_components','field_67ceddb41e1f1'),(2370,248,'_edit_lock','1741778328:2'),(2371,248,'_edit_last','2'),(2373,87,'footnotes',''),(2375,250,'footnotes',''),(2377,87,'web_banner','158'),(2378,87,'_web_banner','field_67d168d7b12e3'),(2379,250,'pages_block_components',''),(2380,250,'_pages_block_components','field_67ceddb41e1f1'),(2381,250,'web_banner','158'),(2382,250,'_web_banner','field_67d168d7b12e3'),(2383,251,'footnotes',''),(2384,251,'pages_block_components',''),(2385,251,'_pages_block_components','field_67ceddb41e1f1'),(2386,251,'web_banner','158'),(2387,251,'_web_banner','field_67d168d7b12e3'),(2390,253,'_wp_attached_file','2025/03/GATE-1.jpg'),(2391,253,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1200;s:4:\"file\";s:18:\"2025/03/GATE-1.jpg\";s:8:\"filesize\";i:592728;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"GATE-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18749;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"GATE-1-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:215139;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"GATE-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7154;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"GATE-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118338;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"GATE-1-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:487741;}}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:{}}}'),(2394,254,'footnotes',''),(2396,87,'pages_block_components_0_main_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(2397,87,'_pages_block_components_0_main_heading','field_67d15adf994da'),(2398,87,'pages_block_components_0_desc','We offer secure and affordable outdoor storage space for:\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
'),(2399,87,'_pages_block_components_0_desc','field_67d15aee994db'),(2400,87,'pages_block_components_0_more_option_0_about_image','158'),(2401,87,'_pages_block_components_0_more_option_0_about_image','field_67d15b22994dd'),(2402,87,'pages_block_components_0_more_option_0_about_title','Boat Storage'),(2403,87,'_pages_block_components_0_more_option_0_about_title','field_67d15b42994de'),(2404,87,'pages_block_components_0_more_option_0_about_desc',' Lorem ipsum dolor sit amet consectetur adipisicing elit. Adipisci exercitationem qui quasi eaque ex earum! Sequi temporibus '),(2405,87,'_pages_block_components_0_more_option_0_about_desc','field_67d15b51994df'),(2406,87,'pages_block_components_0_more_option_1_about_image','253'),(2407,87,'_pages_block_components_0_more_option_1_about_image','field_67d15b22994dd'),(2408,87,'pages_block_components_0_more_option_1_about_title','RV Storage'),(2409,87,'_pages_block_components_0_more_option_1_about_title','field_67d15b42994de'),(2410,87,'pages_block_components_0_more_option_1_about_desc','Lorem ipsum dolor sit amet consectetur adipisicing elit. Adipisci exercitationem qui quasi eaque ex earum! Sequi temporibus '),(2411,87,'_pages_block_components_0_more_option_1_about_desc','field_67d15b51994df'),(2412,87,'pages_block_components_0_more_option_2_about_image','153'),(2413,87,'_pages_block_components_0_more_option_2_about_image','field_67d15b22994dd'),(2414,87,'pages_block_components_0_more_option_2_about_title','Trailer Storage'),(2415,87,'_pages_block_components_0_more_option_2_about_title','field_67d15b42994de'),(2416,87,'pages_block_components_0_more_option_2_about_desc','Lorem ipsum dolor sit amet consectetur adipisicing elit. Adipisci exercitationem qui quasi eaque ex earum! Sequi temporibus '),(2417,87,'_pages_block_components_0_more_option_2_about_desc','field_67d15b51994df'),(2418,87,'pages_block_components_0_more_option_3_about_image','157'),(2419,87,'_pages_block_components_0_more_option_3_about_image','field_67d15b22994dd'),(2420,87,'pages_block_components_0_more_option_3_about_title','Commercial Vehicle Storage'),(2421,87,'_pages_block_components_0_more_option_3_about_title','field_67d15b42994de'),(2422,87,'pages_block_components_0_more_option_3_about_desc','Lorem ipsum dolor sit amet consectetur adipisicing elit. Adipisci exercitationem qui quasi eaque ex earum! Sequi temporibus '),(2423,87,'_pages_block_components_0_more_option_3_about_desc','field_67d15b51994df'),(2424,87,'pages_block_components_0_more_option','4'),(2425,87,'_pages_block_components_0_more_option','field_67d15b07994dc'),(2426,254,'pages_block_components','a:1:{i:0;s:15:\"service_section\";}'),(2427,254,'_pages_block_components','field_67ceddb41e1f1'),(2428,254,'web_banner','158'),(2429,254,'_web_banner','field_67d168d7b12e3'),(2430,254,'pages_block_components_0_main_heading','Your Trusted RV Storage, Trailer Storage, & Boat Storage Partner'),(2431,254,'_pages_block_components_0_main_heading','field_67d15adf994da'),(2432,254,'pages_block_components_0_desc','We offer secure and affordable outdoor storage space for:\r\n
  • Boat Storage
  • \r\n
  • RV Storage
  • \r\n
  • Trailer Storage
  • \r\n
  • Commercial Vehicle Storage
'),(2433,254,'_pages_block_components_0_desc','field_67d15aee994db'),(2434,254,'pages_block_components_0_more_option_0_about_image','158'),(2435,254,'_pages_block_components_0_more_option_0_about_image','field_67d15b22994dd'),(2436,254,'pages_block_components_0_more_option_0_about_title','Boat Storage'),(2437,254,'_pages_block_components_0_more_option_0_about_title','field_67d15b42994de'),(2438,254,'pages_block_components_0_more_option_0_about_desc',' Lorem ipsum dolor sit amet consectetur adipisicing elit. Adipisci exercitationem qui quasi eaque ex earum! Sequi temporibus '),(2439,254,'_pages_block_components_0_more_option_0_about_desc','field_67d15b51994df'),(2440,254,'pages_block_components_0_more_option_1_about_image','253'),(2441,254,'_pages_block_components_0_more_option_1_about_image','field_67d15b22994dd'),(2442,254,'pages_block_components_0_more_option_1_about_title','RV Storage'),(2443,254,'_pages_block_components_0_more_option_1_about_title','field_67d15b42994de'),(2444,254,'pages_block_components_0_more_option_1_about_desc','Lorem ipsum dolor sit amet consectetur adipisicing elit. Adipisci exercitationem qui quasi eaque ex earum! Sequi temporibus '),(2445,254,'_pages_block_components_0_more_option_1_about_desc','field_67d15b51994df'),(2446,254,'pages_block_components_0_more_option_2_about_image','153'),(2447,254,'_pages_block_components_0_more_option_2_about_image','field_67d15b22994dd'),(2448,254,'pages_block_components_0_more_option_2_about_title','Trailer Storage'),(2449,254,'_pages_block_components_0_more_option_2_about_title','field_67d15b42994de'),(2450,254,'pages_block_components_0_more_option_2_about_desc','Lorem ipsum dolor sit amet consectetur adipisicing elit. Adipisci exercitationem qui quasi eaque ex earum! Sequi temporibus '),(2451,254,'_pages_block_components_0_more_option_2_about_desc','field_67d15b51994df'),(2452,254,'pages_block_components_0_more_option_3_about_image','157'),(2453,254,'_pages_block_components_0_more_option_3_about_image','field_67d15b22994dd'),(2454,254,'pages_block_components_0_more_option_3_about_title','Commercial Vehicle Storage'),(2455,254,'_pages_block_components_0_more_option_3_about_title','field_67d15b42994de'),(2456,254,'pages_block_components_0_more_option_3_about_desc','Lorem ipsum dolor sit amet consectetur adipisicing elit. Adipisci exercitationem qui quasi eaque ex earum! Sequi temporibus '),(2457,254,'_pages_block_components_0_more_option_3_about_desc','field_67d15b51994df'),(2458,254,'pages_block_components_0_more_option','4'),(2459,254,'_pages_block_components_0_more_option','field_67d15b07994dc'),(2460,255,'_wp_attached_file','2025/03/spaces.jpg'),(2461,255,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:848;s:6:\"height\";i:1130;s:4:\"file\";s:18:\"2025/03/spaces.jpg\";s:8:\"filesize\";i:352323;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"spaces-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19857;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"spaces-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:260673;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"spaces-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6960;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"spaces-768x1023.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1023;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:260832;}}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:{}}}'),(2465,91,'footnotes',''),(2467,257,'footnotes',''),(2469,91,'web_banner','255'),(2470,91,'_web_banner','field_67d168d7b12e3'),(2471,91,'pages_block_components','a:1:{i:0;s:15:\"service_section\";}'),(2472,91,'_pages_block_components','field_67ceddb41e1f1'),(2473,91,'_yoast_wpseo_content_score','90'),(2474,257,'web_banner','255'),(2475,257,'_web_banner','field_67d168d7b12e3'),(2476,257,'pages_block_components',''),(2477,257,'_pages_block_components','field_67ceddb41e1f1'),(2480,259,'_wp_attached_file','2025/03/ariel_view.jpg'),(2481,259,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:4:\"file\";s:22:\"2025/03/ariel_view.jpg\";s:8:\"filesize\";i:730303;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"ariel_view-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13272;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"ariel_view-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110916;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"ariel_view-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5997;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"ariel_view-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66978;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"ariel_view-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:235413;}}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:{}}}'),(2482,260,'_wp_attached_file','2025/03/cameras-1.jpg'),(2483,260,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:4:\"file\";s:21:\"2025/03/cameras-1.jpg\";s:8:\"filesize\";i:187755;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"cameras-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12300;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"cameras-1-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104455;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"cameras-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5481;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"cameras-1-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104455;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"cameras-1-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:216579;}}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:{}}}'),(2484,261,'_wp_attached_file','2025/03/GATE-2.jpg'),(2485,261,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1200;s:4:\"file\";s:18:\"2025/03/GATE-2.jpg\";s:8:\"filesize\";i:592728;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"GATE-2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18749;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"GATE-2-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:215139;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"GATE-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7154;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"GATE-2-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118338;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"GATE-2-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:487741;}}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:{}}}'),(2486,262,'_wp_attached_file','2025/03/GATE2.jpg'),(2487,262,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1200;s:4:\"file\";s:17:\"2025/03/GATE2.jpg\";s:8:\"filesize\";i:458709;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"GATE2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13692;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"GATE2-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159461;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"GATE2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5354;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"GATE2-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85752;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:19:\"GATE2-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:375836;}}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:{}}}'),(2488,263,'_wp_attached_file','2025/03/spaces-1.jpg'),(2489,263,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:848;s:6:\"height\";i:1130;s:4:\"file\";s:20:\"2025/03/spaces-1.jpg\";s:8:\"filesize\";i:352323;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"spaces-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19857;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"spaces-1-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:260673;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"spaces-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6960;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"spaces-1-768x1023.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1023;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:260832;}}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:{}}}'),(2492,264,'footnotes',''),(2494,91,'pages_block_components_0_main_heading','VIEW OUR FACILITY LAYOUT MAP!'),(2495,91,'_pages_block_components_0_main_heading','field_67d15adf994da'),(2496,91,'pages_block_components_0_desc','We offer secure and affordable outdoor storage space with Camara , Spaces are outdoor with full perimeter fencing, bright lighting, and secured behind a coded gate with security cameras on site.'),(2497,91,'_pages_block_components_0_desc','field_67d15aee994db'),(2498,91,'pages_block_components_0_more_option_0_about_image','259'),(2499,91,'_pages_block_components_0_more_option_0_about_image','field_67d15b22994dd'),(2500,91,'pages_block_components_0_more_option_0_about_title','10\' x 15\''),(2501,91,'_pages_block_components_0_more_option_0_about_title','field_67d15b42994de'),(2502,91,'pages_block_components_0_more_option_0_about_desc','Great for a car or small trailer. '),(2503,91,'_pages_block_components_0_more_option_0_about_desc','field_67d15b51994df'),(2504,91,'pages_block_components_0_more_option_1_about_image','260'),(2505,91,'_pages_block_components_0_more_option_1_about_image','field_67d15b22994dd'),(2506,91,'pages_block_components_0_more_option_1_about_title','10\' x 20\''),(2507,91,'_pages_block_components_0_more_option_1_about_title','field_67d15b42994de'),(2508,91,'pages_block_components_0_more_option_1_about_desc','Great for utility trailers, small Jon boats, commercial vehicles, and small campers.'),(2509,91,'_pages_block_components_0_more_option_1_about_desc','field_67d15b51994df'),(2510,91,'pages_block_components_0_more_option_2_about_image','261'),(2511,91,'_pages_block_components_0_more_option_2_about_image','field_67d15b22994dd'),(2512,91,'pages_block_components_0_more_option_2_about_title','10\' x 30\''),(2513,91,'_pages_block_components_0_more_option_2_about_title','field_67d15b42994de'),(2514,91,'pages_block_components_0_more_option_2_about_desc','Store that 24\' center console or 25\' Airstream camper! '),(2515,91,'_pages_block_components_0_more_option_2_about_desc','field_67d15b51994df'),(2516,91,'pages_block_components_0_more_option_3_about_image','262'),(2517,91,'_pages_block_components_0_more_option_3_about_image','field_67d15b22994dd'),(2518,91,'pages_block_components_0_more_option_3_about_title','11\' x 40\''),(2519,91,'_pages_block_components_0_more_option_3_about_title','field_67d15b42994de'),(2520,91,'pages_block_components_0_more_option_3_about_desc','Big rig and 5th Wheel Campers rejoice. We got you covered. '),(2521,91,'_pages_block_components_0_more_option_3_about_desc','field_67d15b51994df'),(2522,91,'pages_block_components_0_more_option_4_about_image','263'),(2523,91,'_pages_block_components_0_more_option_4_about_image','field_67d15b22994dd'),(2524,91,'pages_block_components_0_more_option_4_about_title','Lorem ipsum dolor '),(2525,91,'_pages_block_components_0_more_option_4_about_title','field_67d15b42994de'),(2526,91,'pages_block_components_0_more_option_4_about_desc','Lorem ipsum dolor sit amet consectetur adipisicing elit. '),(2527,91,'_pages_block_components_0_more_option_4_about_desc','field_67d15b51994df'),(2528,91,'pages_block_components_0_more_option','5'),(2529,91,'_pages_block_components_0_more_option','field_67d15b07994dc'),(2530,264,'web_banner','255'),(2531,264,'_web_banner','field_67d168d7b12e3'),(2532,264,'pages_block_components','a:1:{i:0;s:15:\"service_section\";}'),(2533,264,'_pages_block_components','field_67ceddb41e1f1'),(2534,264,'pages_block_components_0_main_heading','VIEW OUR FACILITY LAYOUT MAP!'),(2535,264,'_pages_block_components_0_main_heading','field_67d15adf994da'),(2536,264,'pages_block_components_0_desc','We offer secure and affordable outdoor storage space with Camara , Spaces are outdoor with full perimeter fencing, bright lighting, and secured behind a coded gate with security cameras on site.'),(2537,264,'_pages_block_components_0_desc','field_67d15aee994db'),(2538,264,'pages_block_components_0_more_option_0_about_image','259'),(2539,264,'_pages_block_components_0_more_option_0_about_image','field_67d15b22994dd'),(2540,264,'pages_block_components_0_more_option_0_about_title','10\' x 15\''),(2541,264,'_pages_block_components_0_more_option_0_about_title','field_67d15b42994de'),(2542,264,'pages_block_components_0_more_option_0_about_desc','Great for a car or small trailer. '),(2543,264,'_pages_block_components_0_more_option_0_about_desc','field_67d15b51994df'),(2544,264,'pages_block_components_0_more_option_1_about_image','260'),(2545,264,'_pages_block_components_0_more_option_1_about_image','field_67d15b22994dd'),(2546,264,'pages_block_components_0_more_option_1_about_title','10\' x 20\''),(2547,264,'_pages_block_components_0_more_option_1_about_title','field_67d15b42994de'),(2548,264,'pages_block_components_0_more_option_1_about_desc','Great for utility trailers, small Jon boats, commercial vehicles, and small campers.'),(2549,264,'_pages_block_components_0_more_option_1_about_desc','field_67d15b51994df'),(2550,264,'pages_block_components_0_more_option_2_about_image','261'),(2551,264,'_pages_block_components_0_more_option_2_about_image','field_67d15b22994dd'),(2552,264,'pages_block_components_0_more_option_2_about_title','10\' x 30\''),(2553,264,'_pages_block_components_0_more_option_2_about_title','field_67d15b42994de'),(2554,264,'pages_block_components_0_more_option_2_about_desc','Store that 24\' center console or 25\' Airstream camper! '),(2555,264,'_pages_block_components_0_more_option_2_about_desc','field_67d15b51994df'),(2556,264,'pages_block_components_0_more_option_3_about_image','262'),(2557,264,'_pages_block_components_0_more_option_3_about_image','field_67d15b22994dd'),(2558,264,'pages_block_components_0_more_option_3_about_title','11\' x 40\''),(2559,264,'_pages_block_components_0_more_option_3_about_title','field_67d15b42994de'),(2560,264,'pages_block_components_0_more_option_3_about_desc','Big rig and 5th Wheel Campers rejoice. We got you covered. '),(2561,264,'_pages_block_components_0_more_option_3_about_desc','field_67d15b51994df'),(2562,264,'pages_block_components_0_more_option_4_about_image','263'),(2563,264,'_pages_block_components_0_more_option_4_about_image','field_67d15b22994dd'),(2564,264,'pages_block_components_0_more_option_4_about_title','Lorem ipsum dolor '),(2565,264,'_pages_block_components_0_more_option_4_about_title','field_67d15b42994de'),(2566,264,'pages_block_components_0_more_option_4_about_desc','Lorem ipsum dolor sit amet consectetur adipisicing elit. '),(2567,264,'_pages_block_components_0_more_option_4_about_desc','field_67d15b51994df'),(2568,264,'pages_block_components_0_more_option','5'),(2569,264,'_pages_block_components_0_more_option','field_67d15b07994dc'),(2570,265,'_menu_item_type','post_type'),(2571,265,'_menu_item_menu_item_parent','125'),(2572,265,'_menu_item_object_id','89'),(2573,265,'_menu_item_object','page'),(2574,265,'_menu_item_target',''),(2575,265,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2576,265,'_menu_item_xfn',''),(2577,265,'_menu_item_url',''),(2579,107,'_wp_old_date','2025-03-10'),(2580,108,'_wp_old_date','2025-03-10'),(2581,109,'_wp_old_date','2025-03-10'),(2582,110,'_wp_old_date','2025-03-10'),(2583,125,'_wp_old_date','2025-03-10'),(2584,115,'_wp_old_date','2025-03-10'),(2585,126,'_wp_old_date','2025-03-10'),(2586,127,'_wp_old_date','2025-03-10'),(2587,128,'_wp_old_date','2025-03-10'),(2588,129,'_wp_old_date','2025-03-10'),(2589,116,'_wp_old_date','2025-03-10'),(2591,98,'footnotes',''),(2593,271,'footnotes',''),(2595,98,'web_banner',''),(2596,98,'_web_banner','field_67d168d7b12e3'),(2597,98,'pages_block_components_0_main_heading','Lorem ipsum'),(2598,98,'_pages_block_components_0_main_heading','field_67d16e794364d'),(2599,98,'pages_block_components_0_desc',' Lorem ipsum dolor sit amet consectetur adipisicing elit. Adipisci exercitationem qui quasi eaque ex earum! Sequi temporibus '),(2600,98,'_pages_block_components_0_desc','field_67d16e794364e'),(2601,98,'pages_block_components_0_more_option','6'),(2602,98,'_pages_block_components_0_more_option','field_67d16e794364f'),(2603,98,'pages_block_components','a:1:{i:0;s:15:\"accordion_block\";}'),(2604,98,'_pages_block_components','field_67ceddb41e1f1'),(2605,271,'web_banner',''),(2606,271,'_web_banner','field_67d168d7b12e3'),(2607,271,'pages_block_components_0_main_heading',''),(2608,271,'_pages_block_components_0_main_heading','field_67d16e794364d'),(2609,271,'pages_block_components_0_desc',''),(2610,271,'_pages_block_components_0_desc','field_67d16e794364e'),(2611,271,'pages_block_components_0_more_option',''),(2612,271,'_pages_block_components_0_more_option','field_67d16e794364f'),(2613,271,'pages_block_components','a:1:{i:0;s:15:\"accordion_block\";}'),(2614,271,'_pages_block_components','field_67ceddb41e1f1'),(2619,273,'footnotes',''),(2621,98,'pages_block_components_0_more_option_0_question','Where is Settler Storage?'),(2622,98,'_pages_block_components_0_more_option_0_question','field_67d16e7943651'),(2623,98,'pages_block_components_0_more_option_0_answer','
Settler Storage
\r\n
639 Diamond Drive
\r\n
Woodbury, MN 55129
'),(2624,98,'_pages_block_components_0_more_option_0_answer','field_67d16e7943652'),(2625,98,'pages_block_components_0_more_option_1_question','What are the access hours?'),(2626,98,'_pages_block_components_0_more_option_1_question','field_67d16e7943651'),(2627,98,'pages_block_components_0_more_option_1_answer','
At Settler Storage, you have access to your unit daily from 6:00 AM to 10:00 PM.
'),(2628,98,'_pages_block_components_0_more_option_1_answer','field_67d16e7943652'),(2629,98,'pages_block_components_0_more_option_2_question','Am I required to store long-term?'),(2630,98,'_pages_block_components_0_more_option_2_question','field_67d16e7943651'),(2631,98,'pages_block_components_0_more_option_2_answer','
We provide flexible month-to-month lease options. Store with us short or long-term.
'),(2632,98,'_pages_block_components_0_more_option_2_answer','field_67d16e7943652'),(2633,98,'pages_block_components_0_more_option_3_question','How do I pay my storage bill?'),(2634,98,'_pages_block_components_0_more_option_3_question','field_67d16e7943651'),(2635,98,'pages_block_components_0_more_option_3_answer','Pay your storage bill online using a debit or credit card. You can also speak to your facility manager about autopay.'),(2636,98,'_pages_block_components_0_more_option_3_answer','field_67d16e7943652'),(2637,98,'pages_block_components_0_more_option_4_question','What documentation do I need to rent a unit?'),(2638,98,'_pages_block_components_0_more_option_4_question','field_67d16e7943651'),(2639,98,'pages_block_components_0_more_option_4_answer','
A valid form of government-issued ID such as a driver’s license, passport, or state ID.
'),(2640,98,'_pages_block_components_0_more_option_4_answer','field_67d16e7943652'),(2641,98,'pages_block_components_0_more_option_5_question','What items am I not allowed to store?'),(2642,98,'_pages_block_components_0_more_option_5_question','field_67d16e7943651'),(2643,98,'pages_block_components_0_more_option_5_answer','
Perishables, plants, animals, stolen or illegal goods, flammable or hazardous items, combustible items, or liquids.
'),(2644,98,'_pages_block_components_0_more_option_5_answer','field_67d16e7943652'),(2645,273,'web_banner',''),(2646,273,'_web_banner','field_67d168d7b12e3'),(2647,273,'pages_block_components_0_main_heading','Lorem ipsum'),(2648,273,'_pages_block_components_0_main_heading','field_67d16e794364d'),(2649,273,'pages_block_components_0_desc',' Lorem ipsum dolor sit amet consectetur adipisicing elit. Adipisci exercitationem qui quasi eaque ex earum! Sequi temporibus '),(2650,273,'_pages_block_components_0_desc','field_67d16e794364e'),(2651,273,'pages_block_components_0_more_option','6'),(2652,273,'_pages_block_components_0_more_option','field_67d16e794364f'),(2653,273,'pages_block_components','a:1:{i:0;s:15:\"accordion_block\";}'),(2654,273,'_pages_block_components','field_67ceddb41e1f1'),(2655,273,'pages_block_components_0_more_option_0_question','Where is Settler Storage?'),(2656,273,'_pages_block_components_0_more_option_0_question','field_67d16e7943651'),(2657,273,'pages_block_components_0_more_option_0_answer','
Settler Storage
\r\n
639 Diamond Drive
\r\n
Woodbury, MN 55129
'),(2658,273,'_pages_block_components_0_more_option_0_answer','field_67d16e7943652'),(2659,273,'pages_block_components_0_more_option_1_question','What are the access hours?'),(2660,273,'_pages_block_components_0_more_option_1_question','field_67d16e7943651'),(2661,273,'pages_block_components_0_more_option_1_answer','
At Settler Storage, you have access to your unit daily from 6:00 AM to 10:00 PM.
'),(2662,273,'_pages_block_components_0_more_option_1_answer','field_67d16e7943652'),(2663,273,'pages_block_components_0_more_option_2_question','Am I required to store long-term?'),(2664,273,'_pages_block_components_0_more_option_2_question','field_67d16e7943651'),(2665,273,'pages_block_components_0_more_option_2_answer','
We provide flexible month-to-month lease options. Store with us short or long-term.
'),(2666,273,'_pages_block_components_0_more_option_2_answer','field_67d16e7943652'),(2667,273,'pages_block_components_0_more_option_3_question','How do I pay my storage bill?'),(2668,273,'_pages_block_components_0_more_option_3_question','field_67d16e7943651'),(2669,273,'pages_block_components_0_more_option_3_answer','Pay your storage bill online using a debit or credit card. You can also speak to your facility manager about autopay.'),(2670,273,'_pages_block_components_0_more_option_3_answer','field_67d16e7943652'),(2671,273,'pages_block_components_0_more_option_4_question','What documentation do I need to rent a unit?'),(2672,273,'_pages_block_components_0_more_option_4_question','field_67d16e7943651'),(2673,273,'pages_block_components_0_more_option_4_answer','
A valid form of government-issued ID such as a driver’s license, passport, or state ID.
'),(2674,273,'_pages_block_components_0_more_option_4_answer','field_67d16e7943652'),(2675,273,'pages_block_components_0_more_option_5_question','What items am I not allowed to store?'),(2676,273,'_pages_block_components_0_more_option_5_question','field_67d16e7943651'),(2677,273,'pages_block_components_0_more_option_5_answer','
Perishables, plants, animals, stolen or illegal goods, flammable or hazardous items, combustible items, or liquids.
'),(2678,273,'_pages_block_components_0_more_option_5_answer','field_67d16e7943652'),(2680,104,'footnotes',''),(2682,274,'footnotes',''),(2684,104,'web_banner','253'),(2685,104,'_web_banner','field_67d168d7b12e3'),(2686,104,'pages_block_components','a:4:{i:0;s:28:\"block_full_width_text_center\";i:1;s:38:\"block_two_column_left_image_right_text\";i:2;s:38:\"block_two_column_left_text_right_image\";i:3;s:15:\"full_width_text\";}'),(2687,104,'_pages_block_components','field_67ceddb41e1f1'),(2688,104,'_yoast_wpseo_content_score','90'),(2689,274,'web_banner','253'),(2690,274,'_web_banner','field_67d168d7b12e3'),(2691,274,'pages_block_components',''),(2692,274,'_pages_block_components','field_67ceddb41e1f1'),(2697,286,'footnotes',''),(2699,104,'pages_block_components_0_heading','Maplewood'),(2700,104,'_pages_block_components_0_heading','field_67d172e410c9a'),(2701,104,'pages_block_components_0_desc','It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).'),(2702,104,'_pages_block_components_0_desc','field_67d172ee10c9b'),(2703,104,'pages_block_components_1_left_image','263'),(2704,104,'_pages_block_components_1_left_image','field_67d1811810c9e'),(2705,104,'pages_block_components_1_heading','Why do we use it?'),(2706,104,'_pages_block_components_1_heading','field_67d1813510c9f'),(2707,104,'pages_block_components_1_desc','It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).'),(2708,104,'_pages_block_components_1_desc','field_67d1814a10ca0'),(2709,104,'pages_block_components_2_image','234'),(2710,104,'_pages_block_components_2_image','field_67d181709c082'),(2711,104,'pages_block_components_2_heading','Where can I get some?'),(2712,104,'_pages_block_components_2_heading','field_67d181709c083'),(2713,104,'pages_block_components_2_desc','There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.'),(2714,104,'_pages_block_components_2_desc','field_67d181709c084'),(2715,104,'pages_block_components_3_heading','Where does it come from?'),(2716,104,'_pages_block_components_3_heading','field_67d1822576a3c'),(2717,104,'pages_block_components_3_desc','There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.'),(2718,104,'_pages_block_components_3_desc','field_67d1822576a3d'),(2719,286,'web_banner','253'),(2720,286,'_web_banner','field_67d168d7b12e3'),(2721,286,'pages_block_components','a:4:{i:0;s:28:\"block_full_width_text_center\";i:1;s:38:\"block_two_column_left_image_right_text\";i:2;s:38:\"block_two_column_left_text_right_image\";i:3;s:15:\"full_width_text\";}'),(2722,286,'_pages_block_components','field_67ceddb41e1f1'),(2723,286,'pages_block_components_0_heading','Maplewood'),(2724,286,'_pages_block_components_0_heading','field_67d172e410c9a'),(2725,286,'pages_block_components_0_desc','It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).'),(2726,286,'_pages_block_components_0_desc','field_67d172ee10c9b'),(2727,286,'pages_block_components_1_left_image','263'),(2728,286,'_pages_block_components_1_left_image','field_67d1811810c9e'),(2729,286,'pages_block_components_1_heading','Why do we use it?'),(2730,286,'_pages_block_components_1_heading','field_67d1813510c9f'),(2731,286,'pages_block_components_1_desc','It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).'),(2732,286,'_pages_block_components_1_desc','field_67d1814a10ca0'),(2733,286,'pages_block_components_2_image','234'),(2734,286,'_pages_block_components_2_image','field_67d181709c082'),(2735,286,'pages_block_components_2_heading','Where can I get some?'),(2736,286,'_pages_block_components_2_heading','field_67d181709c083'),(2737,286,'pages_block_components_2_desc','There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.'),(2738,286,'_pages_block_components_2_desc','field_67d181709c084'),(2739,286,'pages_block_components_3_heading','Where does it come from?'),(2740,286,'_pages_block_components_3_heading','field_67d1822576a3c'),(2741,286,'pages_block_components_3_desc','There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.'),(2742,286,'_pages_block_components_3_desc','field_67d1822576a3d'),(2744,101,'footnotes',''),(2746,287,'footnotes',''),(2748,101,'web_banner',''),(2749,101,'_web_banner','field_67d168d7b12e3'),(2750,101,'pages_block_components_0_heading','Where does it come from?'),(2751,101,'_pages_block_components_0_heading','field_67d1822576a3c'),(2752,101,'pages_block_components_0_desc','Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum\r\n\r\n \r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum\r\n\r\n \r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum'),(2753,101,'_pages_block_components_0_desc','field_67d1822576a3d'),(2754,101,'pages_block_components','a:1:{i:0;s:15:\"full_width_text\";}'),(2755,101,'_pages_block_components','field_67ceddb41e1f1'),(2756,287,'web_banner',''),(2757,287,'_web_banner','field_67d168d7b12e3'),(2758,287,'pages_block_components_0_heading','Where does it come from?'),(2759,287,'_pages_block_components_0_heading','field_67d1822576a3c'),(2760,287,'pages_block_components_0_desc','Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum\r\n\r\n \r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum\r\n\r\n \r\n\r\nLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum'),(2761,287,'_pages_block_components_0_desc','field_67d1822576a3d'),(2762,287,'pages_block_components','a:1:{i:0;s:15:\"full_width_text\";}'),(2763,287,'_pages_block_components','field_67ceddb41e1f1'),(2765,134,'footnotes',''),(2767,288,'footnotes',''),(2769,134,'web_banner',''),(2770,134,'_web_banner','field_67d168d7b12e3'),(2771,134,'pages_block_components_0_heading','What is Lorem Ipsum?'),(2772,134,'_pages_block_components_0_heading','field_67d172e410c9a'),(2773,134,'pages_block_components_0_desc','It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).\r\n\r\n \r\n\r\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).\r\n\r\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).'),(2774,134,'_pages_block_components_0_desc','field_67d172ee10c9b'),(2775,134,'pages_block_components','a:1:{i:0;s:28:\"block_full_width_text_center\";}'),(2776,134,'_pages_block_components','field_67ceddb41e1f1'),(2777,288,'web_banner',''),(2778,288,'_web_banner','field_67d168d7b12e3'),(2779,288,'pages_block_components_0_heading','What is Lorem Ipsum?'),(2780,288,'_pages_block_components_0_heading','field_67d172e410c9a'),(2781,288,'pages_block_components_0_desc','It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).\r\n\r\n \r\n\r\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).\r\n\r\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).'),(2782,288,'_pages_block_components_0_desc','field_67d172ee10c9b'),(2783,288,'pages_block_components','a:1:{i:0;s:28:\"block_full_width_text_center\";}'),(2784,288,'_pages_block_components','field_67ceddb41e1f1'),(2788,132,'footnotes',''),(2790,290,'footnotes',''),(2792,132,'web_banner',''),(2793,132,'_web_banner','field_67d168d7b12e3'),(2798,132,'pages_block_components','a:2:{i:0;s:28:\"block_full_width_text_center\";i:1;s:15:\"full_width_text\";}'),(2799,132,'_pages_block_components','field_67ceddb41e1f1'),(2800,290,'web_banner',''),(2801,290,'_web_banner','field_67d168d7b12e3'),(2802,290,'pages_block_components_0_heading','What is Lorem Ipsum?'),(2803,290,'_pages_block_components_0_heading','field_67d1822576a3c'),(2804,290,'pages_block_components_0_desc','It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).'),(2805,290,'_pages_block_components_0_desc','field_67d1822576a3d'),(2806,290,'pages_block_components','a:1:{i:0;s:15:\"full_width_text\";}'),(2807,290,'_pages_block_components','field_67ceddb41e1f1'),(2810,291,'footnotes',''),(2812,132,'pages_block_components_0_heading','What is Lorem Ipsum?'),(2813,132,'_pages_block_components_0_heading','field_67d172e410c9a'),(2814,132,'pages_block_components_0_desc','Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.\r\n\r\n \r\n\r\nContrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.'),(2815,132,'_pages_block_components_0_desc','field_67d172ee10c9b'),(2816,132,'pages_block_components_1_heading','What is Lorem Ipsum?'),(2817,132,'_pages_block_components_1_heading','field_67d1822576a3c'),(2818,132,'pages_block_components_1_desc','It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).'),(2819,132,'_pages_block_components_1_desc','field_67d1822576a3d'),(2820,291,'web_banner',''),(2821,291,'_web_banner','field_67d168d7b12e3'),(2822,291,'pages_block_components','a:2:{i:0;s:28:\"block_full_width_text_center\";i:1;s:15:\"full_width_text\";}'),(2823,291,'_pages_block_components','field_67ceddb41e1f1'),(2824,291,'pages_block_components_0_heading','What is Lorem Ipsum?'),(2825,291,'_pages_block_components_0_heading','field_67d172e410c9a'),(2826,291,'pages_block_components_0_desc','Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.\r\n\r\n \r\n\r\nContrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.'),(2827,291,'_pages_block_components_0_desc','field_67d172ee10c9b'),(2828,291,'pages_block_components_1_heading','What is Lorem Ipsum?'),(2829,291,'_pages_block_components_1_heading','field_67d1822576a3c'),(2830,291,'pages_block_components_1_desc','It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).'),(2831,291,'_pages_block_components_1_desc','field_67d1822576a3d'); /*!40000 ALTER TABLE `I09Mpostmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `I09Mposts` -- DROP TABLE IF EXISTS `I09Mposts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `I09Mposts` ( `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 NOT NULL, `post_title` text NOT NULL, `post_excerpt` text NOT NULL, `post_status` varchar(20) NOT NULL DEFAULT 'publish', `comment_status` varchar(20) NOT NULL DEFAULT 'open', `ping_status` varchar(20) NOT NULL DEFAULT 'open', `post_password` varchar(255) NOT NULL DEFAULT '', `post_name` varchar(200) NOT NULL DEFAULT '', `to_ping` text NOT NULL, `pinged` text 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 NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0, `guid` varchar(255) NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT 0, `post_type` varchar(20) NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) 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=292 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `I09Mposts` -- LOCK TABLES `I09Mposts` WRITE; /*!40000 ALTER TABLE `I09Mposts` DISABLE KEYS */; INSERT INTO `I09Mposts` VALUES (1,1,'2025-03-04 22:21:23','2025-03-04 22:21:23','\n

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

\n','Hello world!','','publish','open','open','','hello-world','','','2025-03-04 22:21:23','2025-03-04 22:21:23','',0,'https://nomudrvstorage.com/?p=1',0,'post','',1),(2,1,'2025-03-04 22:21:23','2025-03-04 22:21:23','\n

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:

\n\n\n\n

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ña coladas. (And gettin\' caught in the rain.)

\n\n\n\n

...or something like this:

\n\n\n\n

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.

\n\n\n\n

As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!

\n','Sample Page','','publish','closed','open','','sample-page','','','2025-03-04 22:21:23','2025-03-04 22:21:23','',0,'https://nomudrvstorage.com/?page_id=2',0,'page','',0),(3,1,'2025-03-04 22:21:23','2025-03-04 22:21:23','\n

Who we are

\n\n\n

Suggested text: Our website address is: https://nomudrvstorage.com.

\n\n\n

Comments

\n\n\n

Suggested text: When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.

\n\n\n

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.

\n\n\n

Media

\n\n\n

Suggested text: 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.

\n\n\n

Cookies

\n\n\n

Suggested text: 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.

\n\n\n

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.

\n\n\n

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 "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.

\n\n\n

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.

\n\n\n

Embedded content from other websites

\n\n\n

Suggested text: 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.

\n\n\n

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.

\n\n\n

Who we share your data with

\n\n\n

Suggested text: If you request a password reset, your IP address will be included in the reset email.

\n\n\n

How long we retain your data

\n\n\n

Suggested text: 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.

\n\n\n

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.

\n\n\n

What rights you have over your data

\n\n\n

Suggested text: 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.

\n\n\n

Where your data is sent

\n\n\n

Suggested text: Visitor comments may be checked through an automated spam detection service.

\n\n','Privacy Policy','','draft','closed','open','','privacy-policy','','','2025-03-04 22:21:23','2025-03-04 22:21:23','',0,'https://nomudrvstorage.com/?page_id=3',0,'page','',0),(4,0,'2025-03-04 22:21:24','2025-03-04 22:21:24','','Navigation','','publish','closed','closed','','navigation','','','2025-03-04 22:21:24','2025-03-04 22:21:24','',0,'https://nomudrvstorage.com/2025/03/04/navigation/',0,'wp_navigation','',0),(7,1,'2025-03-05 15:53:56','2025-03-05 15:53:56','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2025-03-05 15:53:56','2025-03-05 15:53:56','',0,'https://nomudrvstorage.com/wp-content/uploads/2025/03/woocommerce-placeholder.png',0,'attachment','image/png',0),(14,1,'2025-03-05 15:55:01','2025-03-05 15:55:01','{\"fontFamily\":\"Inter, sans-serif\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/inter/inter.svg\"}','Inter','','publish','closed','closed','','inter','','','2025-03-05 15:55:01','2025-03-05 15:55:01','',0,'https://nomudrvstorage.com/2025/03/05/inter/',0,'wp_font_family','',0),(15,1,'2025-03-05 15:55:01','2025-03-05 15:55:01','{\"fontFamily\":\"\\\"Bodoni Moda\\\", serif\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/bodoni-moda/bodoni-moda.svg\"}','Bodoni Moda','','publish','closed','closed','','bodoni-moda','','','2025-03-05 15:55:01','2025-03-05 15:55:01','',0,'https://nomudrvstorage.com/2025/03/05/bodoni-moda/',0,'wp_font_family','',0),(16,1,'2025-03-05 15:55:01','2025-03-05 15:55:01','{\"fontFamily\":\"Overpass, sans-serif\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/overpass/overpass.svg\"}','Overpass','','publish','closed','closed','','overpass','','','2025-03-05 15:55:01','2025-03-05 15:55:01','',0,'https://nomudrvstorage.com/2025/03/05/overpass/',0,'wp_font_family','',0),(17,1,'2025-03-05 15:55:01','2025-03-05 15:55:01','{\"fontFamily\":\"\\\"Albert Sans\\\", sans-serif\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/albert-sans/albert-sans.svg\"}','Albert Sans','','publish','closed','closed','','albert-sans','','','2025-03-05 15:55:01','2025-03-05 15:55:01','',0,'https://nomudrvstorage.com/2025/03/05/albert-sans/',0,'wp_font_family','',0),(18,1,'2025-03-05 15:55:01','2025-03-05 15:55:01','{\"fontFamily\":\"Lora, serif\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/lora/lora.svg\"}','Lora','','publish','closed','closed','','lora','','','2025-03-05 15:55:01','2025-03-05 15:55:01','',0,'https://nomudrvstorage.com/2025/03/05/lora/',0,'wp_font_family','',0),(19,1,'2025-03-05 15:55:01','2025-03-05 15:55:01','{\"fontFamily\":\"Montserrat, sans-serif\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/montserrat/montserrat.svg\"}','Montserrat','','publish','closed','closed','','montserrat','','','2025-03-05 15:55:01','2025-03-05 15:55:01','',0,'https://nomudrvstorage.com/2025/03/05/montserrat/',0,'wp_font_family','',0),(20,1,'2025-03-05 15:55:01','2025-03-05 15:55:01','{\"fontFamily\":\"Arvo, serif\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/arvo/arvo.svg\"}','Arvo','','publish','closed','closed','','arvo','','','2025-03-05 15:55:01','2025-03-05 15:55:01','',0,'https://nomudrvstorage.com/2025/03/05/arvo/',0,'wp_font_family','',0),(21,1,'2025-03-05 15:55:01','2025-03-05 15:55:01','{\"fontFamily\":\"Rubik, sans-serif\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/rubik/rubik.svg\"}','Rubik','','publish','closed','closed','','rubik','','','2025-03-05 15:55:01','2025-03-05 15:55:01','',0,'https://nomudrvstorage.com/2025/03/05/rubik/',0,'wp_font_family','',0),(22,1,'2025-03-05 15:55:01','2025-03-05 15:55:01','{\"fontFamily\":\"Newsreader, serif\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/newsreader/newsreader.svg\"}','Newsreader','','publish','closed','closed','','newsreader','','','2025-03-05 15:55:01','2025-03-05 15:55:01','',0,'https://nomudrvstorage.com/2025/03/05/newsreader/',0,'wp_font_family','',0),(23,1,'2025-03-05 15:55:01','2025-03-05 15:55:01','{\"fontFamily\":\"Cormorant, serif\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/cormorant/cormorant.svg\"}','Cormorant','','publish','closed','closed','','cormorant','','','2025-03-05 15:55:01','2025-03-05 15:55:01','',0,'https://nomudrvstorage.com/2025/03/05/cormorant/',0,'wp_font_family','',0),(24,1,'2025-03-05 15:55:01','2025-03-05 15:55:01','{\"fontFamily\":\"\\\"Work Sans\\\", sans-serif\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/work-sans/work-sans.svg\"}','Work Sans','','publish','closed','closed','','work-sans','','','2025-03-05 15:55:01','2025-03-05 15:55:01','',0,'https://nomudrvstorage.com/2025/03/05/work-sans/',0,'wp_font_family','',0),(25,1,'2025-03-05 15:55:01','2025-03-05 15:55:01','{\"fontFamily\":\"Raleway, sans-serif\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/raleway/raleway.svg\"}','Raleway','','publish','closed','closed','','raleway','','','2025-03-05 15:55:01','2025-03-05 15:55:01','',0,'https://nomudrvstorage.com/2025/03/05/raleway/',0,'wp_font_family','',0),(26,1,'2025-03-05 15:55:01','2025-03-05 15:55:01','{\"fontFamily\":\"Inter\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/inter/inter-400-normal.svg\"}','inter;normal;400;100%;U+0-10FFFF','','publish','closed','closed','','internormal400100u0-10ffff','','','2025-03-05 15:55:01','2025-03-05 15:55:01','',14,'https://nomudrvstorage.com/2025/03/05/internormal400100u0-10ffff/',0,'wp_font_face','',0),(27,1,'2025-03-05 15:55:02','2025-03-05 15:55:02','{\"fontFamily\":\"Inter\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/inter/inter-500-normal.svg\"}','inter;normal;500;100%;U+0-10FFFF','','publish','closed','closed','','internormal500100u0-10ffff','','','2025-03-05 15:55:02','2025-03-05 15:55:02','',14,'https://nomudrvstorage.com/2025/03/05/internormal500100u0-10ffff/',0,'wp_font_face','',0),(28,1,'2025-03-05 15:55:02','2025-03-05 15:55:02','{\"fontFamily\":\"Inter\",\"fontStyle\":\"normal\",\"fontWeight\":\"600\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/inter/inter-600-normal.svg\"}','inter;normal;600;100%;U+0-10FFFF','','publish','closed','closed','','internormal600100u0-10ffff','','','2025-03-05 15:55:02','2025-03-05 15:55:02','',14,'https://nomudrvstorage.com/2025/03/05/internormal600100u0-10ffff/',0,'wp_font_face','',0),(29,1,'2025-03-05 15:55:02','2025-03-05 15:55:02','{\"fontFamily\":\"Inter\",\"fontStyle\":\"italic\",\"fontWeight\":\"400\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTc2dthiJ-Ek-7MeA.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/inter/inter-400-italic.svg\"}','inter;italic;400;100%;U+0-10FFFF','','publish','closed','closed','','interitalic400100u0-10ffff','','','2025-03-05 15:55:02','2025-03-05 15:55:02','',14,'https://nomudrvstorage.com/2025/03/05/interitalic400100u0-10ffff/',0,'wp_font_face','',0),(30,1,'2025-03-05 15:55:03','2025-03-05 15:55:03','{\"fontFamily\":\"Inter\",\"fontStyle\":\"italic\",\"fontWeight\":\"500\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTc69thiJ-Ek-7MeA.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/inter/inter-500-italic.svg\"}','inter;italic;500;100%;U+0-10FFFF','','publish','closed','closed','','interitalic500100u0-10ffff','','','2025-03-05 15:55:03','2025-03-05 15:55:03','',14,'https://nomudrvstorage.com/2025/03/05/interitalic500100u0-10ffff/',0,'wp_font_face','',0),(31,1,'2025-03-05 15:55:03','2025-03-05 15:55:03','{\"fontFamily\":\"Inter\",\"fontStyle\":\"italic\",\"fontWeight\":\"600\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTcB9xhiJ-Ek-7MeA.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/inter/inter-600-italic.svg\"}','inter;italic;600;100%;U+0-10FFFF','','publish','closed','closed','','interitalic600100u0-10ffff','','','2025-03-05 15:55:03','2025-03-05 15:55:03','',14,'https://nomudrvstorage.com/2025/03/05/interitalic600100u0-10ffff/',0,'wp_font_face','',0),(32,1,'2025-03-05 15:55:03','2025-03-05 15:55:03','{\"fontFamily\":\"\\\"Bodoni Moda\\\"\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oU7awIVytVjMYwE.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/bodoni-moda/bodoni-moda-400-normal.svg\"}','bodoni moda;normal;400;100%;U+0-10FFFF','','publish','closed','closed','','bodoni-modanormal400100u0-10ffff','','','2025-03-05 15:55:03','2025-03-05 15:55:03','',15,'https://nomudrvstorage.com/2025/03/05/bodoni-modanormal400100u0-10ffff/',0,'wp_font_face','',0),(33,1,'2025-03-05 15:55:04','2025-03-05 15:55:04','{\"fontFamily\":\"\\\"Bodoni Moda\\\"\",\"fontStyle\":\"italic\",\"fontWeight\":\"400\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZKMN4tHrJcwHqoQ.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/bodoni-moda/bodoni-moda-400-italic.svg\"}','bodoni moda;italic;400;100%;U+0-10FFFF','','publish','closed','closed','','bodoni-modaitalic400100u0-10ffff','','','2025-03-05 15:55:04','2025-03-05 15:55:04','',15,'https://nomudrvstorage.com/2025/03/05/bodoni-modaitalic400100u0-10ffff/',0,'wp_font_face','',0),(34,1,'2025-03-05 15:55:04','2025-03-05 15:55:04','{\"fontFamily\":\"Overpass\",\"fontStyle\":\"normal\",\"fontWeight\":\"300\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/qFda35WCmI96Ajtm83upeyoaX6QPnlo6ovPrPJCLtce-og.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/overpass/overpass-300-normal.svg\"}','overpass;normal;300;100%;U+0-10FFFF','','publish','closed','closed','','overpassnormal300100u0-10ffff','','','2025-03-05 15:55:04','2025-03-05 15:55:04','',16,'https://nomudrvstorage.com/2025/03/05/overpassnormal300100u0-10ffff/',0,'wp_font_face','',0),(35,1,'2025-03-05 15:55:04','2025-03-05 15:55:04','{\"fontFamily\":\"Overpass\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PPrPJCLtce-og.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/overpass/overpass-400-normal.svg\"}','overpass;normal;400;100%;U+0-10FFFF','','publish','closed','closed','','overpassnormal400100u0-10ffff','','','2025-03-05 15:55:04','2025-03-05 15:55:04','',16,'https://nomudrvstorage.com/2025/03/05/overpassnormal400100u0-10ffff/',0,'wp_font_face','',0),(36,1,'2025-03-05 15:55:04','2025-03-05 15:55:04','{\"fontFamily\":\"Overpass\",\"fontStyle\":\"italic\",\"fontWeight\":\"300\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLBdepqKl8Kuosgz.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/overpass/overpass-300-italic.svg\"}','overpass;italic;300;100%;U+0-10FFFF','','publish','closed','closed','','overpassitalic300100u0-10ffff','','','2025-03-05 15:55:04','2025-03-05 15:55:04','',16,'https://nomudrvstorage.com/2025/03/05/overpassitalic300100u0-10ffff/',0,'wp_font_face','',0),(37,1,'2025-03-05 15:55:05','2025-03-05 15:55:05','{\"fontFamily\":\"Overpass\",\"fontStyle\":\"italic\",\"fontWeight\":\"400\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLADepqKl8Kuosgz.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/overpass/overpass-400-italic.svg\"}','overpass;italic;400;100%;U+0-10FFFF','','publish','closed','closed','','overpassitalic400100u0-10ffff','','','2025-03-05 15:55:05','2025-03-05 15:55:05','',16,'https://nomudrvstorage.com/2025/03/05/overpassitalic400100u0-10ffff/',0,'wp_font_face','',0),(38,1,'2025-03-05 15:55:05','2025-03-05 15:55:05','{\"fontFamily\":\"\\\"Albert Sans\\\"\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHTJT_qY32TxAj1g.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/albert-sans/albert-sans-700-normal.svg\"}','albert sans;normal;700;100%;U+0-10FFFF','','publish','closed','closed','','albert-sansnormal700100u0-10ffff','','','2025-03-05 15:55:05','2025-03-05 15:55:05','',17,'https://nomudrvstorage.com/2025/03/05/albert-sansnormal700100u0-10ffff/',0,'wp_font_face','',0),(39,1,'2025-03-05 15:55:05','2025-03-05 15:55:05','{\"fontFamily\":\"\\\"Albert Sans\\\"\",\"fontStyle\":\"italic\",\"fontWeight\":\"700\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9Dw6If3bRUz1r5t.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/albert-sans/albert-sans-700-italic.svg\"}','albert sans;italic;700;100%;U+0-10FFFF','','publish','closed','closed','','albert-sansitalic700100u0-10ffff','','','2025-03-05 15:55:05','2025-03-05 15:55:05','',17,'https://nomudrvstorage.com/2025/03/05/albert-sansitalic700100u0-10ffff/',0,'wp_font_face','',0),(40,1,'2025-03-05 15:55:05','2025-03-05 15:55:05','{\"fontFamily\":\"Lora\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/0QI6MX1D_JOuGQbT0gvTJPa787weuyJDmKxemMeZ.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/lora/lora-400-normal.svg\"}','lora;normal;400;100%;U+0-10FFFF','','publish','closed','closed','','loranormal400100u0-10ffff','','','2025-03-05 15:55:05','2025-03-05 15:55:05','',18,'https://nomudrvstorage.com/2025/03/05/loranormal400100u0-10ffff/',0,'wp_font_face','',0),(41,1,'2025-03-05 15:55:06','2025-03-05 15:55:06','{\"fontFamily\":\"Lora\",\"fontStyle\":\"italic\",\"fontWeight\":\"400\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-MoFkq18ndeZzZ0.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/lora/lora-400-italic.svg\"}','lora;italic;400;100%;U+0-10FFFF','','publish','closed','closed','','loraitalic400100u0-10ffff','','','2025-03-05 15:55:06','2025-03-05 15:55:06','',18,'https://nomudrvstorage.com/2025/03/05/loraitalic400100u0-10ffff/',0,'wp_font_face','',0),(42,1,'2025-03-05 15:55:06','2025-03-05 15:55:06','{\"fontFamily\":\"Montserrat\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew7Y3tcoqK5.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/montserrat/montserrat-500-normal.svg\"}','montserrat;normal;500;100%;U+0-10FFFF','','publish','closed','closed','','montserratnormal500100u0-10ffff','','','2025-03-05 15:55:06','2025-03-05 15:55:06','',19,'https://nomudrvstorage.com/2025/03/05/montserratnormal500100u0-10ffff/',0,'wp_font_face','',0),(43,1,'2025-03-05 15:55:06','2025-03-05 15:55:06','{\"fontFamily\":\"Montserrat\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w7Y3tcoqK5.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/montserrat/montserrat-700-normal.svg\"}','montserrat;normal;700;100%;U+0-10FFFF','','publish','closed','closed','','montserratnormal700100u0-10ffff','','','2025-03-05 15:55:06','2025-03-05 15:55:06','',19,'https://nomudrvstorage.com/2025/03/05/montserratnormal700100u0-10ffff/',0,'wp_font_face','',0),(44,1,'2025-03-05 15:55:07','2025-03-05 15:55:07','{\"fontFamily\":\"Montserrat\",\"fontStyle\":\"italic\",\"fontWeight\":\"500\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq5Z9aXp-p7K5ILg.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/montserrat/montserrat-500-italic.svg\"}','montserrat;italic;500;100%;U+0-10FFFF','','publish','closed','closed','','montserratitalic500100u0-10ffff','','','2025-03-05 15:55:07','2025-03-05 15:55:07','',19,'https://nomudrvstorage.com/2025/03/05/montserratitalic500100u0-10ffff/',0,'wp_font_face','',0),(45,1,'2025-03-05 15:55:07','2025-03-05 15:55:07','{\"fontFamily\":\"Montserrat\",\"fontStyle\":\"italic\",\"fontWeight\":\"700\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq0N6aXp-p7K5ILg.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/montserrat/montserrat-700-italic.svg\"}','montserrat;italic;700;100%;U+0-10FFFF','','publish','closed','closed','','montserratitalic700100u0-10ffff','','','2025-03-05 15:55:07','2025-03-05 15:55:07','',19,'https://nomudrvstorage.com/2025/03/05/montserratitalic700100u0-10ffff/',0,'wp_font_face','',0),(46,1,'2025-03-05 15:55:07','2025-03-05 15:55:07','{\"fontFamily\":\"Arvo\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/tDbD2oWUg0MKmSUa7Lzr7vs.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/arvo/arvo-400-normal.svg\"}','arvo;normal;400;100%;U+0-10FFFF','','publish','closed','closed','','arvonormal400100u0-10ffff','','','2025-03-05 15:55:07','2025-03-05 15:55:07','',20,'https://nomudrvstorage.com/2025/03/05/arvonormal400100u0-10ffff/',0,'wp_font_face','',0),(47,1,'2025-03-05 15:55:07','2025-03-05 15:55:07','{\"fontFamily\":\"Arvo\",\"fontStyle\":\"italic\",\"fontWeight\":\"400\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/tDbN2oWUg0MKqSIQ7Z7u_vvijQ.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/arvo/arvo-400-italic.svg\"}','arvo;italic;400;100%;U+0-10FFFF','','publish','closed','closed','','arvoitalic400100u0-10ffff','','','2025-03-05 15:55:07','2025-03-05 15:55:07','',20,'https://nomudrvstorage.com/2025/03/05/arvoitalic400100u0-10ffff/',0,'wp_font_face','',0),(48,1,'2025-03-05 15:55:08','2025-03-05 15:55:08','{\"fontFamily\":\"Rubik\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4i1VU80V4bVkA.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/rubik/rubik-400-normal.svg\"}','rubik;normal;400;100%;U+0-10FFFF','','publish','closed','closed','','rubiknormal400100u0-10ffff','','','2025-03-05 15:55:08','2025-03-05 15:55:08','',21,'https://nomudrvstorage.com/2025/03/05/rubiknormal400100u0-10ffff/',0,'wp_font_face','',0),(49,1,'2025-03-05 15:55:08','2025-03-05 15:55:08','{\"fontFamily\":\"Rubik\",\"fontStyle\":\"normal\",\"fontWeight\":\"800\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-h4-1VU80V4bVkA.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/rubik/rubik-800-normal.svg\"}','rubik;normal;800;100%;U+0-10FFFF','','publish','closed','closed','','rubiknormal800100u0-10ffff','','','2025-03-05 15:55:08','2025-03-05 15:55:08','',21,'https://nomudrvstorage.com/2025/03/05/rubiknormal800100u0-10ffff/',0,'wp_font_face','',0),(50,1,'2025-03-05 15:55:08','2025-03-05 15:55:08','{\"fontFamily\":\"Rubik\",\"fontStyle\":\"italic\",\"fontWeight\":\"400\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tdE0U1dYPFkJ1O.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/rubik/rubik-400-italic.svg\"}','rubik;italic;400;100%;U+0-10FFFF','','publish','closed','closed','','rubikitalic400100u0-10ffff','','','2025-03-05 15:55:08','2025-03-05 15:55:08','',21,'https://nomudrvstorage.com/2025/03/05/rubikitalic400100u0-10ffff/',0,'wp_font_face','',0),(51,1,'2025-03-05 15:55:09','2025-03-05 15:55:09','{\"fontFamily\":\"Rubik\",\"fontStyle\":\"italic\",\"fontWeight\":\"800\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8vdFEU1dYPFkJ1O.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/rubik/rubik-800-italic.svg\"}','rubik;italic;800;100%;U+0-10FFFF','','publish','closed','closed','','rubikitalic800100u0-10ffff','','','2025-03-05 15:55:09','2025-03-05 15:55:09','',21,'https://nomudrvstorage.com/2025/03/05/rubikitalic800100u0-10ffff/',0,'wp_font_face','',0),(52,1,'2025-03-05 15:55:09','2025-03-05 15:55:09','{\"fontFamily\":\"Newsreader\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438weI_ACexEPjCggA.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/newsreader/newsreader-400-normal.svg\"}','newsreader;normal;400;100%;U+0-10FFFF','','publish','closed','closed','','newsreadernormal400100u0-10ffff','','','2025-03-05 15:55:09','2025-03-05 15:55:09','',22,'https://nomudrvstorage.com/2025/03/05/newsreadernormal400100u0-10ffff/',0,'wp_font_face','',0),(53,1,'2025-03-05 15:55:09','2025-03-05 15:55:09','{\"fontFamily\":\"Newsreader\",\"fontStyle\":\"italic\",\"fontWeight\":\"400\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMwoT-ZFHDWwgECi.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/newsreader/newsreader-400-italic.svg\"}','newsreader;italic;400;100%;U+0-10FFFF','','publish','closed','closed','','newsreaderitalic400100u0-10ffff','','','2025-03-05 15:55:09','2025-03-05 15:55:09','',22,'https://nomudrvstorage.com/2025/03/05/newsreaderitalic400100u0-10ffff/',0,'wp_font_face','',0),(54,1,'2025-03-05 15:55:10','2025-03-05 15:55:10','{\"fontFamily\":\"Cormorant\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFhFTQ7Fg7A2uwYs.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/cormorant/cormorant-400-normal.svg\"}','cormorant;normal;400;100%;U+0-10FFFF','','publish','closed','closed','','cormorantnormal400100u0-10ffff','','','2025-03-05 15:55:10','2025-03-05 15:55:10','',23,'https://nomudrvstorage.com/2025/03/05/cormorantnormal400100u0-10ffff/',0,'wp_font_face','',0),(55,1,'2025-03-05 15:55:10','2025-03-05 15:55:10','{\"fontFamily\":\"Cormorant\",\"fontStyle\":\"normal\",\"fontWeight\":\"500\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFiNTQ7Fg7A2uwYs.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/cormorant/cormorant-500-normal.svg\"}','cormorant;normal;500;100%;U+0-10FFFF','','publish','closed','closed','','cormorantnormal500100u0-10ffff','','','2025-03-05 15:55:10','2025-03-05 15:55:10','',23,'https://nomudrvstorage.com/2025/03/05/cormorantnormal500100u0-10ffff/',0,'wp_font_face','',0),(56,1,'2025-03-05 15:55:10','2025-03-05 15:55:10','{\"fontFamily\":\"Cormorant\",\"fontStyle\":\"italic\",\"fontWeight\":\"400\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQq_dq7S-r0YvxdA.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/cormorant/cormorant-400-italic.svg\"}','cormorant;italic;400;100%;U+0-10FFFF','','publish','closed','closed','','cormorantitalic400100u0-10ffff','','','2025-03-05 15:55:10','2025-03-05 15:55:10','',23,'https://nomudrvstorage.com/2025/03/05/cormorantitalic400100u0-10ffff/',0,'wp_font_face','',0),(57,1,'2025-03-05 15:55:10','2025-03-05 15:55:10','{\"fontFamily\":\"Cormorant\",\"fontStyle\":\"italic\",\"fontWeight\":\"500\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQmfdq7S-r0YvxdA.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/cormorant/cormorant-500-italic.svg\"}','cormorant;italic;500;100%;U+0-10FFFF','','publish','closed','closed','','cormorantitalic500100u0-10ffff','','','2025-03-05 15:55:10','2025-03-05 15:55:10','',23,'https://nomudrvstorage.com/2025/03/05/cormorantitalic500100u0-10ffff/',0,'wp_font_face','',0),(58,1,'2025-03-05 15:55:11','2025-03-05 15:55:11','{\"fontFamily\":\"\\\"Work Sans\\\"\",\"fontStyle\":\"normal\",\"fontWeight\":\"400\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXNi0Dp6_cOyA.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/work-sans/work-sans-400-normal.svg\"}','work sans;normal;400;100%;U+0-10FFFF','','publish','closed','closed','','work-sansnormal400100u0-10ffff','','','2025-03-05 15:55:11','2025-03-05 15:55:11','',24,'https://nomudrvstorage.com/2025/03/05/work-sansnormal400100u0-10ffff/',0,'wp_font_face','',0),(59,1,'2025-03-05 15:55:11','2025-03-05 15:55:11','{\"fontFamily\":\"\\\"Work Sans\\\"\",\"fontStyle\":\"italic\",\"fontWeight\":\"400\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3msJpo3ZKyDSQQ.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/work-sans/work-sans-400-italic.svg\"}','work sans;italic;400;100%;U+0-10FFFF','','publish','closed','closed','','work-sansitalic400100u0-10ffff','','','2025-03-05 15:55:11','2025-03-05 15:55:11','',24,'https://nomudrvstorage.com/2025/03/05/work-sansitalic400100u0-10ffff/',0,'wp_font_face','',0),(60,1,'2025-03-05 15:55:11','2025-03-05 15:55:11','{\"fontFamily\":\"Raleway\",\"fontStyle\":\"normal\",\"fontWeight\":\"700\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVs9pYCKNLA3JC9c.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/raleway/raleway-700-normal.svg\"}','raleway;normal;700;100%;U+0-10FFFF','','publish','closed','closed','','ralewaynormal700100u0-10ffff','','','2025-03-05 15:55:11','2025-03-05 15:55:11','',25,'https://nomudrvstorage.com/2025/03/05/ralewaynormal700100u0-10ffff/',0,'wp_font_face','',0),(61,1,'2025-03-05 15:55:12','2025-03-05 15:55:12','{\"fontFamily\":\"Raleway\",\"fontStyle\":\"italic\",\"fontWeight\":\"700\",\"src\":\"https://nomudrvstorage.com/wp-content/uploads/fonts/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4Y_LPrEVIT9c2c8.woff2\",\"preview\":\"https://s.w.org/images/fonts/wp-6.7/previews/raleway/raleway-700-italic.svg\"}','raleway;italic;700;100%;U+0-10FFFF','','publish','closed','closed','','ralewayitalic700100u0-10ffff','','','2025-03-05 15:55:12','2025-03-05 15:55:12','',25,'https://nomudrvstorage.com/2025/03/05/ralewayitalic700100u0-10ffff/',0,'wp_font_face','',0),(62,1,'2025-03-05 16:12:38','2025-03-05 16:12:38','Test','Boat','','publish','closed','closed','','boat','','','2025-03-05 16:12:38','2025-03-05 16:12:38','',0,'https://nomudrvstorage.com/?post_type=storage_unit&p=62',0,'storage_unit','',0),(63,1,'2025-03-10 02:37:42','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2025-03-10 02:37:42','0000-00-00 00:00:00','',0,'https://nomudrvstorage.com/?post_type=acf-field-group&p=63',0,'acf-field-group','',0),(69,1,'2025-03-10 09:52:29','2025-03-10 09:52:29','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:12:\"options_page\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:12:\"site-setting\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;}','Site Setting','site-setting','publish','closed','closed','','group_67ceb64f0ec72','','','2025-03-10 12:45:37','2025-03-10 12:45:37','',0,'https://nomudrvstorage.com/?post_type=acf-field-group&p=69',0,'acf-field-group','',0),(70,1,'2025-03-10 09:52:29','2025-03-10 09:52:29','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:1;s:12:\"preview_size\";s:6:\"medium\";}','Header Logo','header_logo','publish','closed','closed','','field_67ceb64e21ed7','','','2025-03-10 10:03:54','2025-03-10 10:03:54','',69,'https://nomudrvstorage.com/?post_type=acf-field&p=70',0,'acf-field','',0),(71,1,'2025-03-10 09:52:50','2025-03-10 09:52:50','a:16:{s:10:\"page_title\";s:12:\"Site Setting\";s:9:\"menu_slug\";s:12:\"site-setting\";s:11:\"parent_slug\";s:4:\"none\";s:22:\"advanced_configuration\";b:0;s:8:\"icon_url\";s:0:\"\";s:10:\"menu_title\";s:0:\"\";s:8:\"position\";N;s:8:\"redirect\";b:0;s:11:\"description\";s:0:\"\";s:9:\"menu_icon\";a:0:{}s:13:\"update_button\";s:6:\"Update\";s:15:\"updated_message\";s:15:\"Options Updated\";s:10:\"capability\";s:10:\"edit_posts\";s:12:\"data_storage\";s:7:\"options\";s:7:\"post_id\";s:0:\"\";s:8:\"autoload\";b:0;}','Site Setting','site-setting','publish','closed','closed','','ui_options_page_67ceb6726e90b','','','2025-03-10 09:52:50','2025-03-10 09:52:50','',0,'https://nomudrvstorage.com/?post_type=acf-ui-options-page&p=71',0,'acf-ui-options-page','',0),(72,1,'2025-03-10 10:03:54','2025-03-10 10:03:54','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Footer Logo','footer_logo','publish','closed','closed','','field_67ceb85ff75ed','','','2025-03-10 10:03:54','2025-03-10 10:03:54','',69,'https://nomudrvstorage.com/?post_type=acf-field&p=72',1,'acf-field','',0),(73,1,'2025-03-10 10:03:54','2025-03-10 10:03:54','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Footer Email','footer_email','publish','closed','closed','','field_67ceb87cf75ee','','','2025-03-10 10:03:54','2025-03-10 10:03:54','',69,'https://nomudrvstorage.com/?post_type=acf-field&p=73',2,'acf-field','',0),(74,1,'2025-03-10 10:03:54','2025-03-10 10:03:54','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Footer Phone','footer_phone','publish','closed','closed','','field_67ceb899f75ef','','','2025-03-10 10:03:54','2025-03-10 10:03:54','',69,'https://nomudrvstorage.com/?post_type=acf-field&p=74',3,'acf-field','',0),(75,1,'2025-03-10 10:03:54','2025-03-10 10:03:54','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Footer Address','footer_address','publish','closed','closed','','field_67ceb8b1f75f0','','','2025-03-10 10:03:54','2025-03-10 10:03:54','',69,'https://nomudrvstorage.com/?post_type=acf-field&p=75',4,'acf-field','',0),(76,1,'2025-03-10 10:03:54','2025-03-10 10:03:54','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Footer Copyright','footer_copyright','publish','closed','closed','','field_67ceb8b5f75f1','','','2025-03-10 10:03:54','2025-03-10 10:03:54','',69,'https://nomudrvstorage.com/?post_type=acf-field&p=76',5,'acf-field','',0),(77,1,'2025-03-10 10:03:54','2025-03-10 10:03:54','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Footer Designed By','footer_designed_by','publish','closed','closed','','field_67ceb8cbf75f2','','','2025-03-10 10:03:54','2025-03-10 10:03:54','',69,'https://nomudrvstorage.com/?post_type=acf-field&p=77',6,'acf-field','',0),(78,1,'2025-03-10 10:03:54','2025-03-10 10:03:54','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Facebook Url','facebook_url','publish','closed','closed','','field_67ceb8d9f75f3','','','2025-03-10 10:03:54','2025-03-10 10:03:54','',69,'https://nomudrvstorage.com/?post_type=acf-field&p=78',7,'acf-field','',0),(79,1,'2025-03-10 10:03:54','2025-03-10 10:03:54','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Twitter URL','twitter_url','publish','closed','closed','','field_67ceb8eaf75f4','','','2025-03-10 10:03:54','2025-03-10 10:03:54','',69,'https://nomudrvstorage.com/?post_type=acf-field&p=79',8,'acf-field','',0),(80,1,'2025-03-10 10:03:54','2025-03-10 10:03:54','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Instagram Url','instagram_url','publish','closed','closed','','field_67ceb8eff75f5','','','2025-03-10 10:03:54','2025-03-10 10:03:54','',69,'https://nomudrvstorage.com/?post_type=acf-field&p=80',9,'acf-field','',0),(81,1,'2025-03-10 10:05:51','2025-03-10 10:05:51','','WhatsApp Image 2025-03-10 at 3.18.48 PM','','inherit','open','closed','','whatsapp-image-2025-03-10-at-3-18-48-pm','','','2025-03-10 10:05:51','2025-03-10 10:05:51','',0,'https://nomudrvstorage.com/wp-content/uploads/2025/03/WhatsApp-Image-2025-03-10-at-3.18.48-PM.jpeg',0,'attachment','image/jpeg',0),(82,1,'2025-03-10 10:05:57','2025-03-10 10:05:57','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:1;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Bussiness Hours','bussiness_hours','publish','closed','closed','','field_67ceb974327d1','','','2025-03-10 11:47:32','2025-03-10 11:47:32','',69,'https://nomudrvstorage.com/?post_type=acf-field&p=82',10,'acf-field','',0),(83,1,'2025-03-10 10:14:45','2025-03-10 10:14:45','','WhatsApp_Image_2025-03-10_at_3.18.48_PM-removebg-preview','','inherit','open','closed','','whatsapp_image_2025-03-10_at_3-18-48_pm-removebg-preview','','','2025-03-10 10:14:45','2025-03-10 10:14:45','',0,'https://nomudrvstorage.com/wp-content/uploads/2025/03/WhatsApp_Image_2025-03-10_at_3.18.48_PM-removebg-preview.png',0,'attachment','image/png',0),(84,1,'2025-03-10 10:17:38','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2025-03-10 10:17:38','0000-00-00 00:00:00','',0,'https://nomudrvstorage.com/?page_id=84',0,'page','',0),(85,1,'2025-03-10 10:18:24','2025-03-10 10:18:24','','Home','','publish','closed','closed','','home','','','2025-03-12 10:16:08','2025-03-12 10:16:08','',0,'https://nomudrvstorage.com/?page_id=85',0,'page','',0),(86,1,'2025-03-10 10:18:24','2025-03-10 10:18:24','','Home','','inherit','closed','closed','','85-revision-v1','','','2025-03-10 10:18:24','2025-03-10 10:18:24','',85,'https://nomudrvstorage.com/?p=86',0,'revision','',0),(87,1,'2025-03-10 10:18:46','2025-03-10 10:18:46','\n

At our facility, we strive to provide you with the best possible customer service. Our friendly and knowledgeable staff is always available to assist you with any questions or concerns

\n','Services','','publish','closed','closed','','services','','','2025-03-12 11:07:32','2025-03-12 11:07:32','',0,'https://nomudrvstorage.com/?page_id=87',0,'page','',0),(88,1,'2025-03-10 10:18:46','2025-03-10 10:18:46','','Services','','inherit','closed','closed','','87-revision-v1','','','2025-03-10 10:18:46','2025-03-10 10:18:46','',87,'https://nomudrvstorage.com/?p=88',0,'revision','',0),(89,1,'2025-03-10 10:19:02','2025-03-10 10:19:02','\n

Boat, RV, Vehicle, and Self Storage Options Available!

\n','Pricing','','publish','closed','closed','','pricing','','','2025-03-12 10:56:33','2025-03-12 10:56:33','',0,'https://nomudrvstorage.com/?page_id=89',0,'page','',0),(90,1,'2025-03-10 10:19:02','2025-03-10 10:19:02','','Pricing','','inherit','closed','closed','','89-revision-v1','','','2025-03-10 10:19:02','2025-03-10 10:19:02','',89,'https://nomudrvstorage.com/?p=90',0,'revision','',0),(91,1,'2025-03-10 10:19:21','2025-03-10 10:19:21','\n

Site layout
Security features
Access details
Amenities (wash stations, dump stations)

\n','Facilities','','publish','closed','closed','','facilities','','','2025-03-12 11:14:33','2025-03-12 11:14:33','',0,'https://nomudrvstorage.com/?page_id=91',0,'page','',0),(92,1,'2025-03-10 10:19:21','2025-03-10 10:19:21','','Facilities','','inherit','closed','closed','','91-revision-v1','','','2025-03-10 10:19:21','2025-03-10 10:19:21','',91,'https://nomudrvstorage.com/?p=92',0,'revision','',0),(93,1,'2025-03-10 10:19:39','2025-03-10 10:19:39','','Contact Us','','publish','closed','closed','','contact-us','','','2025-03-10 18:13:45','2025-03-10 18:13:45','',0,'https://nomudrvstorage.com/?page_id=93',0,'page','',0),(94,1,'2025-03-10 10:19:39','2025-03-10 10:19:39','','Contact Us','','inherit','closed','closed','','93-revision-v1','','','2025-03-10 10:19:39','2025-03-10 10:19:39','',93,'https://nomudrvstorage.com/?p=94',0,'revision','',0),(95,1,'2025-03-10 10:21:39','2025-03-10 10:21:39','','Size Guide','','publish','closed','closed','','size-guide','','','2025-03-10 10:21:40','2025-03-10 10:21:40','',0,'https://nomudrvstorage.com/?page_id=95',0,'page','',0),(96,1,'2025-03-10 10:21:25','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2025-03-10 10:21:25','0000-00-00 00:00:00','',0,'https://nomudrvstorage.com/?page_id=96',0,'page','',0),(97,1,'2025-03-10 10:21:39','2025-03-10 10:21:39','','Size Guide','','inherit','closed','closed','','95-revision-v1','','','2025-03-10 10:21:39','2025-03-10 10:21:39','',95,'https://nomudrvstorage.com/?p=97',0,'revision','',0),(98,1,'2025-03-10 10:21:53','2025-03-10 10:21:53','','FAQ','','publish','closed','closed','','faq','','','2025-03-12 11:29:33','2025-03-12 11:29:33','',0,'https://nomudrvstorage.com/?page_id=98',0,'page','',0),(99,1,'2025-03-10 10:21:46','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2025-03-10 10:21:46','0000-00-00 00:00:00','',0,'https://nomudrvstorage.com/?page_id=99',0,'page','',0),(100,1,'2025-03-10 10:21:53','2025-03-10 10:21:53','','FAQ','','inherit','closed','closed','','98-revision-v1','','','2025-03-10 10:21:53','2025-03-10 10:21:53','',98,'https://nomudrvstorage.com/?p=100',0,'revision','',0),(101,1,'2025-03-10 10:23:27','2025-03-10 10:23:27','','Lake Elmo','','publish','closed','closed','','lake-elmo','','','2025-03-12 12:52:43','2025-03-12 12:52:43','',0,'https://nomudrvstorage.com/?page_id=101',0,'page','',0),(102,1,'2025-03-10 10:23:11','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2025-03-10 10:23:11','0000-00-00 00:00:00','',0,'https://nomudrvstorage.com/?page_id=102',0,'page','',0),(103,1,'2025-03-10 10:23:27','2025-03-10 10:23:27','','Lake Elmo','','inherit','closed','closed','','101-revision-v1','','','2025-03-10 10:23:27','2025-03-10 10:23:27','',101,'https://nomudrvstorage.com/?p=103',0,'revision','',0),(104,1,'2025-03-10 10:23:46','2025-03-10 10:23:46','\n

Storage Solutions in Lake Elmo – Safe, Flexible, and Affordable

\n','Maplewood','','publish','closed','closed','','maplewood','','','2025-03-12 12:51:31','2025-03-12 12:51:31','',0,'https://nomudrvstorage.com/?page_id=104',0,'page','',0),(105,1,'2025-03-10 10:23:46','2025-03-10 10:23:46','','Maplewood','','inherit','closed','closed','','104-revision-v1','','','2025-03-10 10:23:46','2025-03-10 10:23:46','',104,'https://nomudrvstorage.com/?p=105',0,'revision','',0),(106,1,'2025-03-10 10:28:06','2025-03-10 10:28:06','','large','','inherit','open','closed','','large','','','2025-03-10 10:28:06','2025-03-10 10:28:06','',0,'https://nomudrvstorage.com/wp-content/uploads/2025/03/large.png',0,'attachment','image/png',0),(107,1,'2025-03-12 11:17:42','2025-03-10 10:44:23',' ','','','publish','closed','closed','','107','','','2025-03-12 11:17:42','2025-03-12 11:17:42','',0,'https://nomudrvstorage.com/?p=107',1,'nav_menu_item','',0),(108,1,'2025-03-12 11:17:42','2025-03-10 10:44:23',' ','','','publish','closed','closed','','108','','','2025-03-12 11:17:42','2025-03-12 11:17:42','',0,'https://nomudrvstorage.com/?p=108',2,'nav_menu_item','',0),(109,1,'2025-03-12 11:17:42','2025-03-10 10:44:23',' ','','','publish','closed','closed','','109','','','2025-03-12 11:17:42','2025-03-12 11:17:42','',0,'https://nomudrvstorage.com/?p=109',3,'nav_menu_item','',0),(110,1,'2025-03-12 11:17:42','2025-03-10 10:44:23',' ','','','publish','closed','closed','','110','','','2025-03-12 11:17:42','2025-03-12 11:17:42','',0,'https://nomudrvstorage.com/?p=110',4,'nav_menu_item','',0),(114,1,'2025-03-10 10:30:51','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2025-03-10 10:30:51','0000-00-00 00:00:00','',0,'https://nomudrvstorage.com/?p=114',1,'nav_menu_item','',0),(115,1,'2025-03-12 11:17:42','2025-03-10 10:44:23',' ','','','publish','closed','closed','','115','','','2025-03-12 11:17:42','2025-03-12 11:17:42','',0,'https://nomudrvstorage.com/?p=115',7,'nav_menu_item','',0),(116,1,'2025-03-12 11:17:42','2025-03-10 10:44:23',' ','','','publish','closed','closed','','116','','','2025-03-12 11:17:42','2025-03-12 11:17:42','',0,'https://nomudrvstorage.com/?p=116',12,'nav_menu_item','',0),(117,1,'2025-03-10 10:31:03','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2025-03-10 10:31:03','0000-00-00 00:00:00','',0,'https://nomudrvstorage.com/?p=117',1,'nav_menu_item','',0),(118,1,'2025-03-10 10:38:08','2025-03-10 10:38:08','','Nomudrv_Storage_Transparent','','inherit','open','closed','','nomudrv_storage_transparent','','','2025-03-10 10:38:08','2025-03-10 10:38:08','',0,'https://nomudrvstorage.com/wp-content/uploads/2025/03/Nomudrv_Storage_Transparent.png',0,'attachment','image/png',0),(119,1,'2025-03-10 10:39:44','2025-03-10 10:39:44','','Nomudrv_Storage_Transparent-removebg-preview','','inherit','open','closed','','nomudrv_storage_transparent-removebg-preview','','','2025-03-10 10:39:44','2025-03-10 10:39:44','',0,'https://nomudrvstorage.com/wp-content/uploads/2025/03/Nomudrv_Storage_Transparent-removebg-preview.png',0,'attachment','image/png',0),(120,1,'2025-03-10 10:41:23','2025-03-10 10:41:23','','Nomudrv_Storage_Transparent-removebg-preview (1)','','inherit','open','closed','','nomudrv_storage_transparent-removebg-preview-1','','','2025-03-10 10:41:23','2025-03-10 10:41:23','',0,'https://nomudrvstorage.com/wp-content/uploads/2025/03/Nomudrv_Storage_Transparent-removebg-preview-1.png',0,'attachment','image/png',0),(121,1,'2025-03-10 10:42:50','2025-03-10 10:42:50','','Nomudrv_Storage_Transparent-removebg-preview (2)','','inherit','open','closed','','nomudrv_storage_transparent-removebg-preview-2','','','2025-03-10 10:42:50','2025-03-10 10:42:50','',0,'https://nomudrvstorage.com/wp-content/uploads/2025/03/Nomudrv_Storage_Transparent-removebg-preview-2.png',0,'attachment','image/png',0),(122,1,'2025-03-10 10:45:44','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2025-03-10 10:45:44','0000-00-00 00:00:00','',0,'https://nomudrvstorage.com/?page_id=122',0,'page','',0),(124,1,'2025-03-10 10:49:09','2025-03-10 10:49:09','\n

\n','Pricing','','inherit','closed','closed','','89-revision-v1','','','2025-03-10 10:49:09','2025-03-10 10:49:09','',89,'https://nomudrvstorage.com/?p=124',0,'revision','',0),(125,1,'2025-03-12 11:17:42','2025-03-10 10:58:05','','Helpful Tools','','publish','closed','closed','','helpful-tools','','','2025-03-12 11:17:42','2025-03-12 11:17:42','',0,'https://nomudrvstorage.com/?p=125',5,'nav_menu_item','',0),(126,1,'2025-03-12 11:17:42','2025-03-10 10:58:05','','Nearby','','publish','closed','closed','','nearby','','','2025-03-12 11:17:42','2025-03-12 11:17:42','',0,'https://nomudrvstorage.com/?p=126',8,'nav_menu_item','',0),(127,1,'2025-03-12 11:17:42','2025-03-10 10:58:05',' ','','','publish','closed','closed','','127','','','2025-03-12 11:17:42','2025-03-12 11:17:42','',0,'https://nomudrvstorage.com/?p=127',9,'nav_menu_item','',0),(128,1,'2025-03-12 11:17:42','2025-03-10 10:58:05',' ','','','publish','closed','closed','','128','','','2025-03-12 11:17:42','2025-03-12 11:17:42','',0,'https://nomudrvstorage.com/?p=128',10,'nav_menu_item','',0),(129,1,'2025-03-12 11:17:42','2025-03-10 11:03:38','','Book Your Space Now!','','publish','closed','closed','','book-your-space-now','','','2025-03-12 11:17:42','2025-03-12 11:17:42','',0,'https://nomudrvstorage.com/?p=129',11,'nav_menu_item','',0),(130,1,'2025-03-10 11:09:39','2025-03-10 11:09:39','','Nomudrv_Storage_Transparent-removebg-preview(1)','','inherit','open','closed','','nomudrv_storage_transparent-removebg-preview1','','','2025-03-10 11:09:39','2025-03-10 11:09:39','',0,'https://nomudrvstorage.com/wp-content/uploads/2025/03/Nomudrv_Storage_Transparent-removebg-preview1.png',0,'attachment','image/png',0),(131,1,'2025-03-10 11:19:05','2025-03-10 11:19:05','','Nomudrv_Storage_Transparent-removebg-preview(1)(1)','','inherit','open','closed','','nomudrv_storage_transparent-removebg-preview11','','','2025-03-10 11:19:05','2025-03-10 11:19:05','',0,'https://nomudrvstorage.com/wp-content/uploads/2025/03/Nomudrv_Storage_Transparent-removebg-preview11.png',0,'attachment','image/png',0),(132,1,'2025-03-10 11:25:46','2025-03-10 11:25:46','','Privacy and Policy','','publish','closed','closed','','privacy-and-policy','','','2025-03-12 12:57:31','2025-03-12 12:57:31','',0,'https://nomudrvstorage.com/?page_id=132',0,'page','',0),(133,1,'2025-03-10 11:25:46','2025-03-10 11:25:46','','Privacy and Policy','','inherit','closed','closed','','132-revision-v1','','','2025-03-10 11:25:46','2025-03-10 11:25:46','',132,'https://nomudrvstorage.com/?p=133',0,'revision','',0),(134,1,'2025-03-10 11:26:12','2025-03-10 11:26:12','','Terms and Condition','','publish','closed','closed','','terms-and-condition','','','2025-03-12 12:56:08','2025-03-12 12:56:08','',0,'https://nomudrvstorage.com/?page_id=134',0,'page','',0),(135,1,'2025-03-10 11:26:12','2025-03-10 11:26:12','','Terms and Condition','','inherit','closed','closed','','134-revision-v1','','','2025-03-10 11:26:12','2025-03-10 11:26:12','',134,'https://nomudrvstorage.com/?p=135',0,'revision','',0),(136,1,'2025-03-10 11:26:47','2025-03-10 11:26:47',' ','','','publish','closed','closed','','136','','','2025-03-10 11:26:47','2025-03-10 11:26:47','',0,'https://nomudrvstorage.com/?p=136',1,'nav_menu_item','',0),(137,1,'2025-03-10 11:26:47','2025-03-10 11:26:47',' ','','','publish','closed','closed','','137','','','2025-03-10 11:26:47','2025-03-10 11:26:47','',0,'https://nomudrvstorage.com/?p=137',2,'nav_menu_item','',0),(138,1,'2025-03-10 11:26:47','2025-03-10 11:26:47',' ','','','publish','closed','closed','','138','','','2025-03-10 11:26:47','2025-03-10 11:26:47','',0,'https://nomudrvstorage.com/?p=138',3,'nav_menu_item','',0),(139,1,'2025-03-10 11:26:47','2025-03-10 11:26:47',' ','','','publish','closed','closed','','139','','','2025-03-10 11:26:47','2025-03-10 11:26:47','',0,'https://nomudrvstorage.com/?p=139',4,'nav_menu_item','',0),(140,1,'2025-03-10 11:31:21','2025-03-10 11:31:21','','Nomudrv Storage (1)','','inherit','open','closed','','nomudrv-storage-1','','','2025-03-10 11:31:21','2025-03-10 11:31:21','',0,'https://nomudrvstorage.com/wp-content/uploads/2025/03/Nomudrv-Storage-1.png',0,'attachment','image/png',0),(141,1,'2025-03-10 11:33:32','2025-03-10 11:33:32','','Nomudrv Storage(1) (1)','','inherit','open','closed','','nomudrv-storage1-1','','','2025-03-10 11:33:32','2025-03-10 11:33:32','',0,'https://nomudrvstorage.com/wp-content/uploads/2025/03/Nomudrv-Storage1-1.png',0,'attachment','image/png',0),(142,1,'2025-03-10 11:38:53','2025-03-10 11:38:53','
\r\n

First Name

\r\n[text* first-name class:w-full class:p-3 class:input-color placeholder \"First Name\"] \r\n
\r\n
\r\n

Second Name

\r\n[text* last-name class:w-full class:p-3 class:input-color placeholder \"Second Name\"] \r\n
\r\n
\r\n

Email

\r\n[email* your-email class:w-full class:p-3 class:input-color placeholder \"Your email\"]\r\n
\r\n
\r\n

Message

\r\n[textarea your-message class:w-full class:p-3 class:input-color ]\r\n
\r\n
[submit class:font-serif class:text-2 class:col-span-2 class:w-full class:bg-green class:text-white class:rounded-full class:py-2 class:mt-5 \"Submit\"]
\n1\n[_site_title] \"[your-subject]\"\n[_site_title] \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 is a notification that a contact form was submitted on your website ([_site_title] [_site_url]).\nReply-To: [your-email]\n\n\n\n\n[_site_title] \"[your-subject]\"\n[_site_title] \n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis email is a receipt for your contact form submission on our website ([_site_title] [_site_url]) in which your email address was used. If that was not you, please ignore this message.\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.\nPlease fill out this field.\nThis field has a too long input.\nThis field has a too short input.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe uploaded file is too large.\nThere was an error uploading the file.\nPlease enter a date in YYYY-MM-DD format.\nThis field has a too early date.\nThis field has a too late date.\nPlease enter a number.\nThis field has a too small number.\nThis field has a too large number.\nThe answer to the quiz is incorrect.\nPlease enter an email address.\nPlease enter a URL.\nPlease enter a telephone number.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2025-03-10 11:40:35','2025-03-10 11:40:35','',0,'https://nomudrvstorage.com/?post_type=wpcf7_contact_form&p=142',0,'wpcf7_contact_form','',0),(143,1,'2025-03-10 11:46:31','2025-03-10 11:46:31','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:4:\"rows\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Business Hours Text','business_hours_text','publish','closed','closed','','field_67ced0e02feda','','','2025-03-10 11:46:31','2025-03-10 11:46:31','',69,'https://nomudrvstorage.com/?post_type=acf-field&p=143',11,'acf-field','',0),(144,1,'2025-03-10 12:50:03','2025-03-10 12:50:03','a:8:{s:8:\"location\";a:2:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"page\";}}i:1;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"post\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;}','Components','components','publish','closed','closed','','group_67ceddb34bf04','','','2025-03-12 12:47:09','2025-03-12 12:47:09','',0,'https://nomudrvstorage.com/?post_type=acf-field-group&p=144',0,'acf-field-group','',0),(145,1,'2025-03-10 12:45:37','2025-03-10 12:45:37','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Storage Access Hours','storage_access_hours','publish','closed','closed','','field_67cedeb68660e','','','2025-03-10 12:45:37','2025-03-10 12:45:37','',69,'https://nomudrvstorage.com/?post_type=acf-field&p=145',12,'acf-field','',0),(146,1,'2025-03-10 12:45:37','2025-03-10 12:45:37','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:4:\"rows\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Storage Access Hours Text','storage_access_hours_text','publish','closed','closed','','field_67cededc8660f','','','2025-03-10 12:45:37','2025-03-10 12:45:37','',69,'https://nomudrvstorage.com/?post_type=acf-field&p=146',13,'acf-field','',0),(147,1,'2025-03-10 12:50:03','2025-03-10 12:50:03','a:10:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:16:\"flexible_content\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"layouts\";a:10:{s:20:\"layout_67cee00fb6169\";a:6:{s:3:\"key\";s:20:\"layout_67cee00fb6169\";s:5:\"label\";s:14:\"Carousel Block\";s:4:\"name\";s:14:\"carousel_block\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_67cee04d8637d\";a:6:{s:3:\"key\";s:20:\"layout_67cee04d8637d\";s:5:\"label\";s:14:\"Review Section\";s:4:\"name\";s:14:\"review_section\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_67cf107ec28bc\";a:6:{s:3:\"key\";s:20:\"layout_67cf107ec28bc\";s:5:\"label\";s:13:\"Price Section\";s:4:\"name\";s:13:\"price_section\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_67d15a99994d6\";a:6:{s:3:\"key\";s:20:\"layout_67d15a99994d6\";s:5:\"label\";s:15:\"Service Section\";s:4:\"name\";s:15:\"service_section\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_67d16e794364c\";a:6:{s:3:\"key\";s:20:\"layout_67d16e794364c\";s:5:\"label\";s:15:\"Accordion Block\";s:4:\"name\";s:15:\"accordion_block\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_67d15ab8994d8\";a:6:{s:3:\"key\";s:20:\"layout_67d15ab8994d8\";s:5:\"label\";s:16:\"Customer Section\";s:4:\"name\";s:16:\"customer_section\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_67d1727f62d1f\";a:6:{s:3:\"key\";s:20:\"layout_67d1727f62d1f\";s:5:\"label\";s:28:\"Full Width Text Center Block\";s:4:\"name\";s:28:\"block_full_width_text_center\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_67d1730e10c9c\";a:6:{s:3:\"key\";s:20:\"layout_67d1730e10c9c\";s:5:\"label\";s:38:\"Two Column Left Image Right Text Block\";s:4:\"name\";s:38:\"block_two_column_left_image_right_text\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_67d181709c081\";a:6:{s:3:\"key\";s:20:\"layout_67d181709c081\";s:5:\"label\";s:38:\"Two Column Left Text Right Image Block\";s:4:\"name\";s:38:\"block_two_column_left_text_right_image\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_67d1822576a3a\";a:6:{s:3:\"key\";s:20:\"layout_67d1822576a3a\";s:5:\"label\";s:26:\"One Column Full width text\";s:4:\"name\";s:15:\"full_width_text\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}}s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:12:\"button_label\";s:7:\"Add Row\";}','Pages Block Components','pages_block_components','publish','closed','closed','','field_67ceddb41e1f1','','','2025-03-12 12:47:09','2025-03-12 12:47:09','',144,'https://nomudrvstorage.com/?post_type=acf-field&p=147',0,'acf-field','',0),(148,1,'2025-03-10 12:55:37','2025-03-10 12:55:37','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67cee00fb6169\";s:6:\"layout\";s:5:\"table\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:9:\"collapsed\";s:0:\"\";s:12:\"button_label\";s:0:\"\";s:13:\"rows_per_page\";i:20;}','Carousel Item','carousel_item','publish','closed','closed','','field_67cee0c68637f','','','2025-03-10 12:55:37','2025-03-10 12:55:37','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=148',0,'acf-field','',0),(149,1,'2025-03-10 12:55:37','2025-03-10 12:55:37','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Heading','heading','publish','closed','closed','','field_67cee10a86380','','','2025-03-10 12:55:37','2025-03-10 12:55:37','',148,'https://nomudrvstorage.com/?post_type=acf-field&p=149',0,'acf-field','',0),(150,1,'2025-03-10 12:55:37','2025-03-10 12:55:37','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Images','images','publish','closed','closed','','field_67cee12c86381','','','2025-03-10 13:12:22','2025-03-10 13:12:22','',148,'https://nomudrvstorage.com/?post_type=acf-field&p=150',1,'acf-field','',0),(151,1,'2025-03-10 12:55:37','2025-03-10 12:55:37','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:4:\"rows\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Desc','desc','publish','closed','closed','','field_67cee13e86382','','','2025-03-10 12:55:37','2025-03-10 12:55:37','',148,'https://nomudrvstorage.com/?post_type=acf-field&p=151',2,'acf-field','',0),(153,1,'2025-03-10 12:59:01','2025-03-10 12:59:01','','shutterstock_2481710485-min','','inherit','open','closed','','shutterstock_2481710485-min','','','2025-03-10 12:59:01','2025-03-10 12:59:01','',85,'https://nomudrvstorage.com/wp-content/uploads/2025/03/shutterstock_2481710485-min.jpg',0,'attachment','image/jpeg',0),(154,1,'2025-03-10 13:01:45','2025-03-10 13:01:45','','Home','','inherit','closed','closed','','85-revision-v1','','','2025-03-10 13:01:45','2025-03-10 13:01:45','',85,'https://nomudrvstorage.com/?p=154',0,'revision','',0),(157,1,'2025-03-10 13:17:11','2025-03-10 13:17:11','','shutterstock_2026342661-min','','inherit','open','closed','','shutterstock_2026342661-min','','','2025-03-10 13:17:11','2025-03-10 13:17:11','',85,'https://nomudrvstorage.com/wp-content/uploads/2025/03/shutterstock_2026342661-min.jpg',0,'attachment','image/jpeg',0),(158,1,'2025-03-10 13:18:06','2025-03-10 13:18:06','','shutterstock_708231286-min','','inherit','open','closed','','shutterstock_708231286-min','','','2025-03-10 13:18:06','2025-03-10 13:18:06','',85,'https://nomudrvstorage.com/wp-content/uploads/2025/03/shutterstock_708231286-min.jpg',0,'attachment','image/jpeg',0),(159,1,'2025-03-10 13:18:26','2025-03-10 13:18:26','','Home','','inherit','closed','closed','','85-revision-v1','','','2025-03-10 13:18:26','2025-03-10 13:18:26','',85,'https://nomudrvstorage.com/?p=159',0,'revision','',0),(160,1,'2025-03-10 13:38:43','2025-03-10 13:38:43','','Nomudrv Storage','','inherit','open','closed','','nomudrv-storage','','','2025-03-10 13:38:43','2025-03-10 13:38:43','',0,'https://nomudrvstorage.com/wp-content/uploads/2025/03/Nomudrv-Storage.png',0,'attachment','image/png',0),(161,1,'2025-03-10 13:43:38','2025-03-10 13:43:38','','Nomudrv_Storage-removebg-preview','','inherit','open','closed','','nomudrv_storage-removebg-preview','','','2025-03-10 13:43:38','2025-03-10 13:43:38','',0,'https://nomudrvstorage.com/wp-content/uploads/2025/03/Nomudrv_Storage-removebg-preview.png',0,'attachment','image/png',0),(162,1,'2025-03-10 13:46:15','2025-03-10 13:46:15','','Nomudrv_Storage-removebg-preview(1)','','inherit','open','closed','','nomudrv_storage-removebg-preview1','','','2025-03-10 13:46:15','2025-03-10 13:46:15','',0,'https://nomudrvstorage.com/wp-content/uploads/2025/03/Nomudrv_Storage-removebg-preview1.png',0,'attachment','image/png',0),(163,1,'2025-03-10 13:48:55','2025-03-10 13:48:55','','Nomudrv_Storage-removebg-preview(1)(1)','','inherit','open','closed','','nomudrv_storage-removebg-preview11','','','2025-03-10 13:48:55','2025-03-10 13:48:55','',0,'https://nomudrvstorage.com/wp-content/uploads/2025/03/Nomudrv_Storage-removebg-preview11.png',0,'attachment','image/png',0),(164,1,'2025-03-10 15:36:13','2025-03-10 15:36:13','','Nomudrv_Storage_1_-removebg-preview(2)','','inherit','open','closed','','nomudrv_storage_1_-removebg-preview2','','','2025-03-10 15:36:13','2025-03-10 15:36:13','',0,'https://nomudrvstorage.com/wp-content/uploads/2025/03/Nomudrv_Storage_1_-removebg-preview2.png',0,'attachment','image/png',0),(165,1,'2025-03-10 15:44:50','2025-03-10 15:44:50','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67cee04d8637d\";s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Main Heading','main_heading','publish','closed','closed','','field_67cf0552bb668','','','2025-03-10 15:44:50','2025-03-10 15:44:50','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=165',0,'acf-field','',0),(166,1,'2025-03-10 15:44:50','2025-03-10 15:44:50','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67cee04d8637d\";s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Main desc','maindsc','publish','closed','closed','','field_67cf05a4bb669','','','2025-03-10 15:44:50','2025-03-10 15:44:50','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=166',1,'acf-field','',0),(167,1,'2025-03-10 15:44:50','2025-03-10 15:44:50','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67cee04d8637d\";s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Number of Review','num_review','publish','closed','closed','','field_67cf05dfbb66a','','','2025-03-10 15:44:50','2025-03-10 15:44:50','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=167',2,'acf-field','',0),(168,1,'2025-03-10 15:44:50','2025-03-10 15:44:50','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67cee04d8637d\";s:6:\"layout\";s:5:\"table\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:9:\"collapsed\";s:0:\"\";s:12:\"button_label\";s:0:\"\";s:13:\"rows_per_page\";i:20;}','Reviews','reviews','publish','closed','closed','','field_67cf0729bb66b','','','2025-03-10 15:44:50','2025-03-10 15:44:50','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=168',3,'acf-field','',0),(169,1,'2025-03-10 15:44:50','2025-03-10 15:44:50','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Image','image','publish','closed','closed','','field_67cf076cbb66c','','','2025-03-10 15:44:50','2025-03-10 15:44:50','',168,'https://nomudrvstorage.com/?post_type=acf-field&p=169',0,'acf-field','',0),(170,1,'2025-03-10 15:44:50','2025-03-10 15:44:50','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Reviewer Name','reviewer_name','publish','closed','closed','','field_67cf0784bb66d','','','2025-03-10 15:44:50','2025-03-10 15:44:50','',168,'https://nomudrvstorage.com/?post_type=acf-field&p=170',1,'acf-field','',0),(171,1,'2025-03-10 15:44:50','2025-03-10 15:44:50','a:10:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:11:\"date_picker\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:14:\"display_format\";s:5:\"m/d/Y\";s:13:\"return_format\";s:5:\"m/d/Y\";s:9:\"first_day\";i:1;s:17:\"allow_in_bindings\";i:0;}','Date','date','publish','closed','closed','','field_67cf079cbb66e','','','2025-03-10 15:44:50','2025-03-10 15:44:50','',168,'https://nomudrvstorage.com/?post_type=acf-field&p=171',2,'acf-field','',0),(174,1,'2025-03-10 15:47:08','2025-03-10 15:47:08','','unnamed','','inherit','open','closed','','unnamed','','','2025-03-10 15:47:08','2025-03-10 15:47:08','',85,'https://nomudrvstorage.com/wp-content/uploads/2025/03/unnamed.png',0,'attachment','image/png',0),(175,1,'2025-03-10 15:48:22','2025-03-10 15:48:22','','unnamed (1)','','inherit','open','closed','','unnamed-1','','','2025-03-10 15:48:22','2025-03-10 15:48:22','',85,'https://nomudrvstorage.com/wp-content/uploads/2025/03/unnamed-1.png',0,'attachment','image/png',0),(176,1,'2025-03-10 15:48:53','2025-03-10 15:48:53','','unnamed (2)','','inherit','open','closed','','unnamed-2','','','2025-03-10 15:48:53','2025-03-10 15:48:53','',85,'https://nomudrvstorage.com/wp-content/uploads/2025/03/unnamed-2.png',0,'attachment','image/png',0),(177,1,'2025-03-10 15:53:08','2025-03-10 15:53:08','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:4:\"rows\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Desc','desc','publish','closed','closed','','field_67cf0ab4f9481','','','2025-03-10 15:53:08','2025-03-10 15:53:08','',168,'https://nomudrvstorage.com/?post_type=acf-field&p=177',3,'acf-field','',0),(178,1,'2025-03-10 15:53:08','2025-03-10 15:53:08','a:9:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";}','Review Link','review_link','publish','closed','closed','','field_67cf0ac7f9482','','','2025-03-10 15:53:08','2025-03-10 15:53:08','',168,'https://nomudrvstorage.com/?post_type=acf-field&p=178',4,'acf-field','',0),(179,1,'2025-03-10 15:53:25','2025-03-10 15:53:25','','Home','','inherit','closed','closed','','85-revision-v1','','','2025-03-10 15:53:25','2025-03-10 15:53:25','',85,'https://nomudrvstorage.com/?p=179',0,'revision','',0),(181,1,'2025-03-10 15:55:25','2025-03-10 15:55:25','','Home','','inherit','closed','closed','','85-revision-v1','','','2025-03-10 15:55:25','2025-03-10 15:55:25','',85,'https://nomudrvstorage.com/?p=181',0,'revision','',0),(183,1,'2025-03-10 15:57:56','2025-03-10 15:57:56','','unnamed (8)','','inherit','open','closed','','unnamed-8','','','2025-03-10 15:57:56','2025-03-10 15:57:56','',85,'https://nomudrvstorage.com/wp-content/uploads/2025/03/unnamed-8.png',0,'attachment','image/png',0),(184,1,'2025-03-10 15:57:56','2025-03-10 15:57:56','','unnamed (7)','','inherit','open','closed','','unnamed-7','','','2025-03-10 15:57:56','2025-03-10 15:57:56','',85,'https://nomudrvstorage.com/wp-content/uploads/2025/03/unnamed-7.png',0,'attachment','image/png',0),(185,1,'2025-03-10 15:57:57','2025-03-10 15:57:57','','unnamed (6)','','inherit','open','closed','','unnamed-6','','','2025-03-10 15:57:57','2025-03-10 15:57:57','',85,'https://nomudrvstorage.com/wp-content/uploads/2025/03/unnamed-6.png',0,'attachment','image/png',0),(186,1,'2025-03-10 15:57:58','2025-03-10 15:57:58','','unnamed (5)','','inherit','open','closed','','unnamed-5','','','2025-03-10 15:57:58','2025-03-10 15:57:58','',85,'https://nomudrvstorage.com/wp-content/uploads/2025/03/unnamed-5.png',0,'attachment','image/png',0),(187,1,'2025-03-10 15:57:58','2025-03-10 15:57:58','','unnamed (4)','','inherit','open','closed','','unnamed-4','','','2025-03-10 15:57:58','2025-03-10 15:57:58','',85,'https://nomudrvstorage.com/wp-content/uploads/2025/03/unnamed-4.png',0,'attachment','image/png',0),(188,1,'2025-03-10 15:57:59','2025-03-10 15:57:59','','unnamed (3)','','inherit','open','closed','','unnamed-3','','','2025-03-10 15:57:59','2025-03-10 15:57:59','',85,'https://nomudrvstorage.com/wp-content/uploads/2025/03/unnamed-3.png',0,'attachment','image/png',0),(189,1,'2025-03-10 16:03:51','2025-03-10 16:03:51','','Home','','inherit','closed','closed','','85-revision-v1','','','2025-03-10 16:03:51','2025-03-10 16:03:51','',85,'https://nomudrvstorage.com/?p=189',0,'revision','',0),(190,1,'2025-03-10 16:10:31','2025-03-10 16:10:31','a:18:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67cee04d8637d\";s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Background Image','background_image','publish','closed','closed','','field_67cf0ed7f052f','','','2025-03-10 16:10:31','2025-03-10 16:10:31','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=190',4,'acf-field','',0),(191,1,'2025-03-10 16:11:21','2025-03-10 16:11:21','','WhatsApp Image 2025-03-10 at 9.39.46 PM','','inherit','open','closed','','whatsapp-image-2025-03-10-at-9-39-46-pm','','','2025-03-10 16:11:21','2025-03-10 16:11:21','',85,'https://nomudrvstorage.com/wp-content/uploads/2025/03/WhatsApp-Image-2025-03-10-at-9.39.46-PM.jpeg',0,'attachment','image/jpeg',0),(192,1,'2025-03-10 16:11:29','2025-03-10 16:11:29','','Home','','inherit','closed','closed','','85-revision-v1','','','2025-03-10 16:11:29','2025-03-10 16:11:29','',85,'https://nomudrvstorage.com/?p=192',0,'revision','',0),(193,1,'2025-03-10 16:20:37','2025-03-10 16:20:37','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67cf107ec28bc\";s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Heading','heading','publish','closed','closed','','field_67cf10a1c28be','','','2025-03-10 16:20:37','2025-03-10 16:20:37','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=193',0,'acf-field','',0),(194,1,'2025-03-10 16:20:37','2025-03-10 16:20:37','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67cf107ec28bc\";s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Sub Heading','sub_heading','publish','closed','closed','','field_67cf10bec28bf','','','2025-03-10 16:20:37','2025-03-10 16:20:37','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=194',1,'acf-field','',0),(195,1,'2025-03-10 16:20:37','2025-03-10 16:20:37','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67cf107ec28bc\";s:6:\"layout\";s:5:\"table\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:9:\"collapsed\";s:0:\"\";s:12:\"button_label\";s:0:\"\";s:13:\"rows_per_page\";i:20;}','Add More Price','add_more_price','publish','closed','closed','','field_67cf10d8c28c0','','','2025-03-10 16:20:37','2025-03-10 16:20:37','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=195',2,'acf-field','',0),(196,1,'2025-03-10 16:20:37','2025-03-10 16:20:37','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Size','size','publish','closed','closed','','field_67cf1115c28c1','','','2025-03-10 16:20:37','2025-03-10 16:20:37','',195,'https://nomudrvstorage.com/?post_type=acf-field&p=196',0,'acf-field','',0),(197,1,'2025-03-10 16:20:37','2025-03-10 16:20:37','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Desc','desc','publish','closed','closed','','field_67cf1135c28c2','','','2025-03-10 16:20:37','2025-03-10 16:20:37','',195,'https://nomudrvstorage.com/?post_type=acf-field&p=197',1,'acf-field','',0),(198,1,'2025-03-10 16:20:37','2025-03-10 16:20:37','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Price','price','publish','closed','closed','','field_67cf1146c28c3','','','2025-03-10 16:20:37','2025-03-10 16:20:37','',195,'https://nomudrvstorage.com/?post_type=acf-field&p=198',2,'acf-field','',0),(201,1,'2025-03-10 16:25:02','2025-03-10 16:25:02','\n

\n','Pricing','','inherit','closed','closed','','89-revision-v1','','','2025-03-10 16:25:02','2025-03-10 16:25:02','',89,'https://nomudrvstorage.com/?p=201',0,'revision','',0),(202,1,'2025-03-10 16:35:27','2025-03-10 16:35:27','','Nomudrv_Storage_2_-removebg-preview','','inherit','open','closed','','nomudrv_storage_2_-removebg-preview','','','2025-03-10 16:35:27','2025-03-10 16:35:27','',0,'https://nomudrvstorage.com/wp-content/uploads/2025/03/Nomudrv_Storage_2_-removebg-preview.png',0,'attachment','image/png',0),(203,1,'2025-03-10 16:37:05','2025-03-10 16:37:05','','Nomudrv_Storage_2_-removebg-preview(1)','','inherit','open','closed','','nomudrv_storage_2_-removebg-preview1','','','2025-03-10 16:37:05','2025-03-10 16:37:05','',0,'https://nomudrvstorage.com/wp-content/uploads/2025/03/Nomudrv_Storage_2_-removebg-preview1.png',0,'attachment','image/png',0),(204,1,'2025-03-10 17:08:59','2025-03-10 17:08:59','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"contact-page.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;}','Contact Page','contact-page','publish','closed','closed','','group_67cf1c9c85e26','','','2025-03-10 18:12:50','2025-03-10 18:12:50','',0,'https://nomudrvstorage.com/?post_type=acf-field-group&p=204',0,'acf-field-group','',0),(205,1,'2025-03-10 17:08:59','2025-03-10 17:08:59','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Heading','heading','publish','closed','closed','','field_67cf1c9f9f1a3','','','2025-03-10 18:12:50','2025-03-10 18:12:50','',204,'https://nomudrvstorage.com/?post_type=acf-field&p=205',1,'acf-field','',0),(206,1,'2025-03-10 17:12:23','2025-03-10 17:12:23','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Address','address','publish','closed','closed','','field_67cf1ce41c27c','','','2025-03-10 18:12:50','2025-03-10 18:12:50','',204,'https://nomudrvstorage.com/?post_type=acf-field&p=206',2,'acf-field','',0),(207,1,'2025-03-10 17:12:23','2025-03-10 17:12:23','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Phone','phone','publish','closed','closed','','field_67cf1d051c27d','','','2025-03-10 18:12:50','2025-03-10 18:12:50','',204,'https://nomudrvstorage.com/?post_type=acf-field&p=207',3,'acf-field','',0),(208,1,'2025-03-10 17:15:21','2025-03-10 17:15:21','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67cf107ec28bc\";s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Pay Link','pay_link','publish','closed','closed','','field_67cf1e00abbb8','','','2025-03-10 17:15:21','2025-03-10 17:15:21','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=208',3,'acf-field','',0),(209,1,'2025-03-10 17:19:36','2025-03-10 17:19:36','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Heading 2','heading_2','publish','closed','closed','','field_67cf1e77743e6','','','2025-03-10 18:12:50','2025-03-10 18:12:50','',204,'https://nomudrvstorage.com/?post_type=acf-field&p=209',4,'acf-field','',0),(210,1,'2025-03-10 17:19:36','2025-03-10 17:19:36','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"table\";s:10:\"pagination\";i:0;s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:9:\"collapsed\";s:0:\"\";s:12:\"button_label\";s:0:\"\";s:13:\"rows_per_page\";i:20;}','Add More Time Slot','add_more_time_slot','publish','closed','closed','','field_67cf1e90743e7','','','2025-03-10 18:12:50','2025-03-10 18:12:50','',204,'https://nomudrvstorage.com/?post_type=acf-field&p=210',5,'acf-field','',0),(211,1,'2025-03-10 17:19:36','2025-03-10 17:19:36','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Add Slot','add_slot','publish','closed','closed','','field_67cf1ecd743e8','','','2025-03-10 17:19:36','2025-03-10 17:19:36','',210,'https://nomudrvstorage.com/?post_type=acf-field&p=211',0,'acf-field','',0),(212,1,'2025-03-10 17:19:36','2025-03-10 17:19:36','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Storage Heading','storage_heading','publish','closed','closed','','field_67cf1ef2743ea','','','2025-03-10 18:12:50','2025-03-10 18:12:50','',204,'https://nomudrvstorage.com/?post_type=acf-field&p=212',6,'acf-field','',0),(213,1,'2025-03-10 17:19:36','2025-03-10 17:19:36','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Day','day','publish','closed','closed','','field_67cf1f10743eb','','','2025-03-10 18:12:50','2025-03-10 18:12:50','',204,'https://nomudrvstorage.com/?post_type=acf-field&p=213',7,'acf-field','',0),(214,1,'2025-03-10 17:19:36','2025-03-10 17:19:36','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Time','time','publish','closed','closed','','field_67cf1f1e743ec','','','2025-03-10 18:12:50','2025-03-10 18:12:50','',204,'https://nomudrvstorage.com/?post_type=acf-field&p=214',8,'acf-field','',0),(215,1,'2025-03-10 17:20:01','2025-03-10 17:20:01','\n

\n','Pricing','','inherit','closed','closed','','89-revision-v1','','','2025-03-10 17:20:01','2025-03-10 17:20:01','',89,'https://nomudrvstorage.com/?p=215',0,'revision','',0),(217,1,'2025-03-10 17:24:22','2025-03-10 17:24:22','','Contact Us','','inherit','closed','closed','','93-revision-v1','','','2025-03-10 17:24:22','2025-03-10 17:24:22','',93,'https://nomudrvstorage.com/?p=217',0,'revision','',0),(218,1,'2025-03-10 17:32:24','2025-03-10 17:32:24','','Contact Us','','inherit','closed','closed','','93-revision-v1','','','2025-03-10 17:32:24','2025-03-10 17:32:24','',93,'https://nomudrvstorage.com/?p=218',0,'revision','',0),(219,1,'2025-03-10 17:41:34','2025-03-10 17:41:34','','Contact Us','','inherit','closed','closed','','93-revision-v1','','','2025-03-10 17:41:34','2025-03-10 17:41:34','',93,'https://nomudrvstorage.com/?p=219',0,'revision','',0),(220,1,'2025-03-10 18:10:09','2025-03-10 18:10:09','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner','web_banner','publish','closed','closed','','field_67cf2ae09426e','','','2025-03-10 18:12:50','2025-03-10 18:12:50','',204,'https://nomudrvstorage.com/?post_type=acf-field&p=220',0,'acf-field','',0),(221,1,'2025-03-10 18:13:34','2025-03-10 18:13:34','','ariel view','','inherit','open','closed','','ariel-view','','','2025-03-10 18:13:34','2025-03-10 18:13:34','',93,'https://nomudrvstorage.com/wp-content/uploads/2025/03/ariel-view.jpg',0,'attachment','image/jpeg',0),(222,1,'2025-03-10 18:13:44','2025-03-10 18:13:44','','Contact Us','','inherit','closed','closed','','93-revision-v1','','','2025-03-10 18:13:44','2025-03-10 18:13:44','',93,'https://nomudrvstorage.com/?p=222',0,'revision','',0),(223,1,'2025-03-12 10:01:21','2025-03-12 10:01:21','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67d15a99994d6\";s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Main heading','main_heading','publish','closed','closed','','field_67d15adf994da','','','2025-03-12 10:01:21','2025-03-12 10:01:21','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=223',0,'acf-field','',0),(224,1,'2025-03-12 10:01:21','2025-03-12 10:01:21','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67d15a99994d6\";s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:4:\"rows\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Desc','desc','publish','closed','closed','','field_67d15aee994db','','','2025-03-12 10:01:21','2025-03-12 10:01:21','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=224',1,'acf-field','',0),(225,1,'2025-03-12 10:01:21','2025-03-12 10:01:21','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67d15a99994d6\";s:6:\"layout\";s:5:\"table\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:9:\"collapsed\";s:0:\"\";s:12:\"button_label\";s:0:\"\";s:13:\"rows_per_page\";i:20;}','More option','more_option','publish','closed','closed','','field_67d15b07994dc','','','2025-03-12 10:01:21','2025-03-12 10:01:21','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=225',2,'acf-field','',0),(226,1,'2025-03-12 10:01:21','2025-03-12 10:01:21','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Image','about_image','publish','closed','closed','','field_67d15b22994dd','','','2025-03-12 10:01:21','2025-03-12 10:01:21','',225,'https://nomudrvstorage.com/?post_type=acf-field&p=226',0,'acf-field','',0),(227,1,'2025-03-12 10:01:21','2025-03-12 10:01:21','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Heading','about_title','publish','closed','closed','','field_67d15b42994de','','','2025-03-12 10:01:21','2025-03-12 10:01:21','',225,'https://nomudrvstorage.com/?post_type=acf-field&p=227',1,'acf-field','',0),(228,1,'2025-03-12 10:01:21','2025-03-12 10:01:21','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:4:\"rows\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Desc','about_desc','publish','closed','closed','','field_67d15b51994df','','','2025-03-12 10:01:21','2025-03-12 10:01:21','',225,'https://nomudrvstorage.com/?post_type=acf-field&p=228',2,'acf-field','',0),(229,1,'2025-03-12 10:03:01','2025-03-12 10:03:01','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67d15ab8994d8\";s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Top heading','main_heading','publish','closed','closed','','field_67d15b85d91ff','','','2025-03-12 10:03:01','2025-03-12 10:03:01','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=229',0,'acf-field','',0),(230,1,'2025-03-12 10:03:01','2025-03-12 10:03:01','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67d15ab8994d8\";s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Sub heading','heading','publish','closed','closed','','field_67d15b98d9200','','','2025-03-12 10:03:01','2025-03-12 10:03:01','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=230',1,'acf-field','',0),(231,1,'2025-03-12 10:03:01','2025-03-12 10:03:01','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67d15ab8994d8\";s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:4:\"rows\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Desc','desc','publish','closed','closed','','field_67d15ba9d9201','','','2025-03-12 10:03:01','2025-03-12 10:03:01','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=231',2,'acf-field','',0),(232,1,'2025-03-12 10:03:01','2025-03-12 10:03:01','a:18:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67d15ab8994d8\";s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Image','image','publish','closed','closed','','field_67d15bb9d9202','','','2025-03-12 10:03:01','2025-03-12 10:03:01','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=232',3,'acf-field','',0),(234,1,'2025-03-12 10:07:10','2025-03-12 10:07:10','','cameras','','inherit','open','closed','','cameras','','','2025-03-12 10:07:10','2025-03-12 10:07:10','',85,'https://nomudrvstorage.com/wp-content/uploads/2025/03/cameras.jpg',0,'attachment','image/jpeg',0),(235,1,'2025-03-12 10:08:16','2025-03-12 10:08:16','','GATE','','inherit','open','closed','','gate','','','2025-03-12 10:08:16','2025-03-12 10:08:16','',85,'https://nomudrvstorage.com/wp-content/uploads/2025/03/GATE.jpg',0,'attachment','image/jpeg',0),(236,1,'2025-03-12 10:10:04','2025-03-12 10:10:04','','Home','','inherit','closed','closed','','85-revision-v1','','','2025-03-12 10:10:04','2025-03-12 10:10:04','',85,'https://nomudrvstorage.com/?p=236',0,'revision','',0),(238,1,'2025-03-12 10:11:06','2025-03-12 10:11:06','','Home','','inherit','closed','closed','','85-revision-v1','','','2025-03-12 10:11:06','2025-03-12 10:11:06','',85,'https://nomudrvstorage.com/?p=238',0,'revision','',0),(239,1,'2025-03-12 10:12:37','2025-03-12 10:12:37','','Home','','inherit','closed','closed','','85-revision-v1','','','2025-03-12 10:12:37','2025-03-12 10:12:37','',85,'https://nomudrvstorage.com/?p=239',0,'revision','',0),(240,1,'2025-03-12 10:13:26','2025-03-12 10:13:26','','Home','','inherit','closed','closed','','85-revision-v1','','','2025-03-12 10:13:26','2025-03-12 10:13:26','',85,'https://nomudrvstorage.com/?p=240',0,'revision','',0),(242,1,'2025-03-12 10:15:35','2025-03-12 10:15:35','','Home','','inherit','closed','closed','','85-revision-v1','','','2025-03-12 10:15:35','2025-03-12 10:15:35','',85,'https://nomudrvstorage.com/?p=242',0,'revision','',0),(243,1,'2025-03-12 10:16:07','2025-03-12 10:16:07','','Home','','inherit','closed','closed','','85-revision-v1','','','2025-03-12 10:16:07','2025-03-12 10:16:07','',85,'https://nomudrvstorage.com/?p=243',0,'revision','',0),(244,1,'2025-03-12 10:55:31','2025-03-12 10:55:31','\n

Boat, RV, Vehicle, and Self Storage Options Available!

\n','Pricing','','inherit','closed','closed','','89-revision-v1','','','2025-03-12 10:55:31','2025-03-12 10:55:31','',89,'https://nomudrvstorage.com/?p=244',0,'revision','',0),(246,1,'2025-03-12 10:56:32','2025-03-12 10:56:32','\n

Boat, RV, Vehicle, and Self Storage Options Available!

\n','Pricing','','inherit','closed','closed','','89-revision-v1','','','2025-03-12 10:56:32','2025-03-12 10:56:32','',89,'https://nomudrvstorage.com/?p=246',0,'revision','',0),(247,1,'2025-03-12 10:57:15','2025-03-12 10:57:15','\n

Boat, RV, Vehicle, and Self Storage Options Available!

\n','Services','','inherit','closed','closed','','87-revision-v1','','','2025-03-12 10:57:15','2025-03-12 10:57:15','',87,'https://nomudrvstorage.com/?p=247',0,'revision','',0),(248,1,'2025-03-12 10:59:09','2025-03-12 10:59:09','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"page\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;}','Banner Section','banner-section','publish','closed','closed','','group_67d168d86ec9e','','','2025-03-12 10:59:09','2025-03-12 10:59:09','',0,'https://nomudrvstorage.com/?post_type=acf-field-group&p=248',0,'acf-field-group','',0),(249,1,'2025-03-12 10:59:09','2025-03-12 10:59:09','a:17:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Banner','web_banner','publish','closed','closed','','field_67d168d7b12e3','','','2025-03-12 10:59:09','2025-03-12 10:59:09','',248,'https://nomudrvstorage.com/?post_type=acf-field&p=249',0,'acf-field','',0),(250,1,'2025-03-12 10:59:46','2025-03-12 10:59:46','\n

Boat, RV, Vehicle, and Self Storage Options Available!

\n','Services','','inherit','closed','closed','','87-revision-v1','','','2025-03-12 10:59:46','2025-03-12 10:59:46','',87,'https://nomudrvstorage.com/?p=250',0,'revision','',0),(251,1,'2025-03-12 11:00:56','2025-03-12 11:00:56','\n

At our facility, we strive to provide you with the best possible customer service. Our friendly and knowledgeable staff is always available to assist you with any questions or concerns

\n','Services','','inherit','closed','closed','','87-revision-v1','','','2025-03-12 11:00:56','2025-03-12 11:00:56','',87,'https://nomudrvstorage.com/?p=251',0,'revision','',0),(253,1,'2025-03-12 11:05:55','2025-03-12 11:05:55','','GATE','','inherit','open','closed','','gate-2','','','2025-03-12 11:05:55','2025-03-12 11:05:55','',87,'https://nomudrvstorage.com/wp-content/uploads/2025/03/GATE-1.jpg',0,'attachment','image/jpeg',0),(254,1,'2025-03-12 11:06:00','2025-03-12 11:06:00','\n

At our facility, we strive to provide you with the best possible customer service. Our friendly and knowledgeable staff is always available to assist you with any questions or concerns

\n','Services','','inherit','closed','closed','','87-revision-v1','','','2025-03-12 11:06:00','2025-03-12 11:06:00','',87,'https://nomudrvstorage.com/?p=254',0,'revision','',0),(255,1,'2025-03-12 11:08:04','2025-03-12 11:08:04','','spaces','','inherit','open','closed','','spaces','','','2025-03-12 11:08:04','2025-03-12 11:08:04','',91,'https://nomudrvstorage.com/wp-content/uploads/2025/03/spaces.jpg',0,'attachment','image/jpeg',0),(257,1,'2025-03-12 11:09:04','2025-03-12 11:09:04','\n

Site layout
Security features
Access details
Amenities (wash stations, dump stations)

\n','Facilities','','inherit','closed','closed','','91-revision-v1','','','2025-03-12 11:09:04','2025-03-12 11:09:04','',91,'https://nomudrvstorage.com/?p=257',0,'revision','',0),(259,1,'2025-03-12 11:12:16','2025-03-12 11:12:16','','ariel_view','','inherit','open','closed','','ariel_view','','','2025-03-12 11:12:16','2025-03-12 11:12:16','',91,'https://nomudrvstorage.com/wp-content/uploads/2025/03/ariel_view.jpg',0,'attachment','image/jpeg',0),(260,1,'2025-03-12 11:12:30','2025-03-12 11:12:30','','cameras','','inherit','open','closed','','cameras-2','','','2025-03-12 11:12:30','2025-03-12 11:12:30','',91,'https://nomudrvstorage.com/wp-content/uploads/2025/03/cameras-1.jpg',0,'attachment','image/jpeg',0),(261,1,'2025-03-12 11:12:45','2025-03-12 11:12:45','','GATE','','inherit','open','closed','','gate-3','','','2025-03-12 11:12:45','2025-03-12 11:12:45','',91,'https://nomudrvstorage.com/wp-content/uploads/2025/03/GATE-2.jpg',0,'attachment','image/jpeg',0),(262,1,'2025-03-12 11:13:02','2025-03-12 11:13:02','','GATE2','','inherit','open','closed','','gate2','','','2025-03-12 11:13:02','2025-03-12 11:13:02','',91,'https://nomudrvstorage.com/wp-content/uploads/2025/03/GATE2.jpg',0,'attachment','image/jpeg',0),(263,1,'2025-03-12 11:13:18','2025-03-12 11:13:18','','spaces','','inherit','open','closed','','spaces-2','','','2025-03-12 11:13:18','2025-03-12 11:13:18','',91,'https://nomudrvstorage.com/wp-content/uploads/2025/03/spaces-1.jpg',0,'attachment','image/jpeg',0),(264,1,'2025-03-12 11:14:32','2025-03-12 11:14:32','\n

Site layout
Security features
Access details
Amenities (wash stations, dump stations)

\n','Facilities','','inherit','closed','closed','','91-revision-v1','','','2025-03-12 11:14:32','2025-03-12 11:14:32','',91,'https://nomudrvstorage.com/?p=264',0,'revision','',0),(265,1,'2025-03-12 11:17:42','2025-03-12 11:17:42','','Size Guide','','publish','closed','closed','','size-guide','','','2025-03-12 11:17:42','2025-03-12 11:17:42','',0,'https://nomudrvstorage.com/?p=265',6,'nav_menu_item','',0),(266,1,'2025-03-12 11:24:17','2025-03-12 11:24:17','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67d16e794364c\";s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Main heading','main_heading','publish','closed','closed','','field_67d16e794364d','','','2025-03-12 11:24:17','2025-03-12 11:24:17','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=266',0,'acf-field','',0),(267,1,'2025-03-12 11:24:17','2025-03-12 11:24:17','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67d16e794364c\";s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:4:\"rows\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Desc','desc','publish','closed','closed','','field_67d16e794364e','','','2025-03-12 11:24:17','2025-03-12 11:24:17','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=267',1,'acf-field','',0),(268,1,'2025-03-12 11:24:17','2025-03-12 11:24:17','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67d16e794364c\";s:6:\"layout\";s:5:\"table\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:9:\"collapsed\";s:0:\"\";s:12:\"button_label\";s:7:\"Add Row\";s:13:\"rows_per_page\";i:20;}','More option','more_option','publish','closed','closed','','field_67d16e794364f','','','2025-03-12 11:24:17','2025-03-12 11:24:17','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=268',2,'acf-field','',0),(269,1,'2025-03-12 11:24:17','2025-03-12 11:24:17','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Question','question','publish','closed','closed','','field_67d16e7943651','','','2025-03-12 11:24:17','2025-03-12 11:24:17','',268,'https://nomudrvstorage.com/?post_type=acf-field&p=269',0,'acf-field','',0),(270,1,'2025-03-12 11:24:17','2025-03-12 11:24:17','a:12:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Answer','answer','publish','closed','closed','','field_67d16e7943652','','','2025-03-12 11:24:17','2025-03-12 11:24:17','',268,'https://nomudrvstorage.com/?post_type=acf-field&p=270',1,'acf-field','',0),(271,1,'2025-03-12 11:27:01','2025-03-12 11:27:01','','FAQ','','inherit','closed','closed','','98-revision-v1','','','2025-03-12 11:27:01','2025-03-12 11:27:01','',98,'https://nomudrvstorage.com/?p=271',0,'revision','',0),(273,1,'2025-03-12 11:29:32','2025-03-12 11:29:32','','FAQ','','inherit','closed','closed','','98-revision-v1','','','2025-03-12 11:29:32','2025-03-12 11:29:32','',98,'https://nomudrvstorage.com/?p=273',0,'revision','',0),(274,1,'2025-03-12 11:37:01','2025-03-12 11:37:01','\n

Storage Solutions in Lake Elmo – Safe, Flexible, and Affordable

\n','Maplewood','','inherit','closed','closed','','104-revision-v1','','','2025-03-12 11:37:01','2025-03-12 11:37:01','',104,'https://nomudrvstorage.com/?p=274',0,'revision','',0),(275,1,'2025-03-12 12:43:17','2025-03-12 12:43:17','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67d1727f62d1f\";s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Heading','heading','publish','closed','closed','','field_67d172e410c9a','','','2025-03-12 12:43:17','2025-03-12 12:43:17','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=275',0,'acf-field','',0),(276,1,'2025-03-12 12:43:17','2025-03-12 12:43:17','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67d1727f62d1f\";s:13:\"default_value\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Desc','desc','publish','closed','closed','','field_67d172ee10c9b','','','2025-03-12 12:43:17','2025-03-12 12:43:17','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=276',1,'acf-field','',0),(277,1,'2025-03-12 12:43:17','2025-03-12 12:43:17','a:18:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67d1730e10c9c\";s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Image Left','left_image','publish','closed','closed','','field_67d1811810c9e','','','2025-03-12 12:43:17','2025-03-12 12:43:17','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=277',0,'acf-field','',0),(278,1,'2025-03-12 12:43:17','2025-03-12 12:43:17','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67d1730e10c9c\";s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Heading','heading','publish','closed','closed','','field_67d1813510c9f','','','2025-03-12 12:43:17','2025-03-12 12:43:17','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=278',1,'acf-field','',0),(279,1,'2025-03-12 12:43:17','2025-03-12 12:43:17','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67d1730e10c9c\";s:13:\"default_value\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Desc','desc','publish','closed','closed','','field_67d1814a10ca0','','','2025-03-12 12:43:17','2025-03-12 12:43:17','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=279',2,'acf-field','',0),(280,1,'2025-03-12 12:45:36','2025-03-12 12:45:36','a:18:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67d181709c081\";s:13:\"return_format\";s:3:\"url\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:12:\"preview_size\";s:6:\"medium\";}','Image Right','image','publish','closed','closed','','field_67d181709c082','','','2025-03-12 12:45:36','2025-03-12 12:45:36','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=280',0,'acf-field','',0),(281,1,'2025-03-12 12:45:36','2025-03-12 12:45:36','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67d181709c081\";s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Heading','heading','publish','closed','closed','','field_67d181709c083','','','2025-03-12 12:45:36','2025-03-12 12:45:36','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=281',1,'acf-field','',0),(282,1,'2025-03-12 12:45:36','2025-03-12 12:45:36','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67d181709c081\";s:13:\"default_value\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Desc','desc','publish','closed','closed','','field_67d181709c084','','','2025-03-12 12:45:36','2025-03-12 12:45:36','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=282',2,'acf-field','',0),(283,1,'2025-03-12 12:47:09','2025-03-12 12:47:09','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67d1822576a3a\";s:13:\"default_value\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";}','Heading','heading','publish','closed','closed','','field_67d1822576a3c','','','2025-03-12 12:47:09','2025-03-12 12:47:09','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=283',0,'acf-field','',0),(284,1,'2025-03-12 12:47:09','2025-03-12 12:47:09','a:13:{s:10:\"aria-label\";s:0:\"\";s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_67d1822576a3a\";s:13:\"default_value\";s:0:\"\";s:17:\"allow_in_bindings\";i:0;s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Desc','desc','publish','closed','closed','','field_67d1822576a3d','','','2025-03-12 12:47:09','2025-03-12 12:47:09','',147,'https://nomudrvstorage.com/?post_type=acf-field&p=284',1,'acf-field','',0),(286,1,'2025-03-12 12:51:30','2025-03-12 12:51:30','\n

Storage Solutions in Lake Elmo – Safe, Flexible, and Affordable

\n','Maplewood','','inherit','closed','closed','','104-revision-v1','','','2025-03-12 12:51:30','2025-03-12 12:51:30','',104,'https://nomudrvstorage.com/?p=286',0,'revision','',0),(287,1,'2025-03-12 12:52:42','2025-03-12 12:52:42','','Lake Elmo','','inherit','closed','closed','','101-revision-v1','','','2025-03-12 12:52:42','2025-03-12 12:52:42','',101,'https://nomudrvstorage.com/?p=287',0,'revision','',0),(288,1,'2025-03-12 12:56:07','2025-03-12 12:56:07','','Terms and Condition','','inherit','closed','closed','','134-revision-v1','','','2025-03-12 12:56:07','2025-03-12 12:56:07','',134,'https://nomudrvstorage.com/?p=288',0,'revision','',0),(290,1,'2025-03-12 12:56:37','2025-03-12 12:56:37','','Privacy and Policy','','inherit','closed','closed','','132-revision-v1','','','2025-03-12 12:56:37','2025-03-12 12:56:37','',132,'https://nomudrvstorage.com/?p=290',0,'revision','',0),(291,1,'2025-03-12 12:57:30','2025-03-12 12:57:30','','Privacy and Policy','','inherit','closed','closed','','132-revision-v1','','','2025-03-12 12:57:30','2025-03-12 12:57:30','',132,'https://nomudrvstorage.com/?p=291',0,'revision','',0); /*!40000 ALTER TABLE `I09Mposts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `I09Mterm_relationships` -- DROP TABLE IF EXISTS `I09Mterm_relationships`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `I09Mterm_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_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `I09Mterm_relationships` -- LOCK TABLES `I09Mterm_relationships` WRITE; /*!40000 ALTER TABLE `I09Mterm_relationships` DISABLE KEYS */; INSERT INTO `I09Mterm_relationships` VALUES (1,1,0),(107,16,0),(108,16,0),(109,16,0),(110,16,0),(115,16,0),(116,16,0),(125,16,0),(126,16,0),(127,16,0),(128,16,0),(129,16,0),(136,17,0),(137,17,0),(138,17,0),(139,17,0),(265,16,0); /*!40000 ALTER TABLE `I09Mterm_relationships` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `I09Mterm_taxonomy` -- DROP TABLE IF EXISTS `I09Mterm_taxonomy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `I09Mterm_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT 0, `taxonomy` varchar(32) NOT NULL DEFAULT '', `description` longtext 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=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `I09Mterm_taxonomy` -- LOCK TABLES `I09Mterm_taxonomy` WRITE; /*!40000 ALTER TABLE `I09Mterm_taxonomy` DISABLE KEYS */; INSERT INTO `I09Mterm_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'product_type','',0,0),(3,3,'product_type','',0,0),(4,4,'product_type','',0,0),(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,'nav_menu','',0,12),(17,17,'nav_menu','',0,4); /*!40000 ALTER TABLE `I09Mterm_taxonomy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `I09Mtermmeta` -- DROP TABLE IF EXISTS `I09Mtermmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `I09Mtermmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT 0, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `I09Mtermmeta` -- LOCK TABLES `I09Mtermmeta` WRITE; /*!40000 ALTER TABLE `I09Mtermmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `I09Mtermmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `I09Mterms` -- DROP TABLE IF EXISTS `I09Mterms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `I09Mterms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) NOT NULL DEFAULT '', `slug` varchar(200) 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=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `I09Mterms` -- LOCK TABLES `I09Mterms` WRITE; /*!40000 ALTER TABLE `I09Mterms` DISABLE KEYS */; INSERT INTO `I09Mterms` 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,'Header','header',0),(17,'Footer','footer',0); /*!40000 ALTER TABLE `I09Mterms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `I09Musermeta` -- DROP TABLE IF EXISTS `I09Musermeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `I09Musermeta` ( `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) unsigned NOT NULL DEFAULT 0, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=79 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `I09Musermeta` -- LOCK TABLES `I09Musermeta` WRITE; /*!40000 ALTER TABLE `I09Musermeta` DISABLE KEYS */; INSERT INTO `I09Musermeta` VALUES (1,1,'nickname','Marc'),(2,1,'first_name',''),(3,1,'last_name',''),(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,'I09Mcapabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'I09Muser_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"d85be4b31b7379d98e14db99241f4706b5ae0a18b676b51214c3750b2c3e6a91\";a:4:{s:10:\"expiration\";i:1741972973;s:2:\"ip\";s:12:\"38.52.49.114\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\";s:5:\"login\";i:1741800173;}}'),(17,1,'I09Mdashboard_quick_press_last_post_id','5'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:10:\"38.52.49.0\";}'),(40,1,'_yoast_wpseo_profile_updated','1741567727'); /*!40000 ALTER TABLE `I09Musermeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `I09Musers` -- DROP TABLE IF EXISTS `I09Musers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `I09Musers` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_login` varchar(60) NOT NULL DEFAULT '', `user_pass` varchar(255) NOT NULL DEFAULT '', `user_nicename` varchar(50) NOT NULL DEFAULT '', `user_email` varchar(100) NOT NULL DEFAULT '', `user_url` varchar(100) NOT NULL DEFAULT '', `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_activation_key` varchar(255) NOT NULL DEFAULT '', `user_status` int(11) NOT NULL DEFAULT 0, `display_name` varchar(250) 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=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `I09Musers` -- LOCK TABLES `I09Musers` WRITE; /*!40000 ALTER TABLE `I09Musers` DISABLE KEYS */; INSERT INTO `I09Musers` VALUES (1,'Marc','$P$BIZ/nm2H4UdMVOqaWpGZs/I17rD8rt1','marc','marc@rezosystems.com','https://nomudrvstorage.com','2025-03-04 22:21:23','',0,'Marc'); /*!40000 ALTER TABLE `I09Musers` ENABLE KEYS */; UNLOCK TABLES; /*!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 2025-05-17 0:10:53