-- MySQL dump 10.16  Distrib 10.2.11-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: diamon97_wp622
-- ------------------------------------------------------
-- Server version	10.2.11-MariaDB-log

/*!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 */;

--
-- Table structure for table `wpyt_commentmeta`
--

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

--
-- Dumping data for table `wpyt_commentmeta`
--

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

--
-- Table structure for table `wpyt_comments`
--

DROP TABLE IF EXISTS `wpyt_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpyt_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_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))
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpyt_comments`
--

LOCK TABLES `wpyt_comments` WRITE;
/*!40000 ALTER TABLE `wpyt_comments` DISABLE KEYS */;
INSERT INTO `wpyt_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2018-11-29 02:08:07','2018-11-29 02:08:07','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 <a href=\"https://gravatar.com\">Gravatar</a>.',0,'1','','',0,0);
/*!40000 ALTER TABLE `wpyt_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpyt_links`
--

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

--
-- Dumping data for table `wpyt_links`
--

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

--
-- Table structure for table `wpyt_options`
--

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

--
-- Dumping data for table `wpyt_options`
--

LOCK TABLES `wpyt_options` WRITE;
/*!40000 ALTER TABLE `wpyt_options` DISABLE KEYS */;
INSERT INTO `wpyt_options` VALUES (1,'siteurl','http://nautilusmarineservice.com','yes'),(2,'home','http://nautilusmarineservice.com','yes'),(3,'blogname','My Blog','yes'),(4,'blogdescription','My WordPress Blog','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','wendell.koi@seaprosolutions.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:154:{s:46:\"um-download/([^/]+)/([^/]+)/([^/]+)/([^/]+)/?$\";s:111:\"index.php?um_action=download&um_form=$matches[1]&um_field=$matches[2]&um_user=$matches[3]&um_verify=$matches[4]\";s:15:\"user/([^/]+)/?$\";s:47:\"index.php?page_id=213&um_user=$matches[1]&lang=\";s:17:\"account/([^/]+)?$\";s:46:\"index.php?page_id=218&um_tab=$matches[1]&lang=\";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:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:32:\"category/(.+?)/um-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&um-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:29:\"tag/([^/]+)/um-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&um-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:35:\"um_form/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"um_form/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"um_form/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"um_form/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"um_form/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"um_form/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"um_form/([^/]+)/embed/?$\";s:40:\"index.php?um_form=$matches[1]&embed=true\";s:28:\"um_form/([^/]+)/trackback/?$\";s:34:\"index.php?um_form=$matches[1]&tb=1\";s:36:\"um_form/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?um_form=$matches[1]&paged=$matches[2]\";s:43:\"um_form/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?um_form=$matches[1]&cpage=$matches[2]\";s:33:\"um_form/([^/]+)/um-api(/(.*))?/?$\";s:48:\"index.php?um_form=$matches[1]&um-api=$matches[3]\";s:39:\"um_form/[^/]+/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:50:\"um_form/[^/]+/attachment/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:32:\"um_form/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?um_form=$matches[1]&page=$matches[2]\";s:24:\"um_form/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"um_form/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"um_form/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"um_form/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"um_form/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"um_form/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"um_directory/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"um_directory/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"um_directory/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"um_directory/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"um_directory/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"um_directory/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"um_directory/([^/]+)/embed/?$\";s:45:\"index.php?um_directory=$matches[1]&embed=true\";s:33:\"um_directory/([^/]+)/trackback/?$\";s:39:\"index.php?um_directory=$matches[1]&tb=1\";s:41:\"um_directory/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?um_directory=$matches[1]&paged=$matches[2]\";s:48:\"um_directory/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?um_directory=$matches[1]&cpage=$matches[2]\";s:38:\"um_directory/([^/]+)/um-api(/(.*))?/?$\";s:53:\"index.php?um_directory=$matches[1]&um-api=$matches[3]\";s:44:\"um_directory/[^/]+/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:55:\"um_directory/[^/]+/attachment/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:37:\"um_directory/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?um_directory=$matches[1]&page=$matches[2]\";s:29:\"um_directory/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"um_directory/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"um_directory/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"um_directory/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"um_directory/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"um_directory/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:57:\"wpforms_log_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:69:\"index.php?taxonomy=wpforms_log_type&term=$matches[1]&feed=$matches[2]\";s:52:\"wpforms_log_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:69:\"index.php?taxonomy=wpforms_log_type&term=$matches[1]&feed=$matches[2]\";s:33:\"wpforms_log_type/([^/]+)/embed/?$\";s:63:\"index.php?taxonomy=wpforms_log_type&term=$matches[1]&embed=true\";s:45:\"wpforms_log_type/([^/]+)/page/?([0-9]{1,})/?$\";s:70:\"index.php?taxonomy=wpforms_log_type&term=$matches[1]&paged=$matches[2]\";s:27:\"wpforms_log_type/([^/]+)/?$\";s:52:\"index.php?taxonomy=wpforms_log_type&term=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=51&cpage=$matches[1]\";s:17:\"um-api(/(.*))?/?$\";s:29:\"index.php?&um-api=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:26:\"comments/um-api(/(.*))?/?$\";s:29:\"index.php?&um-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:29:\"search/(.+)/um-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&um-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:32:\"author/([^/]+)/um-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&um-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/um-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&um-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:41:\"([0-9]{4})/([0-9]{1,2})/um-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&um-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:28:\"([0-9]{4})/um-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&um-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:62:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/um-api(/(.*))?/?$\";s:99:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&um-api=$matches[6]\";s:62:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:73:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:25:\"(.?.+?)/um-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&um-api=$matches[3]\";s:31:\".?.+?/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/um-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&um-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:7:{i:0;s:23:\"elementor/elementor.php\";i:1;s:53:\"famethemes-demo-importer/famethemes-demo-importer.php\";i:2;s:19:\"jetpack/jetpack.php\";i:3;s:33:\"sydney-toolbox/sydney-toolbox.php\";i:4;s:43:\"themeisle-companion/themeisle-companion.php\";i:5;s:35:\"ultimate-member/ultimate-member.php\";i:6;s:24:\"wpforms-lite/wpforms.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','sydney','yes'),(41,'stylesheet','sydney','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','43764','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:1:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','52','yes'),(84,'page_on_front','51','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'wp_page_for_privacy_policy','3','yes'),(92,'show_comments_cookies_opt_in','0','yes'),(93,'initial_db_version','38590','yes'),(94,'wpyt_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{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:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(95,'fresh_site','0','yes'),(96,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(99,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'sidebars_widgets','a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:1:{i:0;s:16:\"wpforms-widget-2\";}s:8:\"footer-1\";a:1:{i:0;s:21:\"sydney_contact_info-2\";}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(377,'um_cache_userdata_3','a:56:{s:2:\"ID\";i:3;s:10:\"user_login\";s:15:\"linoschrader044\";s:9:\"user_pass\";s:34:\"$P$Bk9wAsm0Sv.H26P4co5.mMXy6R6qN1.\";s:13:\"user_nicename\";s:15:\"linoschrader044\";s:10:\"user_email\";s:20:\"gerty@buygsalist.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2018-11-29 22:51:08\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:13:\"Lino Schrader\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;s:8:\"nickname\";s:15:\"linoschrader044\";s:10:\"first_name\";s:4:\"Lino\";s:9:\"last_name\";s:8:\"Schrader\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:19:\"syntax_highlighting\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:6:\"locale\";s:0:\"\";s:17:\"wpyt_capabilities\";s:28:\"a:1:{s:10:\"subscriber\";b:1;}\";s:15:\"wpyt_user_level\";s:1:\"0\";s:25:\"synced_gravatar_hashed_id\";s:32:\"6694f6b804a20af754c6983dc3519b15\";s:9:\"submitted\";s:319:\"a:9:{s:7:\"form_id\";s:3:\"209\";s:9:\"timestamp\";s:10:\"1543531862\";s:7:\"request\";s:0:\"\";s:8:\"_wpnonce\";s:10:\"b5840fc901\";s:16:\"_wp_http_referer\";s:22:\"/development/register/\";s:10:\"user_login\";s:15:\"linoschrader044\";s:10:\"first_name\";s:4:\"Lino\";s:9:\"last_name\";s:8:\"Schrader\";s:10:\"user_email\";s:20:\"gerty@buygsalist.com\";}\";s:7:\"form_id\";s:3:\"209\";s:9:\"timestamp\";s:10:\"1543531862\";s:7:\"request\";s:0:\"\";s:8:\"_wpnonce\";s:10:\"b5840fc901\";s:16:\"_wp_http_referer\";s:22:\"/development/register/\";s:35:\"um_user_profile_url_slug_user_login\";s:15:\"linoschrader044\";s:9:\"full_name\";s:15:\"linoschrader044\";s:14:\"account_status\";s:8:\"approved\";s:14:\"_um_last_login\";s:10:\"1543531870\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"role\";s:10:\"subscriber\";s:5:\"roles\";a:1:{i:0;s:10:\"subscriber\";}s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:16:\"default_homepage\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"super_admin\";i:0;}','no'),(102,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_media_video','a:2:{i:1;a:11:{s:13:\"attachment_id\";i:0;s:3:\"url\";s:43:\"https://www.youtube.com/watch?v=7iBqEknWOiU\";s:5:\"title\";s:0:\"\";s:7:\"preload\";s:8:\"metadata\";s:4:\"loop\";b:0;s:7:\"content\";s:0:\"\";s:3:\"mp4\";s:0:\"\";s:3:\"m4v\";s:0:\"\";s:4:\"webm\";s:0:\"\";s:3:\"ogv\";s:0:\"\";s:3:\"flv\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'cron','a:11:{i:1547069859;a:1:{s:26:\"um_hourly_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1547071687;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:1547071704;a:1:{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:1547080659;a:1:{s:30:\"um_twicedaily_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1547086087;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}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:1547086115;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1547118692;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1547123744;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:1547123770;a:1:{s:28:\"um_check_extensions_licenses\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1547123859;a:2:{s:26:\"um_weekly_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s:25:\"um_daily_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}','yes'),(112,'theme_mods_twentyseventeen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1543457677;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(1108,'_site_transient_timeout_theme_roots','1547063078','no'),(1109,'_site_transient_theme_roots','a:7:{s:8:\"onepress\";s:7:\"/themes\";s:5:\"orfeo\";s:7:\"/themes\";s:6:\"sydney\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','no'),(122,'smm_version','1.3.1','yes'),(123,'disable_smm','0','yes'),(124,'wpforms_shareasale_id','1587694','yes'),(125,'jetpack_sync_settings_disable','0','yes'),(126,'widget_wpforms-widget','a:2:{i:2;a:4:{s:5:\"title\";s:7:\"Contact\";s:7:\"form_id\";i:306;s:10:\"show_title\";b:0;s:9:\"show_desc\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(130,'do_activate','0','yes'),(131,'jetpack_activated','2','yes'),(1126,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1547104482','no'),(1127,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1547061282','no'),(1128,'_transient_timeout_feed_acfb94f16410e8193f15ed3900b38226','1547104483','no'),(1129,'_transient_feed_acfb94f16410e8193f15ed3900b38226','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\n \n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"WPForms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"https://wpforms.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"Drag & Drop WordPress Form Builder\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Jan 2019 15:17:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wordpress.org/?v=4.9.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wpforms.com/wp-content/uploads/2016/02/cropped-sullie-favicon-32x32.png\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"WPForms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"https://wpforms.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"Top Questions to Ask on an Employee Satisfaction Survey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wpforms.com/top-questions-to-ask-on-an-employee-satisfaction-survey/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wpforms.com/top-questions-to-ask-on-an-employee-satisfaction-survey/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 07 Jan 2019 13:00:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:9:\"Marketing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"smart logic\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:12:\"likert scale\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"survey form\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:16:\"survey questions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:14:\"NPS form field\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wpforms.com/?p=353182\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:620:\"<p>Are you looking for ways to gauge employee satisfaction and improve your business? One of the best ways to make positive internal changes is to conduct an employee satisfaction survey. In this article, we’ll discuss some of the top questions to include in your employee survey. Why Conduct Employee Satisfaction Surveys? There’s no denying that [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/top-questions-to-ask-on-an-employee-satisfaction-survey/\">Top Questions to Ask on an Employee Satisfaction Survey</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Lindsay Liedke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:12708:\"<p>Are you looking for ways to gauge employee satisfaction and improve your business? One of the best ways to make positive internal changes is to conduct an employee satisfaction survey.</p>\n<p>In this article, we’ll discuss some of the top questions to include in your employee survey.</p>\n<h3>Why Conduct Employee Satisfaction Surveys?</h3>\n<p>There’s no denying that employees that are happy working for you are more engaged and committed to working for your company.</p>\n<p>One way to find out just how happy your employees are is to conduct an annual employee survey so people can express what they like and dislike about working for your company.</p>\n<p>Here are some additional benefits to conducting an employee satisfaction survey:</p>\n<ul>\n<li><strong>Improve Your Business:</strong> Identifying areas for improvement and ways to manage your business more effectively is easy when you listen to the people that deal with management on a daily basis. Your employees will have a different perspective and can highlight obstacles you didn’t know existed.</li>\n<li><strong>Boost Employee Satisfaction:</strong> Discover what motivates your employees, what brings their morale down, and what they wish you would do differently by analyzing employee survey results. The more satisfied your employees, the more productive they’ll be, which is a win-win for you and them.</li>\n<li><strong>Better Data Collection:</strong> When you conduct a survey on your website using a reliable survey solution such as <a href=\"https://wpforms.com\">WPForms</a>, you can collect data in one convenient location. Plus, you can organize survey results, access survey answers, and export specific questions for each department so improvements can begin right away.</li>\n</ul>\n<p>Of course, there are other reasons why you should find out what is on your employees’ minds. For instance, you can improve communication, change the workplace climate, solve issues before someone leaves, and gather new business ideas from those that are most involved with the day to day operations of your business.</p>\n<p>If you want to create an employee satisfaction survey on your WordPress site, check out this helpful tutorial on <a href=\"https://wpforms.com/create-a-survey-form-in-wordpress-step-by-step/\">how to create a survey form in WordPress</a>.</p>\n<p>Now let’s take a look at some of the most important employee survey questions you should be asking everyone that works for you.</p>\n<h3>The Best Employee Satisfaction Survey Questions</h3>\n<p>There are many areas you can explore when it comes to your employee surveys.</p>\n<p>For example, you might want to ask employee survey questions related to:</p>\n<ul>\n<li>Compensation – find out whether you’re paying people what they think they’re worth.</li>\n<li>Benefits – determine whether the health insurance, retirement plans, paid vacation time, and more are satisfactory.</li>\n<li>Career Development – do employees feel there is room to grow within your business? Are you challenging them enough? Find out whether you’re investing enough time and effort in training people to move up within your company.</li>\n<li>Management Performance – your employees are only as good as their leaders. Learn what those that work for you think about their supervisor, whether that be you or another hired manager within the company.</li>\n<li>Work Environment – inclusiveness, diversity, and work culture play a role in how satisfied your employees are.</li>\n<li>Team Performance – find out how your employees feel the teams they’re on are performing and what areas can be improved.</li>\n</ul>\n<p>Knowing what categories to touch on in your employee surveys is just half the battle. Take a look at some specific questions to help you get your employee surveys forms started.</p>\n<p><strong>1. How Happy Are You at Work?</strong></p>\n<p>If you want to gauge employee satisfaction, and find out whether they’re happy working for you, ask them. This is a direct question that anyone can answer and gives you a serious look into company morale.</p>\n<p>The easiest way to set up a question like this is to use a <a href=\"https://wpforms.com/sample-likert-scale-questions-for-wordpress-survey-forms/\">Likert Scale form field</a> on your employee survey form and have employees answer on a scale of 1 to 7 how happy they are working for you.</p>\n<p><strong>2. I Would Recommend My Company as a Great Place to Work<br />\n</strong></p>\n<p>Using a <a href=\"https://wpforms.com/how-to-create-a-net-promoter-score-nps-survey-in-wordpress/\">Net Promoter Score (NPS) form field</a>, you can easily determine whether your employees would recommend your business as a great place to work or not.</p>\n<p><img class=\"alignnone size-full wp-image-353188\" src=\"https://wpforms.com/wp-content/uploads/2019/01/NPS-score-form-field.png\" alt=\"NPS score form field\" width=\"562\" height=\"128\" srcset=\"https://wpforms.com/wp-content/uploads/2019/01/NPS-score-form-field.png 562w, https://wpforms.com/wp-content/uploads/2019/01/NPS-score-form-field-300x68.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Though this employee survey question doesn’t give you the whole story, it’s a great starting place. After all, some people may be planning to leave your company soon, but might still recommend it to others.</p>\n<p>That said, a consistent NPS from employees shows you that you’re doing something right.</p>\n<p><strong>3. Do You Have a Clear Understanding of Your Path to Promotion?<br />\n</strong></p>\n<p>A <a href=\"https://www.gallup.com/workplace/236552/managers-engaged-jobs.aspx\" target=\"_blank\" rel=\"nofollow noopener\">study by Gallup</a> found that those that are given the opportunity to develop within a company are twice as likely to stay with a company.</p>\n<p>Make sure your employees understand what their growth opportunities are and what it takes to get promoted from within.</p>\n<p>If you find that people are unsure about how to grow alongside your business, begin offering more training sessions to develop employees’ skills and prevent them from finding work elsewhere.</p>\n<p><strong>4. Do You Have the Tools and Resources Needed to Perform Your Job Well?<br />\n</strong></p>\n<p>You may not realize that your employees are not reaching their full potential because of a lack of resources or tools.</p>\n<p>Luckily, this is an easy fix that will show employees you care about their ability to do their job well. It will also improve your business too.</p>\n<p>You can ask a simple “Yes” or “No” multiple choice question on your employee satisfaction survey form.</p>\n<p>Then, using <a href=\"https://wpforms.com/how-to-create-clutter-free-forms-with-smart-logic/\">WPForms’ smart conditional logic</a>, display an additional form field for those that answer “No” to find out what tool and resources they’re lacking so you can look into providing them.</p>\n<p><img class=\"alignnone wp-image-353189\" src=\"https://wpforms.com/wp-content/uploads/2019/01/smart-conditional-logic.gif\" alt=\"smart conditional logic\" width=\"562\" height=\"329\" /></p>\n<p><strong>5. Do You Feel Valued at Work?</strong><br />\nOnly <a href=\"https://www.tinypulse.com/2014-employee-engagement-organizational-culture-report?__hstc=225544837.46be13fd049a18041d31cd4647810ece.1546496149381.1546496149381.1546747077173.2&amp;__hssc=225544837.1.1546747077173&amp;__hsfp=3208895436\" target=\"_blank\" rel=\"nofollow noopener\">21% of employees</a> feel strongly valued at work.</p>\n<p>In addition, another <a href=\"https://www.octanner.com/content/dam/oc-tanner/documents/global-research/White_Paper_Performance_Accelerated.pdf\" target=\"_blank\" rel=\"nofollow noopener\">79% of people</a> claim that “lack of appreciation” is the reason for leaving an otherwise good job.</p>\n<p>The truth is, people will work harder for you if they feel valued, appreciated, and like they mean something to the company.</p>\n<p>You may think you are appreciating those that make your business a success, but your employees may have other feelings. Don’t let your employees leave because of your lack of appreciation.</p>\n<p>Adding to this, you might want to ask your employees how they feel their supervisors do when it comes to recognition. This can be done using a Dropdown or Multiple Choice form field to make answering simple on your employees.</p>\n<p><img class=\"alignnone size-full wp-image-353187\" src=\"https://wpforms.com/wp-content/uploads/2019/01/manager-recognition-dropdown.png\" alt=\"manager recognition dropdown\" width=\"562\" height=\"180\" srcset=\"https://wpforms.com/wp-content/uploads/2019/01/manager-recognition-dropdown.png 562w, https://wpforms.com/wp-content/uploads/2019/01/manager-recognition-dropdown-300x96.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Without enough recognition, morale and work engagement will begin to drop. You might even notice a loss in productivity.</p>\n<p>The old rule, critique once, recognize twice is always a good motto for you and your managers to follow. But first, find out just how your employees feel by asking them.</p>\n<p><strong>6. How Satisfied Are You with the Company’s Benefits Package?<br />\n</strong></p>\n<p>This is best set up as a Likert Scale listing all the benefits you offer employees.</p>\n<p><img class=\"alignnone size-full wp-image-353185\" src=\"https://wpforms.com/wp-content/uploads/2019/01/benefits-package-likert-scale.png\" alt=\"benefits package likert scale\" width=\"562\" height=\"403\" srcset=\"https://wpforms.com/wp-content/uploads/2019/01/benefits-package-likert-scale.png 562w, https://wpforms.com/wp-content/uploads/2019/01/benefits-package-likert-scale-300x215.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>The benefits package you offer employees can be used to retain current employees and attract new ones to your company. Finding out where you might be missing a vital benefit is crucial to the success of your business since this plays into employee satisfaction.</p>\n<p><strong>7. Do You Feel Your Supervisors Take Your Feedback Seriously?</strong><br />\nPart of growing with a company is feeling like you have a voice. No one wants to work for a company that doesn’t listen to their feedback or take their suggestions seriously.</p>\n<p>Find out how comfortable your employees are with speaking up when they have ideas or even concerns. Plus, find out whether they feel those in charge of making decisions value what they have to say.</p>\n<p>The more involved your employees feel, the more productive and successful your business will be in the long run.</p>\n<p><strong>8. Do You Feel You Understand Our Organization’s Values?</strong><br />\nIt’s not enough to have your company’s vision, mission, and cultural values laid out in a document for employees to read. The last thing you want is to find out that people are working for you without any real understanding of how they’re actually contributing to the company.</p>\n<p>Want to add another question that will shed light on how your employees feel about your company’s culture? Ask them to write three words that describe your organization’s culture. With these results you can find ways to improve your business’ culture to fit the needs of your employees.</p>\n<p>And there you have it! You now know some vital questions to ask on an employee satisfaction survey.</p>\n<p>Want to make sure your employees fill out your employee satisfaction survey? Check out this article outlining <a href=\"https://wpforms.com/survey-question-mistakes-to-avoid-if-you-want-real-results/\">survey question mistakes to avoid</a> if you want real results.</p>\n<p>And if you’re still not sure whether WPForms is the very best WordPress form builder around, make sure to <a href=\"https://wpforms.com/user-reviews/\">see what our happy customers have to say</a>. Don&#8217;t forget to check out our <a href=\"https://wpforms.com/demo/survey-form-demo/\">survey form demo</a> too, so you can see just how easy it is to create an employee satisfaction survey.</p>\n<p>So, what are you waiting for? Get started with the most powerful <a href=\"https://wpforms.com\">WordPress forms plugin</a> today.</p>\n<p>And don’t forget, if you like this article, then please follow us on <a href=\"https://www.facebook.com/wpforms\" target=\"_blank\" rel=\"nofollow noopener\">Facebook</a> and <a href=\"http://twitter.com/easywpforms\" target=\"_blank\" rel=\"nofollow noopener\">Twitter</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/top-questions-to-ask-on-an-employee-satisfaction-survey/\">Top Questions to Ask on an Employee Satisfaction Survey</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wpforms.com/top-questions-to-ask-on-an-employee-satisfaction-survey/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:57:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"3 Ways to Connect with Alumni after Graduation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wpforms.com/ways-to-connect-with-alumni-after-graduation/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wpforms.com/ways-to-connect-with-alumni-after-graduation/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Jan 2019 13:00:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:9:\"Marketing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:12:\"registration\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:14:\"form templates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:16:\"email newsletter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:11:\"survey form\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:11:\"alumni form\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wpforms.com/?p=349985\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:576:\"<p>Are you looking for ways to connect with your graduating students long after they leave campus for the very last time? Knowing how to connect with alumni after graduation is important because they are more likely to contribute if they feel strongly connected to their alma mater. In this article, we’ll share with you some [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/ways-to-connect-with-alumni-after-graduation/\">3 Ways to Connect with Alumni after Graduation</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Lindsay Liedke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11822:\"<p>Are you looking for ways to connect with your graduating students long after they leave campus for the very last time? Knowing how to connect with alumni after graduation is important because they are more likely to contribute if they feel strongly connected to their alma mater.</p>\n<p>In this article, we’ll share with you some of the best ways to connect with alumni after graduation.</p>\n<h3>Why Connect with Alumni?</h3>\n<p>Staying connected with those that graduate from your institution is important for maintaining long-term relationships with those that once helped your school thrive.</p>\n<p>Here are the top reasons you should work hard to connect with alumni after graduation day:</p>\n<ul>\n<li><strong>Repeat Business:</strong> Graduates that donate once are more likely to donate again in the future. It’s easier to retain old customers than it is to acquire new ones.</li>\n<li><strong>Positive Word of Mouth:</strong> People love to talk about their past experiences and alumni are no different. Maintaining positive relationships with those that graduate, and offering them exclusive access to alumni services, means more positive referrals coming your way.</li>\n<li><strong>Recruitment Opportunities:</strong> There’s nothing better than using past graduates to convince those looking to start college to go to your school. If you stay in touch with graduates, you can ask them to be a part of the recruitment process.</li>\n<li><strong>Better Rankings:</strong> If you want your school to rank well in the country, you’re going to need glowing references from alumni. If you don’t stay in touch with graduates, how can you expect to get them to review your school and help your rankings?</li>\n</ul>\n<p>As you can see, connecting with alumni is important to the success of your institution.</p>\n<p>Let’s take a look at how you can start actively engaging with alumni and nurturing long-lasting relationships.</p>\n<h3>1. Publish an Online Alumni Magazine</h3>\n<p>Much like the <a href=\"https://harvardmagazine.com/\" target=\"_blank\" rel=\"nofollow noopener\">Harvard Magazine</a>, founded by alumni for alumni, your institution can publish an online magazine designed to keep alumni connected to each other and the university they once attended.</p>\n<p><img class=\"alignnone size-full wp-image-349987\" src=\"https://wpforms.com/wp-content/uploads/2019/01/alumni-magazine.png\" alt=\"alumni magazine\" width=\"562\" height=\"382\" srcset=\"https://wpforms.com/wp-content/uploads/2019/01/alumni-magazine.png 562w, https://wpforms.com/wp-content/uploads/2019/01/alumni-magazine-300x204.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Here are some of the things you can include in your publication:</p>\n<ul>\n<li>Work alumni are doing for the university and community</li>\n<li>Research being performed by alumni and current students</li>\n<li>Upcoming events, conferences, and talks alumni might be interested in attending</li>\n<li>Career-related advice and job listings to help alumni looking for inspiration or a job</li>\n<li>Ways to get involved with the school</li>\n<li>Touching essays penned by graduates</li>\n<li>Professor profiles and the work they’ve been doing</li>\n<li>How to donate, as well as a <a href=\"https://wpforms.com/how-to-create-a-donation-form-popup-in-wordpress/\">donation form</a> so alumni can contribute right away</li>\n</ul>\n<p>The best way to let your alumni know new content has been published or a new issue has been released is via email. That’s why having an email newsletter signup form on your organization’s official website is so important.</p>\n<p>WPForms has a newsletter signup form template that makes collecting alumni emails simple. All graduates have to do is enter their name and email and they’ll be added to your email list.</p>\n<p>WPForms integrates with the following <a href=\"http://www.wpbeginner.com/showcase/best-email-marketing-services/\" target=\"_blank\" rel=\"noopener\">email marketing service providers</a> and makes adding a signup checkbox to them all easy to do:</p>\n<ul>\n<li><a href=\"https://wpforms.com/how-to-add-a-getresponse-signup-checkbox-to-your-contact-form/\">GetResponse</a></li>\n<li><a href=\"https://wpforms.com/how-to-add-an-aweber-signup-checkbox-to-your-contact-form/\">AWeber</a></li>\n<li><a href=\"https://wpforms.com/how-to-add-a-constant-contact-signup-checkbox-to-a-wordpress-form/\">Constant Contact</a></li>\n<li><a href=\"https://wpforms.com/how-to-add-a-mailchimp-signup-checkbox-to-your-contact-form/\">MailChimp</a></li>\n<li><a href=\"https://wpforms.com/how-to-create-a-drip-signup-form-in-wordpress-updated/\">Drip</a></li>\n<li><a href=\"https://wpforms.com/how-to-create-a-campaign-monitor-subscribe-form-in-wordpress/\">Campaign Monitor</a></li>\n</ul>\n<p>Unless alumni regularly come to your website looking for new content, they’ll never know you’ve published another magazine. This hurts your chances of staying connected to those that no longer attend your school.</p>\n<p>Want to collect content for your alumni magazine from graduates themselves? Learn how to <a href=\"https://wpforms.com/how-to-allow-users-to-submit-blog-posts-on-your-wordpress-site/\">accept post submissions on your WordPress site</a> so you can start highlighting past students.</p>\n<h3>2. Host Events and Feature Alumni</h3>\n<p>Hosting events on campus is a great way to bring alumni back to their alma mater to reminisce about their college days and stay connected.</p>\n<p>Here are some event ideas that alumni can either attend or become actively involved in:</p>\n<ul>\n<li>Sporting events</li>\n<li>Informational sessions about graduate school</li>\n<li>Speaking events highlighting industry professionals or involving alumni</li>\n<li>Job or career fairs that alumni can use to get a job or hire people for their own businesses</li>\n</ul>\n<p>No matter which kind of event you want to organize, remember, alumni will be most engaged if you make it all about them.</p>\n<p>For example, sell merchandise like the shirts sold by <a href=\"https://www.unlvalumni.org/events\" target=\"_blank\" rel=\"nofollow noopener\">UNLV</a> that are made specifically for alumni that can be worn to alumni specific events.</p>\n<p><img class=\"alignnone size-full wp-image-349990\" src=\"https://wpforms.com/wp-content/uploads/2019/01/alumni-events.png\" alt=\"alumni events\" width=\"562\" height=\"244\" srcset=\"https://wpforms.com/wp-content/uploads/2019/01/alumni-events.png 562w, https://wpforms.com/wp-content/uploads/2019/01/alumni-events-300x130.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Need a great way to register alumni for an upcoming event? Use any of WPForms’ registration form templates:</p>\n<ul>\n<li>Conference Registration</li>\n<li>Fundraiser Registration</li>\n<li>High School Reunion Registration (customized for college)</li>\n<li>Online Event Registration</li>\n<li>Workshop Registration</li>\n<li>Webinar Registration</li>\n</ul>\n<p>WPForms’s registration form templates are fully customizable to meet your needs. You can add or remove form fields as needed so you can register alumni for any type of event you’re hosting in their honor.</p>\n<p><img class=\"alignnone size-full wp-image-349986\" src=\"https://wpforms.com/wp-content/uploads/2019/01/alumni-event-registration.png\" alt=\"alumni event registration\" width=\"562\" height=\"497\" srcset=\"https://wpforms.com/wp-content/uploads/2019/01/alumni-event-registration.png 562w, https://wpforms.com/wp-content/uploads/2019/01/alumni-event-registration-300x265.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>For example, integrate your registration form with <a href=\"https://wpforms.com/addons/paypal-standard-addon/\">PayPal</a> or <a href=\"https://wpforms.com/addons/stripe-addon/\">Stripe</a> to collect payment for events, send out email notifications with more information about the event, allow alumni to choose which day they’s like to attend if it’s a multi-day event, and more.</p>\n<p>This is also a great opportunity to add more alumni to your email list if they agree to subscribe to your newsletter.</p>\n<h3>3. Let Alumni Voice Their Opinion</h3>\n<p>There are always going to be things about going to college that past graduates really liked and things they hated. Luckily, you can collect the opinions of your alumni and use whatever they have to say to improve current students’ experiences.</p>\n<p>Invite alumni to visit your website and take your online survey about their time as a student at your school. Or, encourage site visitors to set aside some time and answer your pressing questions.</p>\n<p>No matter how you convince people to voice their opinions, use a WordPress form builder with powerful survey features such as the ones seen in WPForms to collect the data you need to improve your institution and reputation.</p>\n<p><img class=\"alignnone size-full wp-image-349988\" src=\"https://wpforms.com/wp-content/uploads/2019/01/alumni-survey.png\" alt=\"alumni survey\" width=\"562\" height=\"518\" srcset=\"https://wpforms.com/wp-content/uploads/2019/01/alumni-survey.png 562w, https://wpforms.com/wp-content/uploads/2019/01/alumni-survey-300x277.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>WPForms comes with a variety of survey form templates, features, and form fields so you can find out all the information you need from alumni:</p>\n<ul>\n<li>Responsive design so graduates on mobile devices can fill out forms</li>\n<li>Multi-page forms for those times you need to ask a lot of questions</li>\n<li><a href=\"https://wpforms.com/how-to-add-a-likert-scale-to-your-wordpress-forms-step-by-step/\">Likert scale</a> form fields for measuring people’s experiences or opinions</li>\n<li>Poll form templates for asking simple, one-off questions</li>\n<li>Suggestion and feedback form templates for getting concrete ideas from alumni</li>\n<li><a href=\"https://wpforms.com/how-to-easily-enable-conditional-logic-for-user-ratings-in-wordpress/\">Rating form fields with smart conditional logic</a> that can be used as social proof on your website</li>\n<li>Visual survey reports in the backend of your site that you can export</li>\n<li><a href=\"https://wpforms.com/how-to-create-a-net-promoter-score-nps-survey-in-wordpress/\">Net Promoter Score (NPS)</a> form fields and survey templates to find out whether an alumni would recommend your institution to others</li>\n</ul>\n<p>You can add questions related to being a student and/or being an alumni to your survey forms. You can also ask for suggestions, what it would take to get them involved in school activities, how finding a job once graduating went, and so much more. Knowing this information will help your school become better than ever.</p>\n<p>But more than that, it will give alumni a voice and a reason to stay connected with the university they graduated from.</p>\n<p>And there you have it! 3 easy ways to connect with alumni once they’ve walked off stage with their degree in hand.</p>\n<p>If you’re looking for ways to boost form conversions on your site, check out these <a href=\"https://wpforms.com/research-based-tips-to-improve-contact-form-conversions/\">research based tips</a> and use them to get alumni engaged with your forms.</p>\n<p>So, what are you waiting for? Get started with the most powerful <a href=\"https://wpforms.com\">WordPress forms plugin</a> today.</p>\n<p>And don’t forget, if you like this article, then please follow us on <a href=\"https://www.facebook.com/wpforms\" target=\"_blank\" rel=\"nofollow noopener\">Facebook</a> and <a href=\"http://twitter.com/easywpforms\" target=\"_blank\" rel=\"nofollow noopener\">Twitter</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/ways-to-connect-with-alumni-after-graduation/\">3 Ways to Connect with Alumni after Graduation</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wpforms.com/ways-to-connect-with-alumni-after-graduation/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"6 Simple Tricks to Boost Mobile Form Conversions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wpforms.com/simple-tricks-to-boost-mobile-form-conversions/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wpforms.com/simple-tricks-to-boost-mobile-form-conversions/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Jan 2019 13:00:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:7:{i:0;a:5:{s:4:\"data\";s:9:\"Marketing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:20:\"form conversion rate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:15:\"multi-page form\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"conversions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:15:\"mobile friendly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:10:\"responsive\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:23:\"mobile form conversions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://wpforms.com/?p=42404\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:579:\"<p>Is your contact form optimized for mobile users? Mobile continue to dominate web traffic, so if your form is not yet optimized for mobile visitors, likely you’re losing lots of conversions. In this article, we’ll take a look at a few mobile form design best practices to boost your mobile form conversions. Why You Need [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/simple-tricks-to-boost-mobile-form-conversions/\">6 Simple Tricks to Boost Mobile Form Conversions</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Lindsay Liedke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11323:\"<p>Is your contact form optimized for mobile users? Mobile continue to dominate web traffic, so if your form is not yet optimized for mobile visitors, likely you’re losing lots of conversions.</p>\n<p>In this article, we’ll take a look at a few mobile form design best practices to boost your mobile form conversions.</p>\n<h3>Why You Need Mobile Friendly Forms</h3>\n<p>Across the globe, mobile devices dominate total minutes spent online.</p>\n<p><img class=\"alignnone size-full wp-image-349716\" src=\"https://wpforms.com/wp-content/uploads/2017/05/mobile-device-use-in-minutes.png\" alt=\"mobile device use in minutes\" width=\"562\" height=\"239\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/mobile-device-use-in-minutes.png 562w, https://wpforms.com/wp-content/uploads/2017/05/mobile-device-use-in-minutes-300x128.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>According to <a href=\"https://www.comscore.com/Insights/Presentations-and-Whitepapers/2016/The-2016-US-Mobile-App-Report\" target=\"_blank\" rel=\"nofollow noopener\">comScore</a>, smartphones were responsible for 80 percent of internet usage growth between June 2013 and June 2016.</p>\n<p>It doesn’t make any sense if you still ask whether mobile marketing is important, because we know it is!</p>\n<p>With WPForms, <a href=\"https://wpforms.com/features/responsive-mobile-friendly/\">every form you create is responsive and mobile friendly</a>. That means your forms look beautiful on all devices.</p>\n<p>So, let’s dive into some tips for boosting conversion rates with truly mobile-friendly forms.</p>\n<h3>1. Choose the Right Input Types</h3>\n<p>You might already know that reducing the number of form fields can encourage more people to submit your form. The shorter the form, the easier it is for your visitors to fill it out.</p>\n<p>That said, sometimes reducing the number of form fields can result in poor lead quality. That’s because generating high-quality leads require gathering more than just name and email address.</p>\n<p>In fact, making sure the information your prospects submit on your forms is accurate is as equally important as driving more people to fill out your form.</p>\n<p>Validating your form fields is one of the easiest ways to ensure that the information on your forms is accurate.</p>\n<p>In other words, requiring your users to fill out every field, input data in the correct format, and confirm important form fields such as passwords on a <a href=\"https://wpforms.com/how-to-create-a-user-registration-form-in-wordpress/\">user registration form</a> helps you get the most accurate information possible.</p>\n<p>Take for instance Iron Mountain. By validating their form fields, they <a href=\"https://blog.optimizely.com/2014/04/07/ab-test-improve-lead-quality-b2b/\" target=\"_blank\" rel=\"nofollow noopener\">improved their number of qualified leads by 140%.</a></p>\n<p>WPForms comes with tons of form fields to choose from. And, it just so happens that form fields like Email, Phone, Address, and Website / URL automatically validate the input.</p>\n<p>Additionally, input types like the <a title=\"How to Add a WordPress Form With Datepicker\" href=\"https://wpforms.com/how-to-add-a-wordpress-form-with-datepicker/\">datepicker</a> are optimized for mobile devices as well. This makes form submissions convenient on all devices, which can encourage your prospects to submit your form regardless of the devices they use.</p>\n<p><img class=\"alignnone size-full wp-image-349708\" src=\"https://wpforms.com/wp-content/uploads/2017/05/datepicker-for-mobile.png\" alt=\"datepicker for mobile\" width=\"562\" height=\"322\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/datepicker-for-mobile.png 562w, https://wpforms.com/wp-content/uploads/2017/05/datepicker-for-mobile-300x172.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<h3>2. Set the Field Height At Least 38px</h3>\n<p>Did you know that the average adult’s finger pad size is 10mm wide, which is equivalent to 38px?</p>\n<p>This means if your form fields are less than 38px, it will be hard for most of your mobile visitors to tap on it, which can reduce the form’s conversion rate.</p>\n<p>WPForms users do not have to worry about this because the default height of WPForms’ buttons and fields is set to 38px.</p>\n<p>WPForms also allows you to easily create a form without having to touch a single line of code. However, if you want to customize the CSS of your form to match your site’s design, you can modify it by <a href=\"https://wpforms.com/docs/how-to-add-custom-css-to-your-wpforms/\">adding a custom CSS class to your forms</a>.</p>\n<h3>3. Set the Font Size of Labels At Least 16px</h3>\n<p>While 14px is a fairly standard font size for the web, we recommend you make your font at least 16px on your form’s field labels.</p>\n<p>First off, the larger font size will make your forms easier to read.</p>\n<p>In addition, iOS devices will zoom in when any text below 16px is tapped, which can be distracting to your mobile visitors when they’re trying to fill out your form.</p>\n<p>The default font size of WPForms labels is 16px.</p>\n<h3>4. Turn Your Layout into Single Column</h3>\n<p>In terms of mobile form conversions, a single column layout is far better than a multi-column layout with questions positioned side by side, according to <a href=\"https://www.cxpartners.co.uk/our-thinking/web_forms_design_guidelines_an_eyetracking_study/\" target=\"_blank\" rel=\"nofollow noopener\">eye tracking studies</a>.</p>\n<p>Visually cluttered and complicated forms can distract your visitors. But, since every website and its audience is unique, it&#8217;s better to test your conversions by split testing your forms with a single column and multi-column layout rather than blindly follow a study conducted on other sites.</p>\n<p>If you want to, you can easily create a multi-column form layout with WPForms. You can learn <a href=\"https://wpforms.com/docs/how-to-create-multi-column-form-layouts-in-wpforms/\">how to create a multi-column form layout here</a>.</p>\n<p>However, tapping on a multi-column form can be hard on mobile devices.</p>\n<p>That’s why even if you decided to create a multi-column form for your website, it&#8217;s best to turn it into a single column layout for mobile devices.</p>\n<p>Here&#8217;s a guide on <a href=\"https://wpforms.com/docs/how-to-display-fields-in-a-single-column-on-mobile/\">how to turn a multi-column form into a single column for mobile visitors</a>.</p>\n<h3>5. Consider a Mobile Popup Form</h3>\n<p>If your mobile site is difficult to navigate, and your forms are hard to see and fill out, people will abandon your site regardless of what you have to offer.</p>\n<p>Luckily, our sister plugin, <a href=\"http://optinmonster.com/\" target=\"_blank\" rel=\"noopener\">OptinMonster</a>, has plenty of mobile popup form designs that will make seeing and filling out your site’s mobile forms easy on site visitors.</p>\n<p><img class=\"alignnone size-full wp-image-349709\" src=\"https://wpforms.com/wp-content/uploads/2017/05/mobile-popup-example-optinmonster.png\" alt=\"mobile popup example optinmonster\" width=\"562\" height=\"322\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/mobile-popup-example-optinmonster.png 562w, https://wpforms.com/wp-content/uploads/2017/05/mobile-popup-example-optinmonster-300x172.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>For help with this, check out our step by step tutorial on <a href=\"https://wpforms.com/how-to-create-a-contact-form-popup-in-wordpress/\">creating a mobile-friendly contact form popup</a> in WordPress.</p>\n<h3>6. Avoid Captchas</h3>\n<p>We’ll be the first to admit that captcha form fields can help prevent spam form submissions. After all, WPForms has a Captcha form field that requires users to answer a question or solve a math problem in order to submit a form.</p>\n<p><img class=\"alignnone size-full wp-image-249926\" src=\"https://wpforms.com/wp-content/uploads/2018/08/Final-Custom-Captcha-Form.png\" alt=\"Final Custom Captcha Form\" width=\"562\" height=\"553\" srcset=\"https://wpforms.com/wp-content/uploads/2018/08/Final-Custom-Captcha-Form.png 562w, https://wpforms.com/wp-content/uploads/2018/08/Final-Custom-Captcha-Form-300x295.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>That said, on mobile devices, captcha form fields can be extremely annoying and hard to fill out, especially if you use the kind that has floating letters that oftentimes appear very blurry.</p>\n<p>In fact, a study performed by video app animoto found that removing the captcha form field from their form resulted in a <a href=\"https://usabilla.com/blog/optimizing-forms-greater-conversions/\" target=\"_blank\" rel=\"nofollow noopener\">33% increase in form conversions</a>.</p>\n<p>If you worry about spam form submissions, don’t when using WPForms. All forms come with built-in honeypot protection. And if you feel you really need a captcha solution, you can always enable Google invisible reCAPTCHA on your mobile forms to help with unwanted form submissions.</p>\n<p>For more information about preventing unwanted form submissions, check out this exhaustive guide on <a href=\"https://wpforms.com/how-to-build-spam-free-wordpress-contact-forms-the-ultimate-guide/#Custom-Captcha\">creating spam-free WordPress forms</a>.</p>\n<p>Looking for more ways to boost mobile form conversions? Below are a couple more guides that we have that will come in handy for you:</p>\n<ul>\n<li><strong>Research-Based Tips</strong>: This is a general form conversion guide, and is not specifically focused on mobile form design best practices. Read our guide here: <a href=\"https://wpforms.com/10-research-based-tips-to-improve-contact-form-conversions/\">10 Research-Based Tips to Improve Contact Form Conversions</a>.</li>\n<li><strong>Donation Form Conversions</strong>: Are you a non-profit organization? Struggling to meet your online fundraising goals? Then refer to this guide: <a href=\"https://wpforms.com/6-tactics-to-boost-donation-form-conversions/\">6 Tactics to Boost Donation Form Conversions</a>.</li>\n<li><strong>Mobile Lead Generation</strong>: <a href=\"https://wpforms.com/mobile-lead-generation/\">Boost mobile form conversions</a> and get higher quality leads by following these proven tips for optimizing your WordPress forms for mobile devices.</li>\n<li><strong>Mobile Form Abandonment</strong>: Find out <a href=\"https://wpforms.com/5-reasons-why-mobile-users-abandon-your-wordpress-forms/\">why mobile users are abandoning your forms</a> and make changes to your forms so that stops happening.</li>\n</ul>\n<p>And there you have it! You now know some simple tricks for boosting mobile form conversions.</p>\n<p>So, what are you waiting for? Get started with the most powerful <a href=\"https://wpforms.com\">WordPress forms plugin</a> today.</p>\n<p>And don’t forget, if you like this article, then please follow us on <a href=\"https://www.facebook.com/wpforms\" target=\"_blank\" rel=\"nofollow noopener\">Facebook</a> and <a href=\"http://twitter.com/easywpforms\" target=\"_blank\" rel=\"nofollow noopener\">Twitter</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/simple-tricks-to-boost-mobile-form-conversions/\">6 Simple Tricks to Boost Mobile Form Conversions</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wpforms.com/simple-tricks-to-boost-mobile-form-conversions/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:42:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"WPForms 2018 Year in Review (Annual Report)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wpforms.com/2018-year-in-review/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wpforms.com/2018-year-in-review/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 31 Dec 2018 14:34:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Announcement\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wpforms.com/?p=348162\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:552:\"<p>2018 was a very productive year at WPForms. We passed over 1 million active installs and added a lot of powerful features including surveys, polls, form permissions, WPForms challenge, Stripe recurring payments, and dozens more. Check out our 2018 annual report to see all that happened in WPForms world. I want to thank you for [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/2018-year-in-review/\">WPForms 2018 Year in Review (Annual Report)</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Syed Balkhi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:803:\"<p>2018 was a very productive year at WPForms. We passed over 1 million active installs and added a lot of powerful features including surveys, polls, form permissions, WPForms challenge, Stripe recurring payments, and dozens more. <a href=\"https://wpforms.com/2018-year-in-review/\" title=\"Check out our 2018 annual report\">Check out our 2018 annual report</a> to see all that happened in WPForms world.</p>\n<p>I want to thank you for your continued support of WPForms. We look forward to bringing you even more powerful form features in 2019.</p>\n<p><em>Syed Balkhi and the WPForms Team</em></p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/2018-year-in-review/\">WPForms 2018 Year in Review (Annual Report)</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wpforms.com/2018-year-in-review/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:51:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"How to Securely Send WordPress Emails Using Gmail SMTP with WP Mail SMTP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wpforms.com/how-to-securely-send-wordpress-emails-using-gmail-smtp/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wpforms.com/how-to-securely-send-wordpress-emails-using-gmail-smtp/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Dec 2018 20:14:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:19:\"WordPress Tutorials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:4:\"smtp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:17:\"form notification\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:13:\"notifications\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://wpforms.com/?p=35577\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:611:\"<p>Looking for a secure SMTP plugin that helps you receive email notifications from your WordPress contact forms? With WP Mail SMTP, you can fix delivery issues by authenticating emails through your Gmail or G Suite account &#8212; all while keeping your login credentials safe. In this post, we’ll show you how to set up WP [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/how-to-securely-send-wordpress-emails-using-gmail-smtp/\">How to Securely Send WordPress Emails Using Gmail SMTP with WP Mail SMTP</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Shahzad Saeed\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:20222:\"<p>Looking for a secure SMTP plugin that helps you receive email notifications from your WordPress contact forms? With WP Mail SMTP, you can fix delivery issues by authenticating emails through your Gmail or G Suite account &#8212; all while keeping your login credentials safe. </p>\n<p>In this post, we’ll show you how to set up WP Mail SMTP for sending WordPress emails with your Gmail or G Suite email address.</p>\n<h3>Why You’re Not Receiving Notifications</h3>\n<p>By default, WordPress uses the <a href=\"http://www.wpbeginner.com/glossary/php/\" target=\"_blank\">PHP</a> mail function to send emails generated by WordPress or any contact plugin like <a href=\"http://wpforms.com/\">WPForms</a>.  The most common reason for not getting emails is that your WordPress hosting server is not configured to use PHP mail function.</p>\n<p>In addition to this, anti-spam efforts by email providers can impact your emails as well. As part of their filtering process, many email providers will check whether your email originates from the same domain noted in the From Email. For example, if your email claims to be sent from your Gmail address but is actually sent from your website&#8217;s server (rather than Gmail&#8217;s server), your email may be sent to spam or not be delivered at all.</p>\n<p>You can fix this by using SMTP instead of the PHP mail function. SMTP (Simple Mail Transfer Protocol) is the industry standard for sending emails reliably.</p>\n<h3>Why Use the WP Mail SMTP Plugin?</h3>\n<p>The main benefit of using the WP Mail SMTP plugin is that it lets you send WordPress emails securely using your Gmail or G Suite account without requiring to enable less secure apps in your account.</p>\n<p>In addition, unlike many other SMTP options, you won’t need to enter your Gmail username and password in your WordPress dashboard where other site users can see them. By using this method, you&#8217;ll help to <a href=\"http://www.wpbeginner.com/wordpress-security/\" target=\"_blank\" title=\"Ultimate Guide to WordPress Security\">keep your WordPress site secure</a>.</p>\n<p>Let’s take a look at how to set up WP Mail SMTP for sending WordPress emails.</p>\n<h3>Step 1: Install the WP Mail SMTP Plugin</h3>\n<p>The first thing you need to do is to install and activate the <a href=\"https://wordpress.org/plugins/wp-mail-smtp/\" target=\"_blank\" rel=\"nofollow\">WP Mail SMTP</a> plugin. For step-by-step instructions, you can check out <a href=\"http://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/\" target=\"_blank\">WPBeginner&#8217;s guide on how to install a WordPress plugin</a>.</p>\n<p>After installing and activating WP Mail SMTP, go to <strong>Settings » WP Mail SMTP</strong> to open the plugin settings page. </p>\n<p>At the top of this page, you&#8217;ll see the <strong>From Email</strong> and <strong>From Name</strong>. You can ignore these settings, because Google will automatically force these values to match the email account used in the next step.</p>\n<p>To start the setup process, you&#8217;ll need to scroll to the <strong>Mailer</strong> field and select the <strong>Google</strong> option.</p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2018/12/Select-Gmail-mailer.png\" alt=\"Select Gmail mailer\" width=\"562\" height=\"100\" class=\"aligncenter size-full wp-image-339300\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/Select-Gmail-mailer.png 562w, https://wpforms.com/wp-content/uploads/2018/12/Select-Gmail-mailer-300x53.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>You can skip the <strong>Return Path</strong> checkbox, as Google does not allow this setting to be altered.</p>\n<p>Next, you should see a new Gmail section appear. Here, you&#8217;ll see fields for <strong>Client Secret</strong> and <strong>Client ID</strong>.</p>\n<p>To get the information for these fields, you&#8217;ll need to create a web application through your Google account. This doesn&#8217;t require any coding, and we&#8217;ll show you exactly what to do.</p>\n<h3>Step 2: Create a Web Application</h3>\n<p>To create an application, you&#8217;ll first need to <a href=\"https://console.developers.google.com/flows/enableapi?apiid=gmail&#038;pli=1\" target=\"_blank\" rel=\"nofollow\">sign into your Gmail account and access Gmail&#8217;s application registration</a>. Clicking that link should open this Google page in a new tab or window, and you&#8217;ll want to keep your site settings open (we&#8217;ll return to those later).</p>\n<p>Once you&#8217;ve followed that link and logged into your Gmail account, you should see a form named &#8220;Register your application for Gmail API in Google API Console&#8221;. </p>\n<p>In the dropdown labeled <strong>Select a project where your application will be registered</strong>, leave the default option of <strong>Create a project</strong>. Then, go ahead and click the <strong>Continue</strong> button.</p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/12/Create-a-project-for-Gmail-app-registration.png\" alt=\"Create a project for Gmail app registration\" width=\"463\" height=\"259\" class=\"aligncenter size-full wp-image-117667\" srcset=\"https://wpforms.com/wp-content/uploads/2017/12/Create-a-project-for-Gmail-app-registration.png 463w, https://wpforms.com/wp-content/uploads/2017/12/Create-a-project-for-Gmail-app-registration-300x168.png 300w\" sizes=\"(max-width: 463px) 100vw, 463px\" /></p>\n<p>Next, you should see a screen that says &#8220;The API is enabled&#8221;. To proceed to the setup page, click the <strong>Go to credentials</strong> button.</p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/12/Gmail-API-is-enabled.png\" alt=\"Gmail API is enabled\" width=\"365\" height=\"127\" class=\"aligncenter size-full wp-image-117669\" srcset=\"https://wpforms.com/wp-content/uploads/2017/12/Gmail-API-is-enabled.png 365w, https://wpforms.com/wp-content/uploads/2017/12/Gmail-API-is-enabled-300x104.png 300w\" sizes=\"(max-width: 365px) 100vw, 365px\" /></p>\n<p>In the next page, you’ll be prompted to determine the credentials you need. Here are the fields on this page and the options you&#8217;ll need to select:</p>\n<ul>\n<li><strong>Which API are you using?</strong> Gmail API</li>\n<li><strong>Where will you be calling the API from?</strong> Web server (e.g. node.js, Tomcat)</li>\n<li><strong>What data will you be accessing?</strong> User data</li>\n</ul>\n<p>Once you&#8217;ve made these selections, click the <strong>What credentials do I need?</strong> button to go to the next step.</p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/12/Add-credentials-to-Gmail-app-project.png\" alt=\"Add credentials to Gmail app project\" width=\"423\" height=\"441\" class=\"aligncenter size-full wp-image-117678\" srcset=\"https://wpforms.com/wp-content/uploads/2017/12/Add-credentials-to-Gmail-app-project.png 423w, https://wpforms.com/wp-content/uploads/2017/12/Add-credentials-to-Gmail-app-project-288x300.png 288w\" sizes=\"(max-width: 423px) 100vw, 423px\" /></p>\n<p>For this step, you&#8217;ll be creating an OAuth client ID. OAuth, or Open Authorization, is what will provide permission for your website to use your Gmail account to authenticate emails.</p>\n<p>For the <strong>Name</strong> field, enter anything you like or leave the default name. This is only for reference within your Google account.</p>\n<p>For the <strong>Authorized JavaScript origins</strong>, you&#8217;ll need to enter your site&#8217;s URL.</p>\n<p>Last, we need to fill out the <strong>Authorized redirect URIs</strong> field. To get the URI for your site, you&#8217;ll need to go back to the tab or window with your WordPress site. Still on the <strong>Settings &raquo; WP Mail SMTP</strong> page, you&#8217;ll need to look under the Gmail section for the field labeled <strong>Authorized redirect URI</strong>.</p>\n<p>The value in this field should be your site&#8217;s URL followed by some extra details. You&#8217;ll need to copy this value, which is easily done by clicking the button with the copy icon. </p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/12/Use-button-to-copy-authorized-redirect-URI-from-WP-Mail-SMTP-settings.png\" alt=\"Use button to copy authorized redirect URI from WP Mail SMTP settings\" width=\"826\" height=\"168\" class=\"aligncenter size-full wp-image-118143\" srcset=\"https://wpforms.com/wp-content/uploads/2017/12/Use-button-to-copy-authorized-redirect-URI-from-WP-Mail-SMTP-settings.png 826w, https://wpforms.com/wp-content/uploads/2017/12/Use-button-to-copy-authorized-redirect-URI-from-WP-Mail-SMTP-settings-300x61.png 300w, https://wpforms.com/wp-content/uploads/2017/12/Use-button-to-copy-authorized-redirect-URI-from-WP-Mail-SMTP-settings-768x156.png 768w\" sizes=\"(max-width: 826px) 100vw, 826px\" /></p>\n<p>After copying the URI, return to the Google APIs page and paste it into the field under <strong>Authorized redirect URIs</strong>.</p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/12/Create-a-Google-OAuth-client-ID.png\" alt=\"Create a Google OAuth client ID\" width=\"460\" height=\"555\" class=\"aligncenter size-full wp-image-117752\" srcset=\"https://wpforms.com/wp-content/uploads/2017/12/Create-a-Google-OAuth-client-ID.png 460w, https://wpforms.com/wp-content/uploads/2017/12/Create-a-Google-OAuth-client-ID-249x300.png 249w\" sizes=\"(max-width: 460px) 100vw, 460px\" /></p>\n<p>After that, you can click the <strong>Create client ID</strong> button.</p>\n<p>For the last step in the app creation process, you&#8217;ll need to set up the consent screen. This screen will never be seen by your users since you&#8217;re only granting permission for your own site to use the Gmail account you own.</p>\n<p>You&#8217;ll just need to check your email address and then enter a <strong>Product name shown to users</strong> (such as the title of your website). When you&#8217;ve completed these fields, click <strong>Continue.</strong></p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/03/add-credentials-1.jpg\" alt=\"oauth client id\" width=\"395\" height=\"417\" class=\"alignnone size-full wp-image-36620\" srcset=\"https://wpforms.com/wp-content/uploads/2017/03/add-credentials-1.jpg 395w, https://wpforms.com/wp-content/uploads/2017/03/add-credentials-1-284x300.jpg 284w\" sizes=\"(max-width: 395px) 100vw, 395px\" /></p>\n<p>You’ve now successfully created a Gmail web application!</p>\n<p>Now we need to see the full details. On the last screen, click <strong>I’ll do this later</strong> to go to the Credentials page.</p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/12/Last-page-in-Gmail-app-setup-process.png\" alt=\"Last page in Gmail app setup process\" width=\"551\" height=\"384\" class=\"aligncenter size-full wp-image-118078\" srcset=\"https://wpforms.com/wp-content/uploads/2017/12/Last-page-in-Gmail-app-setup-process.png 551w, https://wpforms.com/wp-content/uploads/2017/12/Last-page-in-Gmail-app-setup-process-300x209.png 300w\" sizes=\"(max-width: 551px) 100vw, 551px\" /></p>\n<h3 id=\"step-3\">Step 3: Grant Permissions and Send Test Email</h3>\n<p>On the Credentials page, you can now see the details of the web application you just created. To view <strong>Client ID</strong> and <strong>Client Secret</strong>, click the edit icon.</p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/12/Click-the-edit-icon-on-the-Credentials-page.png\" alt=\"Click the edit icon on the Credentials page\" width=\"806\" height=\"323\" class=\"aligncenter size-full wp-image-118083\" srcset=\"https://wpforms.com/wp-content/uploads/2017/12/Click-the-edit-icon-on-the-Credentials-page.png 806w, https://wpforms.com/wp-content/uploads/2017/12/Click-the-edit-icon-on-the-Credentials-page-300x120.png 300w, https://wpforms.com/wp-content/uploads/2017/12/Click-the-edit-icon-on-the-Credentials-page-768x308.png 768w\" sizes=\"(max-width: 806px) 100vw, 806px\" /></p>\n<p>This will open all of the details for your app. On this page, you&#8217;ll need to copy the <strong>Client ID</strong> and <strong>Client secret</strong> values.</p>\n<p>Each of these will need to be copied into your WP Mail SMTP settings back in your WordPress admin.</p>\n<div class=\"alert alert-warning\"><strong>Note:</strong> Be very careful not to copy any extra text or spaces with your Client ID or Client Secret, as this will result in an error in the next step.</div>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/12/Copy-in-Client-ID-and-secret-to-WP-Mail-SMTP-settings.png\" alt=\"Copy in Client ID and secret to WP Mail SMTP settings\" width=\"620\" height=\"243\" class=\"aligncenter size-full wp-image-118086\" srcset=\"https://wpforms.com/wp-content/uploads/2017/12/Copy-in-Client-ID-and-secret-to-WP-Mail-SMTP-settings.png 620w, https://wpforms.com/wp-content/uploads/2017/12/Copy-in-Client-ID-and-secret-to-WP-Mail-SMTP-settings-300x118.png 300w\" sizes=\"(max-width: 620px) 100vw, 620px\" /></p>\n<p>After saving these settings, the page will refresh. Before Google allows this information to be used to connect to your account, however, you must grant permission. </p>\n<p>To do this, scroll to the bottom of this page and click the button labeled <strong>Allow plugin to send emails using your Google account</strong>.</p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/12/Authorize-plugin-to-send-emails-with-Gmail.png\" alt=\"Authorize plugin to send emails with Gmail\" width=\"669\" height=\"254\" class=\"aligncenter size-full wp-image-118100\" srcset=\"https://wpforms.com/wp-content/uploads/2017/12/Authorize-plugin-to-send-emails-with-Gmail.png 669w, https://wpforms.com/wp-content/uploads/2017/12/Authorize-plugin-to-send-emails-with-Gmail-300x114.png 300w\" sizes=\"(max-width: 669px) 100vw, 669px\" /></p>\n<p>This will open a login screen for Google. Go ahead and log into the account you&#8217;re setting this SMTP up with. Then, you&#8217;ll see a screen asking for permission for this site to send email on your behalf. </p>\n<p>When you&#8217;re ready, click the <strong>Allow</strong> button to proceed.</p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/12/Grant-permission-for-site-to-send-email.png\" alt=\"Grant permission for site to send email\" width=\"449\" height=\"480\" class=\"aligncenter size-full wp-image-118106\" srcset=\"https://wpforms.com/wp-content/uploads/2017/12/Grant-permission-for-site-to-send-email.png 449w, https://wpforms.com/wp-content/uploads/2017/12/Grant-permission-for-site-to-send-email-281x300.png 281w\" sizes=\"(max-width: 449px) 100vw, 449px\" /></p>\n<p>Next, you&#8217;ll be returned to your WP Mail SMTP settings and a success message will be displayed. Now that the connection is complete, you&#8217;re ready to send a test email under the <strong>Email Test</strong> tab.</p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/12/Gmail-connection-success-with-WP-Mail-SMTP.png\" alt=\"Gmail connection success with WP Mail SMTP\" width=\"560\" height=\"149\" class=\"aligncenter size-full wp-image-118111\" srcset=\"https://wpforms.com/wp-content/uploads/2017/12/Gmail-connection-success-with-WP-Mail-SMTP.png 560w, https://wpforms.com/wp-content/uploads/2017/12/Gmail-connection-success-with-WP-Mail-SMTP-300x80.png 300w\" sizes=\"(max-width: 560px) 100vw, 560px\" /></p>\n<p>Once the Test Email tab is open, you&#8217;ll need to enter a valid email address and click the <strong>Send Email</strong> button. Be sure to use an email address you have access to so you can confirm the email is delivered.</p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/12/Send-a-test-email-through-WP-Mail-SMTP.png\" alt=\"Send a test email through WP Mail SMTP\" width=\"430\" height=\"360\" class=\"aligncenter size-full wp-image-118145\" srcset=\"https://wpforms.com/wp-content/uploads/2017/12/Send-a-test-email-through-WP-Mail-SMTP.png 430w, https://wpforms.com/wp-content/uploads/2017/12/Send-a-test-email-through-WP-Mail-SMTP-300x251.png 300w\" sizes=\"(max-width: 430px) 100vw, 430px\" /></p>\n<p>When the test message has been sent, you&#8217;ll see a success message at the top of this tab.</p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/12/WP-Mail-SMTP-test-email-was-sent-successfully.png\" alt=\"WP Mail SMTP test email was sent successfully\" width=\"292\" height=\"274\" class=\"aligncenter size-full wp-image-118113\" /></p>\n<p>You should also soon receive a test email at the email address you entered.</p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2017/12/Test-email-for-WP-Mail-SMTP-Gmail.png\" alt=\"Test email for WP Mail SMTP Gmail\" width=\"515\" height=\"100\" class=\"aligncenter size-full wp-image-118114\" srcset=\"https://wpforms.com/wp-content/uploads/2017/12/Test-email-for-WP-Mail-SMTP-Gmail.png 515w, https://wpforms.com/wp-content/uploads/2017/12/Test-email-for-WP-Mail-SMTP-Gmail-300x58.png 300w\" sizes=\"(max-width: 515px) 100vw, 515px\" /></p>\n<h3>Frequently Asked Questions</h3>\n<h6>What If the Test Email Doesn&#8217;t Send Successfully?</h6>\n<p>If the SMTP test email isn&#8217;t able to send, a debug log will appear with additional details. Here are some of the possible error messages and how to resolve them.</p>\n<p><strong>401. That’s an error.<br />\nError: invalid_client</strong><br />\nThis error appears when the Client ID isn&#8217;t able to be read properly. To fix, try copying the Client ID in again and check that there&#8217;s no whitespace or extra text.</p>\n<p><strong>400. That’s an error.<br />\nError: invalid_request<br />\nMissing required parameter: client_id</strong><br />\nThis error will display when the Client ID field is empty or not able to be read properly. To fix, copy in the Client ID again and be careful to not add extra text or whitespace.</p>\n<p><strong>cURL error 60: SSL certificate problem</strong><br />\nThis message means that the server is missing a certificate that’s required for SMTP to work. To fix, you&#8217;ll need to contact your site&#8217;s hosting provider to ask them to install this certificate (most likely the cacert.pem certificate, though it&#8217;s best to ask your host to check).</p>\n<p><strong>“code”: 401,<br />\n“message”: “Login Required”</strong><br />\nIf you see this in the debug message, permission still needs to be granted to your use Google account. For instructions on how to fix this, please see <a href=\"#step-3\" title=\"Step 3: Grant Permissions and Send Test Email\">Step 3</a> of this tutorial. Also, be sure to check that the From Email in your SMTP settings matches the email used to setup the Google app.</p>\n<h6>What If I Want to Switch to A Different Email Later?</h6>\n<p>If you&#8217;d like to change to a different Gmail/G Suite email address, you&#8217;ll need to repeat all tutorial steps above. This includes generating a new Client ID and Client Secret under this other email account.</p>\n<p>When you get to the Authorization step (under Step 3), save your settings and then click the <strong>Remove Connection</strong> button. This will remove the authorization for your original email account and allow you to repeat the authorization steps with the new email.</p>\n<p><img src=\"https://wpforms.com/wp-content/uploads/2018/06/Remove-connection-in-WP-Mail-SMTP.png\" alt=\"Remove connection in WP Mail SMTP\" width=\"703\" height=\"124\" class=\"aligncenter size-full wp-image-223847\" srcset=\"https://wpforms.com/wp-content/uploads/2018/06/Remove-connection-in-WP-Mail-SMTP.png 703w, https://wpforms.com/wp-content/uploads/2018/06/Remove-connection-in-WP-Mail-SMTP-300x53.png 300w\" sizes=\"(max-width: 703px) 100vw, 703px\" /></p>\n<p>That’s it! You’ve successfully configured WP Mail SMTP&#8217;s Google mailer on your WordPress site.</p>\n<p>What are you waiting for? Get started with the most powerful <a href=\"https://wpforms.com/\">WordPress forms plugin</a> today.</p>\n<p>If you like this article, then please follow us on <a href=\"http://facebook.com/wpforms\" target=\"_blank\" rel=\"nofollow\">Facebook </a>and <a href=\"http://twitter.com/easywpforms\" target=\"_blank\" rel=\"nofollow\">Twitter</a> for more free WordPress tutorials.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/how-to-securely-send-wordpress-emails-using-gmail-smtp/\">How to Securely Send WordPress Emails Using Gmail SMTP with WP Mail SMTP</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://wpforms.com/how-to-securely-send-wordpress-emails-using-gmail-smtp/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"711\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:51:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"How to Get More Guest Post Submissions on Your WordPress Blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wpforms.com/how-to-get-more-guest-post-submissions-on-your-wordpress-blog/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wpforms.com/how-to-get-more-guest-post-submissions-on-your-wordpress-blog/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Dec 2018 13:00:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:9:\"Marketing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:16:\"post submissions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:21:\"front end submissions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:14:\"guest blogging\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://wpforms.com/?p=43930\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:582:\"<p>Do you accept guest post submissions on your blog? Accepting guest posts is a great way to expand your network, build your brand, and save time so you can focus on other tasks to grow your business. In this article, we’ll show you how to get more guest post submissions on your WordPress blog. 1. [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/how-to-get-more-guest-post-submissions-on-your-wordpress-blog/\">How to Get More Guest Post Submissions on Your WordPress Blog</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Lindsay Liedke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9982:\"<p>Do you accept guest post submissions on your blog? Accepting guest posts is a great way to expand your network, build your brand, and save time so you can focus on other tasks to grow your business.</p>\n<p>In this article, we’ll show you how to get more guest post submissions on your WordPress blog.</p>\n<h3>1. Publish a &#8220;Write for Us&#8221; Page</h3>\n<p>Looking for an easy way to invite guest authors to contribute to your blog? You’ll need to publish a &#8220;Write for Us&#8221; page on your site. Be sure to list it in the navigation menu so it easily grabs the attention of your visitors.</p>\n<p>If done right, this page will attract relevant guest writers to your blog and help you generate a constant flow of great content.</p>\n<p>Below are a few things you should keep in mind when creating the &#8220;Write for Us&#8221; page:</p>\n<ul>\n<li><strong>Get discovered</strong>: Guest authors who regularly contribute to various blogs often use Google to find guest posting opportunities. You&#8217;ll need to use <a title=\"Ultimate Guide to WordPress SEO\" href=\"http://www.wpbeginner.com/wordpress-seo/\" target=\"_blank\" rel=\"noopener\">SEO</a> to optimize the URL slug and the content of your &#8220;Write for Us&#8221; page to make sure that your page shows up in their searches.</li>\n<li><strong>Include detailed guest post guidelines</strong>: Tell your visitors what kind of articles you’re looking for. You may also want to include formatting and post submission guidelines on that page.</li>\n</ul>\n<h3>2. Review Guest Post Proposals</h3>\n<p>Reading and reviewing poor quality articles will consume a lot of time and defeats the purpose of accepting guest post submissions.</p>\n<p>Before reviewing a guest post, it&#8217;s always better to ask the author to send a proposal. This way, you can ensure that only high-quality articles are reviewed so you can save time.</p>\n<p>In the &#8220;Write for Us&#8221; page, you can <a title=\"How to Create a Simple Contact Form in WordPress\" href=\"https://wpforms.com/how-to-create-a-contact-form-in-wordpress/\">create a contact form</a> and encourage your visitors to submit a guest post proposal.</p>\n<p>You can ask for details like:</p>\n<ul>\n<li>Post headline</li>\n<li>A small description or outline about the post</li>\n<li>Author bio</li>\n<li>Links to previous published work</li>\n<li>The author’s website or portfolio</li>\n<li>Topics the author is interested in writing about for future guest posting</li>\n</ul>\n<p>If you like the proposal, you can invite the author to submit a guest post on your website.</p>\n<p><img class=\"alignnone size-full wp-image-44176\" src=\"https://wpforms.com/wp-content/uploads/2017/05/get-more-guest-post-submissions.jpg\" alt=\"Get more guest post submissions by requiring proposals first\" width=\"620\" height=\"300\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/get-more-guest-post-submissions.jpg 620w, https://wpforms.com/wp-content/uploads/2017/05/get-more-guest-post-submissions-300x145.jpg 300w\" sizes=\"(max-width: 620px) 100vw, 620px\" /></p>\n<h3>3. Create a Frontend Submission Form</h3>\n<p>Providing an author account to everyone who wants to write on your site could be a big mistake. You don’t want someone to have an account on your site so that they can write anything they want.</p>\n<p>On the other hand, not giving authors an account, and manually reviewing every post submission can be even more tedious.</p>\n<p>Luckily, there’s an easy way to automate the review process for guest post submissions.</p>\n<p>With WPForms’ <a title=\"Post Submissions Addon\" href=\"https://wpforms.com/addons/post-submissions-addon/\">post submission addon</a>, you can allow your website visitors to submit guest blog posts <strong>without having to log into the admin area</strong> of your site.</p>\n<p>All you need to do is to create a frontend submission form using our post submission addon. You can also collect all the necessary information that you need such as:</p>\n<ul>\n<li>Post Title</li>\n<li>Post Content</li>\n<li>Featured Image</li>\n<li>Custom Fields (aka Post Meta)</li>\n</ul>\n<p>When someone submits a guest post from your guest post submission form, it will be automatically added to your post editor and will be marked as pending.</p>\n<p>Then, all you need to do is to review the posts before they go live. This is especially easy if authors that have previously submitted guest posts on your website do so again. The quality of work is likely the same, so if you have published their work in the past, the review process becomes even simpler.</p>\n<p>For help with automating this process, read our guide on <a href=\"https://wpforms.com/how-to-allow-users-to-submit-blog-posts-on-your-wordpress-site/\">how to allow users to submit blog posts</a>.</p>\n<p>After creating your guest post submissions form, embed it on a page that is blocked from search engine robots.</p>\n<p>This way, you can stop search engines from crawling and indexing this page in search results. Doing this also ensures that only those visitors whose proposal is accepted can see this page.</p>\n<p>For help with this step, read this tutorial on <a href=\"http://www.wpbeginner.com/wp-tutorials/how-to-hide-a-wordpress-page-from-google/\" target=\"_blank\" rel=\"noopener\">how to hide a WordPress page from Google</a>.</p>\n<h3>4. Invite Guest Authors</h3>\n<p><img class=\"alignnone size-full wp-image-346467\" src=\"https://wpforms.com/wp-content/uploads/2018/12/guest-posts.jpg\" alt=\"guest posts\" width=\"562\" height=\"322\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/guest-posts.jpg 562w, https://wpforms.com/wp-content/uploads/2018/12/guest-posts-300x172.jpg 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Just because you accept guest posts for your website, doesn’t mean you’ll receive quality articles that add value to your blog.</p>\n<p>If you’re looking to get high-quality content for your blog, make sure to promote it heavily so it grabs the attention of the right audience. You can also invite potential guest authors who regularly contribute to various blogs in your niche.</p>\n<p>Below are a couple of takeaways that might help you:</p>\n<ul>\n<li>Browse through popular blogs in your niche and create a list of people who regularly contribute to those blogs. Let them know that you’ve started accepting guest posts on your blog and invite them to contribute.</li>\n<li>Create a guest posting contest to gather quality guest post submissions. You can reward one guest author every month and even use the <a href=\"https://wpforms.com/how-to-create-a-contest-entry-form-in-wordpress-step-by-step/\">contest entry form template</a> to help you get started. This will likely boost guest post submissions, especially among those trying to build a portfolio and gain exposure.</li>\n</ul>\n<h3>5. Include an Author Bio</h3>\n<p>There are many established websites that accept guest posts from people but don’t give credit to their guest writers for their work. And while this may work for them, if you’re trying to get more guest post submissions, offering a byline might be something you’ll need to do to attract more writers.</p>\n<p>People guest post on other people’s blogs to:</p>\n<ul>\n<li>Build a portfolio, especially when just starting out</li>\n<li>Expose their brand to a broader audience base</li>\n<li>Network with like-minded professionals and create partnership opportunities</li>\n</ul>\n<p>You don’t always have to let guest writers link to their websites within the blogs they submit to your website. But allowing them to have a short byline with links to their social media accounts or website is a nice gesture.</p>\n<p>And trust us, writers looking to get their name out there are going to write their best content for you if they know their name will be attached to it.</p>\n<h3>6. Take it One Step Further and Pay Your Writers</h3>\n<p>Running an online business is tough work, especially if you do it all by yourself. Unfortunately, because running a website can be so time-consuming, many website owners fail to keep up with publishing regular content on their website.</p>\n<p>This not only hurts your site’s SEO, but negatively affects the user experience too. After all, people come to your website because they feel you offer them something of value. Your blog is a huge source of value to all site visitors, whether they are a customer or not.</p>\n<p>If you find yourself not being able to keep up with a consistent publishing schedule, and have a rolodex of regular guest post writers that drive traffic to your site, encourage conversions, and help you rank well, consider paying them to continue writing for you.</p>\n<p>You can pay people per post they submit or even require their posts to exceed a specific traffic threshold. That way you know that the posts you’re paying for are not only adding value to your site visitors’ lives, but your life as well.</p>\n<p>And there you have it! You now know some of the best strategies for getting more blog post submissions on your WordPress website.</p>\n<p>Are you looking to accept sponsored posts on your WordPress website? Check out this guide on <a href=\"https://wpforms.com/how-to-require-users-to-pay-to-submit-a-post-in-wordpress/\">how to require users to pay to submit blog posts</a> on your website.</p>\n<p>So, what are you waiting for? Get started with the most powerful <a href=\"https://wpforms.com\">WordPress forms plugin</a> today.</p>\n<p>And don’t forget, if you like this article, then please follow us on <a href=\"https://www.facebook.com/wpforms\" target=\"_blank\" rel=\"nofollow noopener\">Facebook</a> and <a href=\"http://twitter.com/easywpforms\" target=\"_blank\" rel=\"nofollow noopener\">Twitter</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/how-to-get-more-guest-post-submissions-on-your-wordpress-blog/\">How to Get More Guest Post Submissions on Your WordPress Blog</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://wpforms.com/how-to-get-more-guest-post-submissions-on-your-wordpress-blog/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:51:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"How to Create an Event Feedback Form in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wpforms.com/how-to-create-an-event-feedback-form-in-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wpforms.com/how-to-create-an-event-feedback-form-in-wordpress/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 26 Dec 2018 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:19:\"WordPress Tutorials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:17:\"customer feedback\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:16:\"survey reporting\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:19:\"event feedback form\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wpforms.com/?p=345826\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:575:\"<p>Are you looking for an easy way to find out how people feel about events you host? Whether you run an event planning business, host fundraisers for your nonprofit, or like to throw big birthday bashes for your closest friends, getting feedback about your events can help you make improvements for next time. In this [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/how-to-create-an-event-feedback-form-in-wordpress/\">How to Create an Event Feedback Form in WordPress</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Lindsay Liedke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:17489:\"<p>Are you looking for an easy way to find out how people feel about events you host? Whether you run an event planning business, host fundraisers for your nonprofit, or like to throw big birthday bashes for your closest friends, getting feedback about your events can help you make improvements for next time.</p>\n<p>In this article, we’ll show you step by step how to create an event feedback form in WordPress so you can ask all your attendees what they liked and what they want to see change at the next event.</p>\n<h3>Why Create an Event Feedback Form?</h3>\n<p>No matter what type of events you host, it’s important to find out how attendees feel when they’re over so that you can do better next time. This is especially true if you run an event planning business and want to grow.</p>\n<p>Here are some of the benefits a good event feedback form offers:</p>\n<ul>\n<li>Determine whether expectations were met</li>\n<li>Find out what people thought went well, and what people felt went wrong</li>\n<li>Get suggestions that can make your next event more satisfying for attendees</li>\n<li>Find out if people would be willing to attend a similar event in the future, and if not, why</li>\n</ul>\n<p>You might think after hosting what you feel is a successful event that everyone that attended feels the same way. But the truth is, people aren’t always going to love your events.</p>\n<p>By placing an event feedback form on your website, you may find that there are simple ways to fix those negative opinions and make your next event better than ever.</p>\n<p>So, let’s take a look at how to create an event feedback form in WordPress.</p>\n<h3>Step 1: Create an Event Feedback Form</h3>\n<p>The first thing you’ll need to do is install and activate the <a href=\"https://wpforms.com/pricing/\">WPForms plugin</a>. For more details, see this step by step guide on <a title=\"Step by step guide on How to Install a WordPress Plugin\" href=\"http://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/\" target=\"_blank\" rel=\"noopener\">how to install a plugin in WordPress</a>.</p>\n<p>Next, you’ll need to install and activate the <a href=\"https://wpforms.com/features/form-templates/\">Form Templates Pack addon</a>.</p>\n<p>To do this, go to <strong>WPForms</strong> » <strong>Addon</strong> and find the one labeled <strong>Form Templates Pack addon</strong>.</p>\n<p>Click <strong>Install Addon</strong> and then <strong>Activate</strong>.</p>\n<p><img class=\"alignnone size-full wp-image-291194\" src=\"https://wpforms.com/wp-content/uploads/2018/10/form-templates-pack-addon.png\" alt=\"form templates pack addon\" width=\"562\" height=\"193\" srcset=\"https://wpforms.com/wp-content/uploads/2018/10/form-templates-pack-addon.png 562w, https://wpforms.com/wp-content/uploads/2018/10/form-templates-pack-addon-300x103.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Now you’ll need to create a new form.</p>\n<p>To do this, go to <strong>WPForms</strong> » <strong>Add New</strong>, and name your form. Then, scroll down to the section labeled <strong>Additional Templates</strong> and type “Event Feedback Form” into the search bar.</p>\n<p><img class=\"alignnone size-full wp-image-345828\" src=\"https://wpforms.com/wp-content/uploads/2018/12/event-feedback-form-template.png\" alt=\"event feedback form template\" width=\"562\" height=\"273\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/event-feedback-form-template.png 562w, https://wpforms.com/wp-content/uploads/2018/12/event-feedback-form-template-300x146.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>When the pre-built event feedback form template loads, most of the work is already done for you. In fact, you’ll find the fields in the form asking the following questions:</p>\n<ul>\n<li>Please rate your overall experience at our event</li>\n<li>Would you return again next year?</li>\n<li>What could we have improved?</li>\n<li>Do you have any additional feedback?</li>\n</ul>\n<p><img class=\"alignnone size-full wp-image-345829\" src=\"https://wpforms.com/wp-content/uploads/2018/12/event-feedback-form.png\" alt=\"event feedback form\" width=\"562\" height=\"455\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/event-feedback-form.png 562w, https://wpforms.com/wp-content/uploads/2018/12/event-feedback-form-300x243.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>You can add additional fields to your form by dragging them from the left hand panel to the right hand panel.</p>\n<p>Then, click on the field to make any changes. You can also click on a form field and drag it to rearrange the order on your event feedback form.</p>\n<p>For example, you might add some of these form fields to your event feedback form:</p>\n<ul>\n<li><strong><a href=\"https://wpforms.com/beginners-guide-what-is-a-likert-scale-and-how-to-use-it/\">Likert Scale</a>:</strong> gauge people’s opinions, feelings, or attitudes about the event you hosted or the event planning business you run.</li>\n<li><strong><a href=\"https://wpforms.com/how-to-create-a-net-promoter-score-nps-survey-in-wordpress/\">Net Promoter Score</a>:</strong> if you run an event planning business or regularly host people’s parties, nonprofit fundraisers, or office galas, find out how loyal people are to your business.</li>\n<li><strong><a href=\"https://wpforms.com/how-to-add-user-ratings-to-your-wordpress-forms-step-by-step/\">Rating</a>:</strong> Give attendees the chance to rate your party planning skills and the event itself by adding a rating form field to your website.</li>\n</ul>\n<p>You can also use WPForms’ smart conditional logic to display additional form fields based on an attendee’s answer. For instance, if you receive a rating of 3 or lower, you might display another form field asking your site visitor to explain why.</p>\n<p>For help with setting up conditional logic on your WordPress forms, check out this article on <a href=\"https://wpforms.com/how-to-create-clutter-free-forms-with-smart-logic/\">creating clutter-free forms here</a>.</p>\n<p>When your form looks the way you want it to, click <strong>Save</strong>.</p>\n<h3>Step 2: Configure Your Event Feedback Form’s Settings</h3>\n<p>There are several settings to configure when creating an event feedback form in WordPress. We’ll start with the general settings first.</p>\n<p>To start, go to <strong>Settings</strong> » <strong>General</strong>.</p>\n<p><img class=\"alignnone size-full wp-image-246850\" src=\"https://wpforms.com/wp-content/uploads/2018/08/WPForms-General-Settings.png\" alt=\"WPForms General Settings\" width=\"562\" height=\"443\" srcset=\"https://wpforms.com/wp-content/uploads/2018/08/WPForms-General-Settings.png 562w, https://wpforms.com/wp-content/uploads/2018/08/WPForms-General-Settings-300x236.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Here you can configure the following:</p>\n<ul>\n<li><strong>Form Name.</strong> Rename your form if you want to.</li>\n<li><strong>Form Description.</strong> Give your form a description.</li>\n<li><strong>Submit Button Text.</strong> Customize the submit button copy.</li>\n<li><strong>Spam Prevention.</strong> <a href=\"https://wpforms.com/how-to-build-a-spam-free-contact-form-without-captcha/\">Enable the anti-spam honeypot feature</a> to prevent fake feedback form submissions. This feature is automatically enabled on all WordPress forms. If you decide to use another form of spam prevention, you can unclick this option or use it in addition to things like Google’s invisible CAPTCHA.</li>\n<li><strong>GDPR Enhancements.</strong> You can disable the storing of entry information and user details, such as IP addresses and user agents, in an effort to <a href=\"https://wpforms.com/docs/how-to-create-gdpr-compliant-forms/\">comply with GDPR requirements</a>.</li>\n</ul>\n<p>Click <strong>Save</strong>.</p>\n<h3>Step 3: Configure Your Event Feedback Form’s Notifications</h3>\n<p>Notifications are a great way to send an email whenever a person submits a feedback form on your WordPress website.</p>\n<p><img class=\"alignnone size-full wp-image-246852\" src=\"https://wpforms.com/wp-content/uploads/2018/08/WPForms-Notifications-Settings.png\" alt=\"WPForms Notifications Settings\" width=\"562\" height=\"228\" srcset=\"https://wpforms.com/wp-content/uploads/2018/08/WPForms-Notifications-Settings.png 562w, https://wpforms.com/wp-content/uploads/2018/08/WPForms-Notifications-Settings-300x122.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>In fact, unless you disable this feature, whenever someone leaves feedback on your site, you’ll get a notification about it.</p>\n<p>If you <a href=\"https://wpforms.com/docs/how-to-use-smart-tags-in-wpforms/\">use smart tags</a>, you can also send a notification to your attendee when they submit feedback, letting them know you received their form and will be in contact shortly. This assures site visitors their forms have gone through properly.</p>\n<p>For help with this step, check out our documentation on <a href=\"https://wpforms.com/docs/setup-form-notification-wpforms/\">how to set up form notifications in WordPress</a>.</p>\n<p>And, if you want to send more than one email, read this article on <a href=\"https://wpforms.com/how-to-create-multiple-form-notifications-in-wordpress-forms/\">how to create multiple form notifications in WordPress</a>.</p>\n<p>Lastly, if you want to keep branding across your notification emails consistent, you can check out this guide on <a href=\"https://wpforms.com/docs/how-to-add-custom-header-image-in-your-wpforms-email-template/\">adding a custom header to your email template</a>.</p>\n<p><img class=\"alignnone size-full wp-image-211599\" src=\"https://wpforms.com/wp-content/uploads/2018/06/Custom-Email-Header.jpg\" alt=\"Custom Email Header\" width=\"562\" height=\"314\" srcset=\"https://wpforms.com/wp-content/uploads/2018/06/Custom-Email-Header.jpg 562w, https://wpforms.com/wp-content/uploads/2018/06/Custom-Email-Header-300x168.jpg 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<h3>Step 4: Configure Your Event Feedback Form’s Confirmations</h3>\n<p>Form confirmations are messages that display to site visitors once they submit an event feedback form on your website. They let people know that their feedback has been received and offer you the chance to let them know the next steps.</p>\n<p>WPForms has three confirmation types to choose from:</p>\n<ol>\n<li><strong>Message.</strong> This is the default confirmation type in WPForms. When a site visitor leaves feedback, a simple message confirmation will appear letting them know it was received. Look here for some <a href=\"https://wpforms.com/form-success-message-ideas-to-boost-customer-happiness/\">great success messages</a> to help boost customer happiness.</li>\n<li><strong>Show Page.</strong> This confirmation type will take site visitors to a specific web page on your site thanking them for filling out your feedback form. For help doing this, check out our tutorial on <a href=\"https://wpforms.com/how-to-redirect-users-after-wordpress-form-submit/\">redirecting customers to a thank you page</a>. In addition, be sure to check out our article on <a href=\"https://wpforms.com/4-thank-you-page-examples-to-boost-customer-loyalty/\">creating effective Thank You pages</a> for boosting customer loyalty.</li>\n<li><strong>Go to URL (Redirect).</strong> This option is used when you want to send site visitors to a different website.</li>\n</ol>\n<p>Let’s see how to set up a simple form confirmation in WPForms so you can customize the message site visitors will see when they leave feedback about an event you hosted.</p>\n<p>To start, click on the <strong>Confirmation</strong> tab in the Form Editor under <strong>Settings</strong>.</p>\n<p>Next, select the type of confirmation type you’d like to create. For this example, we’ll select <strong>Message</strong>.</p>\n<p><img class=\"alignnone size-full wp-image-246854\" src=\"https://wpforms.com/wp-content/uploads/2018/08/Confirmation-Message.png\" alt=\"Confirmation Message\" width=\"562\" height=\"290\" srcset=\"https://wpforms.com/wp-content/uploads/2018/08/Confirmation-Message.png 562w, https://wpforms.com/wp-content/uploads/2018/08/Confirmation-Message-300x155.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Then, customize the confirmation message to your liking, and click <strong>Save</strong> when you’re done.</p>\n<p>For help with other confirmation types, see out documentation on <a href=\"https://wpforms.com/docs/setup-form-confirmation-wpforms/\">setting up form confirmations</a>.</p>\n<h3>Step 5: Enable Surveys and Polls Reporting</h3>\n<p>If you’ve added survey or poll questions to your event feedback form using form fields like the Likert Scale or Rating field, you’ll need to enable survey and/or poll reporting so you can see the results in one convenient location.</p>\n<p>You can collect and view survey results on the following form fields:</p>\n<ul>\n<li>Single Line Text</li>\n<li>Paragraph Text</li>\n<li>Dropdown</li>\n<li>Checkboxes</li>\n<li>Multiple Choice</li>\n<li>Rating</li>\n<li>Likert Scale</li>\n<li>Net promoter Score</li>\n</ul>\n<p>Survey results are only seen by you in the backend of your website.</p>\n<p>You can collect and view poll results on the following form fields:</p>\n<ul>\n<li>Dropdown</li>\n<li>Checkboxes</li>\n<li>Multiple Choice</li>\n</ul>\n<p>Poll results are seen by you on the backend of your website <strong>and by site visitors</strong> on the frontend of your website.</p>\n<p>To enable survey and/or poll reporting, go to <strong>Surveys and Polls</strong> tab in the Form Editor under <strong>Settings</strong>.</p>\n<p>Next, click <strong>Enable Survey Reporting</strong> and/or <strong>Enable Poll Results</strong>.</p>\n<p><img class=\"alignnone size-full wp-image-345832\" src=\"https://wpforms.com/wp-content/uploads/2018/12/surveys-and-polls-settings.png\" alt=\"surveys and polls settings\" width=\"562\" height=\"239\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/surveys-and-polls-settings.png 562w, https://wpforms.com/wp-content/uploads/2018/12/surveys-and-polls-settings-300x128.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Now, anytime someone submits feedback about an event you recently hosted using your event feedback form, you can access the results by clicking on <strong>Survey Results</strong> in the <strong>Forms Overview</strong> section.</p>\n<p><img class=\"alignnone size-full wp-image-345831\" src=\"https://wpforms.com/wp-content/uploads/2018/12/survey-results.png\" alt=\"survey results\" width=\"562\" height=\"230\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/survey-results.png 562w, https://wpforms.com/wp-content/uploads/2018/12/survey-results-300x123.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Here is an example of what your results might look like:</p>\n<p><img class=\"alignnone size-full wp-image-345830\" src=\"https://wpforms.com/wp-content/uploads/2018/12/example-survey-results.png\" alt=\"example survey results\" width=\"562\" height=\"373\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/example-survey-results.png 562w, https://wpforms.com/wp-content/uploads/2018/12/example-survey-results-300x199.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<h3>Step 6: Add Your Event Feedback Form to Your Website</h3>\n<p>After you’ve created your event feedback form, you need to add it to your WordPress website.</p>\n<p>WPForms allows you to add your forms to many locations on your website, including your blog posts, pages, and even <a href=\"https://wpforms.com/how-to-add-a-contact-form-in-wordpress-sidebar-widget/\">sidebar widgets</a>.</p>\n<p>Let’s take a look at the most common post/page embed option.</p>\n<p>To start, create a new post or page in WordPress and then click on the <strong>Add Form</strong> button.</p>\n<p>Next, select your contact form in the modal popup and click <strong>Add Form</strong>.</p>\n<p><img class=\"alignnone size-full wp-image-345827\" src=\"https://wpforms.com/wp-content/uploads/2018/12/add-event-feedback-form.png\" alt=\"add event feedback form\" width=\"562\" height=\"339\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/add-event-feedback-form.png 562w, https://wpforms.com/wp-content/uploads/2018/12/add-event-feedback-form-300x181.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Then, publish your post or page so your event feedback form will appear on your website.</p>\n<p>And there you have it! You now know how to create an event feedback form in WordPress.</p>\n<p>Do you want to increase the visibility of your event feedback form and encourage more form submissions? Try <a href=\"https://wpforms.com/how-to-create-a-popup-feedback-form-in-wordpress/\">creating a popup feedback form in WordPress</a> and find out how your attendees’ really feel about the events you plan or host.</p>\n<p>So, what are you waiting for? Get started with the most powerful <a href=\"https://wpforms.com\">WordPress forms plugin</a> today.</p>\n<p>And don’t forget, if you like this article, then please follow us on <a href=\"https://www.facebook.com/wpforms\" target=\"_blank\" rel=\"nofollow noopener\">Facebook</a> and <a href=\"http://twitter.com/easywpforms\" target=\"_blank\" rel=\"nofollow noopener\">Twitter</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/how-to-create-an-event-feedback-form-in-wordpress/\">How to Create an Event Feedback Form in WordPress</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wpforms.com/how-to-create-an-event-feedback-form-in-wordpress/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:51:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"How to Create a Custom Support Ticket Form in WordPress With Zendesk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://wpforms.com/how-to-create-a-custom-support-ticket-form-on-wordpress-with-zendesk/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://wpforms.com/how-to-create-a-custom-support-ticket-form-on-wordpress-with-zendesk/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 24 Dec 2018 13:00:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:19:\"WordPress Tutorials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"zapier\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:19:\"support ticket form\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:7:\"zendesk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://wpforms.com/?p=43947\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:623:\"<p>Are you looking to create a customized Zendesk support ticket form in WordPress? With WPForms, you can easily allow your users to request assistance on your site and ask for whatever information you need. In this article, we’ll look at how to create a Zendesk support ticket form in WordPress. Why Use WPForms With Zendesk? [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/how-to-create-a-custom-support-ticket-form-on-wordpress-with-zendesk/\">How to Create a Custom Support Ticket Form in WordPress With Zendesk</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Lindsay Liedke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:19384:\"<p>Are you looking to create a customized Zendesk support ticket form in WordPress? With WPForms, you can easily allow your users to request assistance on your site and ask for whatever information you need.</p>\n<p>In this article, we’ll look at how to create a Zendesk support ticket form in WordPress.</p>\n<h3>Why Use WPForms With Zendesk?</h3>\n<p>Zendesk is the most popular support ticket system that allows you to track, prioritize, and solve customer support tickets. You can manage all your customer information in one place, which makes communication with your customers easy and efficient.</p>\n<p>If you want to allow your customers to submit a Zendesk ticket on your site, you can embed a simple contact form using WPForms.</p>\n<p>But what if you want to customize the form to request more information, <a title=\"How to Add an Image to a WordPress Form to Increase Engagement\" href=\"https://wpforms.com/add-image-to-wordpress-form/\">add images to your form</a> or other custom HTML, or send <a title=\"How to Create Multiple Notifications in WordPress Forms\" href=\"https://wpforms.com/how-to-create-multiple-notifications-in-wordpress-forms/\">additional form notifications</a> when it&#8217;s submitted?</p>\n<p>With WPForms, you can easily create a custom support ticket form in WordPress and connect it with Zendesk. No need to learn any code!</p>\n<p>Let’s see how it works.</p>\n<h3>Step 1: Create a Custom Support Ticket Form</h3>\n<p>The first thing you’ll need to do is install and activate the <a href=\"https://wpforms.com/pricing/\">WPForms plugin</a>. For more details, see this step by step guide on <a title=\"Step by step guide on How to Install a WordPress Plugin\" href=\"http://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/\" target=\"_blank\" rel=\"noopener\">how to install a plugin in WordPress</a>.</p>\n<p>Next, you’ll need to install and activate the <a href=\"https://wpforms.com/features/form-templates/\">Form Templates Pack addon</a> so you can create a support ticket form. Keep in mind, if you prefer to create a form from scratch, or use a different template, you can. The Support Ticket Form template is just an easy way to get started.</p>\n<p>To do this, go to <strong>WPForms</strong> » <strong>Addon</strong> and find the one labeled <strong>For Templates Pack</strong>.</p>\n<p>Click <strong>Install Addon</strong> and then <strong>Activate</strong>.</p>\n<p><img class=\"alignnone size-full wp-image-291194\" src=\"https://wpforms.com/wp-content/uploads/2018/10/form-templates-pack-addon.png\" alt=\"form templates pack addon\" width=\"562\" height=\"193\" srcset=\"https://wpforms.com/wp-content/uploads/2018/10/form-templates-pack-addon.png 562w, https://wpforms.com/wp-content/uploads/2018/10/form-templates-pack-addon-300x103.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Now you’ll need to create a new form.</p>\n<p>To do this, go to <strong>WPForms</strong> » <strong>Add New</strong>, name your form, and choose the <strong>Support Ticket Form</strong> template.</p>\n<p><img class=\"alignnone size-full wp-image-345384\" src=\"https://wpforms.com/wp-content/uploads/2017/05/support-ticket-form-template.png\" alt=\"support ticket form template\" width=\"562\" height=\"271\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/support-ticket-form-template.png 562w, https://wpforms.com/wp-content/uploads/2017/05/support-ticket-form-template-300x145.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>WPForms will create a form for you. For our example, we’ll name our form Support Ticket Form.</p>\n<p><img class=\"alignnone size-full wp-image-345383\" src=\"https://wpforms.com/wp-content/uploads/2017/05/support-ticket-form.png\" alt=\"support ticket form\" width=\"562\" height=\"504\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/support-ticket-form.png 562w, https://wpforms.com/wp-content/uploads/2017/05/support-ticket-form-300x269.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>You’ll see your support ticket form has the following form fields:</p>\n<ul>\n<li>Name</li>\n<li>Email</li>\n<li>What can we help you with today? (Multiple Choice)</li>\n<li>Your website (Website / URL)</li>\n<li>Issues / Message (Paragraph Text)</li>\n</ul>\n<p>Of course, this is just to get you started and is geared towards those that provide computer support to customers. You can easily add or remove any form fields you want to customize the support form to meet your needs.</p>\n<p>To add additional fields to your form, drag them from the left hand panel to the right hand panel.</p>\n<p>Then, click on the field to make any changes. You can also click on a form field and drag it to rearrange the order.</p>\n<p>This is what our form looks like:</p>\n<p><img class=\"alignnone size-full wp-image-345385\" src=\"https://wpforms.com/wp-content/uploads/2017/05/final-support-ticket-form.png\" alt=\"final support ticket form\" width=\"562\" height=\"663\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/final-support-ticket-form.png 562w, https://wpforms.com/wp-content/uploads/2017/05/final-support-ticket-form-254x300.png 254w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>For more help with creating your form, check out this tutorial on <a href=\"https://wpforms.com/how-to-create-a-support-ticket-form-template-best-practices/\">how to create a support ticket form in WordPress</a>.</p>\n<p>After you create your form, you’ll need to install and activate the <a href=\"https://wpforms.com/addons/zapier-addon/\">Zapier addon</a>.</p>\n<p>The Zapier addon lets you connect your WordPress forms to over 1,000+ web apps, including Zendesk. It’s quick and easy, and the best way to manage support tickets submitted on your WordPress website.</p>\n<p>For more help with this step, take a look at how to <a href=\"https://wpforms.com/docs/how-to-install-and-use-zapier-addon-with-wpforms/\">install and use the Zapier addon</a>.</p>\n<p>Now, let’s take a look at how to connect your WordPress support form to Zendesk.</p>\n<h3>Step 2: Create a New Zap</h3>\n<p>The first thing you’ll need to do is log into your Zapier account and click on the <strong>Make a Zap</strong> button near the top of the screen. If you don’t have a Zapier account, you can <a href=\"https://zapier.com/\" target=\"_blank\" rel=\"nofollow noopener\">create one here</a>.</p>\n<p><img class=\"alignnone size-full wp-image-345386\" src=\"https://wpforms.com/wp-content/uploads/2017/05/create-a-new-zap.png\" alt=\"create a new zap\" width=\"562\" height=\"132\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/create-a-new-zap.png 562w, https://wpforms.com/wp-content/uploads/2017/05/create-a-new-zap-300x70.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Next, you’ll need to choose a trigger app, which in our case is WPForms. Search for WPForms in the search bar and click on it.</p>\n<p>The only option available will be <strong>New Form Entry</strong>. Click <strong>Save + Continue</strong> to make WPForms the trigger when a form entry is submitted on your website.</p>\n<p><img class=\"alignnone size-full wp-image-345401\" src=\"https://wpforms.com/wp-content/uploads/2017/05/wpforms-zapier-trigger.png\" alt=\"wpforms + zapier trigger\" width=\"562\" height=\"302\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/wpforms-zapier-trigger.png 562w, https://wpforms.com/wp-content/uploads/2017/05/wpforms-zapier-trigger-300x161.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>From there, follow the instructions for finalizing WPForms as the trigger app. This will include selecting a WPForms account and verifying that it’s valid.</p>\n<p>For help with this step, take a look at this step by step tutorial for <a href=\"https://wpforms.com/docs/how-to-install-and-use-zapier-addon-with-wpforms/\">using Zapier with WPForms</a>.</p>\n<p>When you finish, Zapier will now be connected to WPForms.</p>\n<p>When prompted to set up the WPForms entry, make sure to select the new WordPress form you created earlier. Remember, we named our form Support Ticket Form.</p>\n<p><img class=\"alignnone size-full wp-image-345387\" src=\"https://wpforms.com/wp-content/uploads/2017/05/support-ticket-form-entry-in-zapier.png\" alt=\"support ticket form entry in zapier\" width=\"562\" height=\"305\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/support-ticket-form-entry-in-zapier.png 562w, https://wpforms.com/wp-content/uploads/2017/05/support-ticket-form-entry-in-zapier-300x163.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Click <strong>Continue</strong>.</p>\n<p>You will now need to test your support ticket form to make sure it works right. The only way for Zapier to test your form is to have at least one test entry form submitted.</p>\n<p>To create a test entry so Zapier can fetch and test your WordPress form, navigate to <strong>WPForms</strong> » <strong>All Forms</strong> and find your Support Ticket form. Click on <strong>Preview</strong>.</p>\n<p><img class=\"alignnone size-full wp-image-345388\" src=\"https://wpforms.com/wp-content/uploads/2017/05/support-ticket-preview.png\" alt=\"support ticket preview\" width=\"562\" height=\"239\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/support-ticket-preview.png 562w, https://wpforms.com/wp-content/uploads/2017/05/support-ticket-preview-300x128.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>You’ll see a preview of your support ticket form. Fill out the form and submit it as though you’re a site visitor. This will give your support ticket form one entry, which you’ll see in the dashboard.</p>\n<p><img class=\"alignnone size-full wp-image-345389\" src=\"https://wpforms.com/wp-content/uploads/2017/05/support-ticket-form-entry.png\" alt=\"support ticket form entry\" width=\"562\" height=\"184\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/support-ticket-form-entry.png 562w, https://wpforms.com/wp-content/uploads/2017/05/support-ticket-form-entry-300x98.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>After you have at least one form entry for your support ticket form, go back to your Zapier account and click <strong>Pull in Samples</strong>.</p>\n<p><img class=\"alignnone size-full wp-image-345390\" src=\"https://wpforms.com/wp-content/uploads/2017/05/pull-in-samples-in-zapier.png\" alt=\"pull in samples in zapier\" width=\"562\" height=\"432\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/pull-in-samples-in-zapier.png 562w, https://wpforms.com/wp-content/uploads/2017/05/pull-in-samples-in-zapier-300x231.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>If your test form entry was successful, and Zapier is connected to WPForms, you’ll see the form entry on the next screen. If you click on the dropdown arrow, you’ll see the form fields as they were filled out on your test form entry.</p>\n<p><img class=\"alignnone size-full wp-image-345391\" src=\"https://wpforms.com/wp-content/uploads/2017/05/complete-zapier-sample.png\" alt=\"complete zapier sample\" width=\"562\" height=\"608\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/complete-zapier-sample.png 562w, https://wpforms.com/wp-content/uploads/2017/05/complete-zapier-sample-277x300.png 277w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Click <strong>Continue</strong>.</p>\n<h3>Step 3: Connect Your WordPress Forms to Zendesk</h3>\n<p>Now that Zapier is connected to the WPForms plugin, you need to connect WPForms to Zendesk.</p>\n<p>To start, search for the Zendesk app in the search bar and select it as the action app.</p>\n<p><img class=\"alignnone size-full wp-image-345392\" src=\"https://wpforms.com/wp-content/uploads/2017/05/choose-zendesk-action-app.png\" alt=\"choose zendesk action app\" width=\"562\" height=\"203\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/choose-zendesk-action-app.png 562w, https://wpforms.com/wp-content/uploads/2017/05/choose-zendesk-action-app-300x108.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Next, you’ll choose the Zendesk action. Since we are creating a support ticket form to collect site visitor support requests, we’ll select <strong>Create Ticket</strong>.</p>\n<p><img class=\"alignnone size-full wp-image-345393\" src=\"https://wpforms.com/wp-content/uploads/2017/05/choose-zendesk-action.png\" alt=\"choose zendesk action\" width=\"562\" height=\"452\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/choose-zendesk-action.png 562w, https://wpforms.com/wp-content/uploads/2017/05/choose-zendesk-action-300x241.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Click <strong>Save + Continue</strong>.</p>\n<p>Now you need to connect your Zendesk account to Zapier.</p>\n<p>To do this, you’ll need to authorize Zapier to access your Zendesk account by entering your Zendesk account name, agent email, and API Token. You can find the API token by going to <strong>Admin » Channels » API</strong> in your Zendesk account.</p>\n<p><img class=\"alignnone size-full wp-image-345394\" src=\"https://wpforms.com/wp-content/uploads/2017/05/zapier-api-token-in-zendesk-account.png\" alt=\"zapier api token in zendesk account\" width=\"562\" height=\"279\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/zapier-api-token-in-zendesk-account.png 562w, https://wpforms.com/wp-content/uploads/2017/05/zapier-api-token-in-zendesk-account-300x149.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Fill in the requested information in Zapier to connect Zendesk to Zapier.</p>\n<p><img class=\"alignnone size-full wp-image-345402\" src=\"https://wpforms.com/wp-content/uploads/2017/05/connect-zapier-to-zendesk-account.png\" alt=\"connect zapier to zendesk account\" width=\"562\" height=\"499\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/connect-zapier-to-zendesk-account.png 562w, https://wpforms.com/wp-content/uploads/2017/05/connect-zapier-to-zendesk-account-300x266.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Click <strong>Yes, Continue</strong> to proceed to the next step.</p>\n<p><img class=\"alignnone size-full wp-image-345395\" src=\"https://wpforms.com/wp-content/uploads/2017/05/connected-zendesk-and-zapier.png\" alt=\"connected zendesk and zapier\" width=\"562\" height=\"320\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/connected-zendesk-and-zapier.png 562w, https://wpforms.com/wp-content/uploads/2017/05/connected-zendesk-and-zapier-300x171.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Click <strong>Save + Continue</strong> to proceed to the next step.</p>\n<h3>Step 4: Create a Zendesk Ticket</h3>\n<p>Now you need to set up a Zendesk Ticket.</p>\n<p>In this step, you’ll have to configure the correct WPForms fields in its corresponding Zendesk fields. You can select the right WPForms field by clicking the + icon on each field in Zapier.</p>\n<p>See the screenshot below.</p>\n<p><img class=\"alignnone size-full wp-image-345396\" src=\"https://wpforms.com/wp-content/uploads/2017/05/set-up-zendesk-ticket.png\" alt=\"set up zendesk ticket\" width=\"562\" height=\"495\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/set-up-zendesk-ticket.png 562w, https://wpforms.com/wp-content/uploads/2017/05/set-up-zendesk-ticket-300x264.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Click <strong>Continue</strong>.</p>\n<p>To test the Zendesk ticket, click <strong>Send Test to Zendesk</strong>.</p>\n<p><img class=\"alignnone size-full wp-image-345397\" src=\"https://wpforms.com/wp-content/uploads/2017/05/test-zendesk-support-ticket.png\" alt=\"test zendesk support ticket\" width=\"562\" height=\"609\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/test-zendesk-support-ticket.png 562w, https://wpforms.com/wp-content/uploads/2017/05/test-zendesk-support-ticket-277x300.png 277w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>You&#8217;ll see a success message if the test went through.</p>\n<p><img class=\"alignnone size-full wp-image-345398\" src=\"https://wpforms.com/wp-content/uploads/2017/05/successful-test.png\" alt=\"successful test\" width=\"562\" height=\"286\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/successful-test.png 562w, https://wpforms.com/wp-content/uploads/2017/05/successful-test-300x153.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>You may log in to your Zendesk account to view the newly added ticket.</p>\n<p><img class=\"alignnone size-full wp-image-345399\" src=\"https://wpforms.com/wp-content/uploads/2017/05/zendesk-account-ticket.png\" alt=\"zendesk account ticket\" width=\"562\" height=\"192\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/zendesk-account-ticket.png 562w, https://wpforms.com/wp-content/uploads/2017/05/zendesk-account-ticket-300x102.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Click <strong>Finish</strong> in your Zapier account.</p>\n<p>Lastly, name your Zap and turn it on so that when someone submits a support ticket form on your WordPress website, the form entry goes directly to your Zendesk account.</p>\n<p><img class=\"alignnone size-full wp-image-345400\" src=\"https://wpforms.com/wp-content/uploads/2017/05/name-and-turn-on-zap.png\" alt=\"name and turn on zap\" width=\"562\" height=\"294\" srcset=\"https://wpforms.com/wp-content/uploads/2017/05/name-and-turn-on-zap.png 562w, https://wpforms.com/wp-content/uploads/2017/05/name-and-turn-on-zap-300x157.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<h3>Make Your Support System More Efficient</h3>\n<p>You can follow the below tips to speed up your response time and resolution time. These simple things can make your support system more efficient.</p>\n<ul>\n<li>Ask detailed questions in your support ticket form. This can help you better understand the issues of your customers and resolve them quickly.</li>\n<li>If you have extensive documentation published on your site, you might want to encourage your users to read it before submitting a support ticket.</li>\n<li>Tell your customers how long it usually takes to get a response from an agent. This can help your customers to set an expectation on turnaround time.</li>\n</ul>\n<p>And there you have it! You now know how to create a custom support ticket form in WordPress with Zendesk.</p>\n<p>If you enjoyed this article, you might also want to check out <a href=\"https://wpforms.com/form-success-message-ideas-to-boost-customer-happiness/\">3 Form Success Message Ideas to Boost Customer Happiness</a> so that when people submit support tickets on your site, they know right away their request was processed.</p>\n<p>Better yet, come read about how <a href=\"https://wpforms.com/wpforms-is-one-of-zapiers-fastest-growing-apps/\">WPForms is one of Zapier’s fastest growing apps</a> and see why connecting WPForms to Zapier is one of the best things you can do for your business.</p>\n<p>So, what are you waiting for? Get started with the most powerful <a href=\"https://wpforms.com\">WordPress forms plugin</a> today.</p>\n<p>And don’t forget, if you like this article, then please follow us on <a href=\"https://www.facebook.com/wpforms\" target=\"_blank\" rel=\"nofollow noopener\">Facebook</a> and <a href=\"http://twitter.com/easywpforms\" target=\"_blank\" rel=\"nofollow noopener\">Twitter</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/how-to-create-a-custom-support-ticket-form-on-wordpress-with-zendesk/\">How to Create a Custom Support Ticket Form in WordPress With Zendesk</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://wpforms.com/how-to-create-a-custom-support-ticket-form-on-wordpress-with-zendesk/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:51:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Formstack Alternative: WPForms vs Formstack Compared (Pros and Cons)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://wpforms.com/formstack-alternative-wpforms-vs-formstack-compared-pros-and-cons/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://wpforms.com/formstack-alternative-wpforms-vs-formstack-compared-pros-and-cons/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Dec 2018 13:00:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:9:\"Marketing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:12:\"contact form\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"WPForms\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:12:\"form builder\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wpforms.com/?p=343035\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:613:\"<p>Are you looking for a Formstack alternative? If you’re trying to decide which contact form builder to use on your website, you might be curious to know how WPForms matches up against Formstack. In this article, we’ll compare WPForms and Formstack so you can decide which is the best form plugin for you. Since this [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/formstack-alternative-wpforms-vs-formstack-compared-pros-and-cons/\">Formstack Alternative: WPForms vs Formstack Compared (Pros and Cons)</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Lindsay Liedke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:30176:\"<p>Are you looking for a Formstack alternative? If you’re trying to decide which contact form builder to use on your website, you might be curious to know how WPForms matches up against Formstack.</p>\n<p>In this article, we’ll compare WPForms and Formstack so you can decide which is the best form plugin for you.</p>\n<p>Since this is a detailed comparison of WPForms vs Formstack, here&#8217;s a quick table of contents:</p>\n<ul>\n<li><a href=\"#overview\">Overview: WPForms vs Formstack</a></li>\n<li><a href=\"#criteria\">What to Look for in a Contact Form Builder</a></li>\n<li><a href=\"#ease-of-use\">Ease of Use Comparison</a></li>\n<li><a href=\"#features\">Features Comparison</a></li>\n<li><a href=\"#support\">Support Comparison</a></li>\n<li><a href=\"#account-management\">Account Management Comparison</a></li>\n<li><a href=\"#integrations\">Integrations Comparison</a></li>\n<li><a href=\"#price\">Price Comparison</a></li>\n<li><a href=\"#conclusion\">Conclusion: WPForms vs Formstack: Which is Better?</a></li>\n</ul>\n<h3 id=\"overview\">Overview: WPForms vs Formstack</h3>\n<p>Before we start with our comparison of WordPress form builders, let’s take a look a look at the basics behind each.</p>\n<p><strong>What is WPForms?</strong></p>\n<p><a href=\"https://wpforms.com/\">WPForms</a> is a beginner friendly contact form plugin that aims to make creating WordPress forms easy to do no matter how much experience you have.</p>\n<p>It comes with plenty of built-in features for creating smart, yet powerful online forms, has a variety of fields making your forms completely customizable, and cuts down on the time needed to create stunning forms for your website that convert.</p>\n<p>Everything is drag and drop with WPForms. Pair this with the pre-made templates available and you have everything you need to create and launch a WordPress form on your site with one single click.</p>\n<p>In addition, WPForms comes with multiple premium addons, making it possible to do things like <a href=\"https://wpforms.com/addons/surveys-and-polls-addon/\">add surveys and polls</a> to your forms and <a href=\"https://wpforms.com/how-to-let-customers-choose-between-check-or-paypal-payments/\">accept online payments</a>.</p>\n<p>Whether you want to create a simple contact form, or a more complex online order form, WPForms makes it easy to do.</p>\n<p><strong>What is Formstack?</strong></p>\n<p>Formstack is an online form builder that has tools to help you create forms.</p>\n<p>It comes with pre-designed templates to pick from for creating forms, metrics reporting, and the ability to collect payments.</p>\n<p>It also has a drag and drop interface for adding form fields and customization options for branding your forms.</p>\n<p>Now, let’s take a look at the specifics of each contact form to find out whether WPForms is a good Formstack alternative or not.</p>\n<h3 id=\"criteria\">What to Look for in a Contact Form Builder</h3>\n<p>There are few things you should focus on when comparing two contact form builder options before making your final decision:</p>\n<ul>\n<li><strong>Ease of Use:</strong> It should be easy to use for everyone, even complete beginners.</li>\n<li><strong>Features:</strong> There should be plenty of built-in features so you can create unique, powerful forms for your website.</li>\n<li><strong>Support:</strong> You should have access to support any time you run into a problem.</li>\n<li><strong>Account Management:</strong> Being able to easily access and manage your form entries should be easy to do.</li>\n<li><strong>Integrations: </strong>Your forms should integrate with a variety of email service providers, payment gateways, and more, for simplifying the form building process.</li>\n<li><strong>Price:</strong> Price will always play a role in your final decision. In the end, you should get more than what you pay for.</li>\n</ul>\n<p>These are some of the most basic things to look for in any contact form builder you consider using on your WordPress website, no matter whay kind of forms you’re looking to create.</p>\n<p>That’s why in our WPForms vs Formstack comparison, we’ll take a look at how each stacks up against all of these requirements.</p>\n<h3 id=\"ease-of-use\">Ease of Use: WPForms vs Formstack</h3>\n<p>Being able to use the contact form builder solution you choose is the key to creating effective and highly converting forms.</p>\n<p>If you struggle with creating forms, you won’t get the results you desire. Plus, you’ll lose out on potential leads, conversions, and sales.</p>\n<p><strong>Formstack: Ease of Use</strong></p>\n<p>Formstack is an online form builder that comes with a drag and drop interface that requires no coding, or so that&#8217;s the claim.</p>\n<p>To add form fields to your form, drag a form field from the choices on the right hand side to the left hand side. If you want, you can also use a pre-made template to get you started.</p>\n<p><img class=\"alignnone size-full wp-image-343036\" src=\"https://wpforms.com/wp-content/uploads/2018/12/formstack-interface.png\" alt=\"formstack interface\" width=\"562\" height=\"528\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/formstack-interface.png 562w, https://wpforms.com/wp-content/uploads/2018/12/formstack-interface-300x282.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>The interface is not very intuitive because there are so many different options to click on to make changes. For example, click on one of two buttons to create or style your forms. Drag and drop form fields on the actual form itself, or click another button to reorder the fields.</p>\n<p>If you want to apply special functionality, you guessed it, click on another button to see which changes you can make and apply them there.</p>\n<p>If you want to see a preview of your form after clicking on all of the these buttons and making changes, you have to click <strong>View Live Form</strong>.</p>\n<p>Don’t like something on your form? You have to go back to the form builder, make a change, and check out the live preview again. This can quickly become frustrating for the user if there are many changes to be made.</p>\n<p>Lastly, getting your form to appear on your website is very confusing for beginners. Not to mention, Formstack mentions that that some WordPress themes overpower Formstack styling. To fix this, you will have to override those changes by editing the CSS of your form. This means messing with code, which is not user friendly.</p>\n<p><strong>WPForms: Ease of Use</strong></p>\n<p>WPForms is a modern WordPress form builder that <strong>focuses on usability and simplicity</strong>.</p>\n<p>It’s the most beginner friendly WordPress contact form plugin on the market today, and truly requires no coding knowledge to create forms. And to help you get started when you install and activate the plugin, we have created the WPForms challenge, which guides you through creating your first form, so you can get a feel for how easy it is to get a form up and running on your site – all in under five minutes.</p>\n<p>WPForms comes with pre-designed templates that have all the form fields you need to get your form started. And while Formstack has tons of templates to choose from, once you choose one to work with, it’s difficult to find out how to change it once in the form builder. The only other solution seems to be to start all over again, which is annoying.</p>\n<p>On the other hand, WPForms has templates for any kind of form you can think of, including survey forms, registrations and login forms, job applications, support ticket forms, donation forms, and so much more.</p>\n<p>Accessing WPForms’ pre-made templates is easy since they are found right in the WPForms Form Editor. And if you need to change an existing template while customizing the form you’re working on, all you have to do is access the templates and make a change.</p>\n<p><img class=\"alignnone size-full wp-image-299348\" src=\"https://wpforms.com/wp-content/uploads/2018/10/wpforms-templates.png\" alt=\"wpforms templates\" width=\"562\" height=\"514\" srcset=\"https://wpforms.com/wp-content/uploads/2018/10/wpforms-templates.png 562w, https://wpforms.com/wp-content/uploads/2018/10/wpforms-templates-300x274.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>When you want to add a new field to your form, use the drag and drop functionality. Just drag the field you want from the left hand panel to your form on the right hand side.</p>\n<p>Then, click on the field to make changes. As you make changes to your fields, you’ll see those changes in real-time on your form in the preview panel. There is no back and forth nonsense while creating forms. What you see is what you get, right there in the Form Editor.</p>\n<p>WPForms comes with plenty of form fields right out of the box.</p>\n<p><img class=\"alignnone size-full wp-image-218831\" src=\"https://wpforms.com/wp-content/uploads/2018/06/Simple-Contact-Form.png\" alt=\"Simple Contact Form\" width=\"562\" height=\"372\" srcset=\"https://wpforms.com/wp-content/uploads/2018/06/Simple-Contact-Form.png 562w, https://wpforms.com/wp-content/uploads/2018/06/Simple-Contact-Form-300x199.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>For example, WPForms allows you to <a href=\"https://wpforms.com/how-to-accept-recurring-payments-on-your-wordpress-forms/\">accept payments from site visitors</a> on your forms using Stripe, which supports recurring payments, or PayPal. Plus, it comes with Single Item, Multiple Item, Dropdown Items, Credit Card, and Total form fields so you can <a href=\"http://www.wpbeginner.com/beginners-guide/make-money-online/\" target=\"_blank\" rel=\"noopener\">make money online</a> in the easiest way possible.</p>\n<p>This is in addition to unique form fields such as:</p>\n<ul>\n<li>GDPR Agreement</li>\n<li>Captcha</li>\n<li>Section Divider</li>\n<li>Page break</li>\n<li>Hidden Field</li>\n<li>Password</li>\n<li>Website / URL</li>\n</ul>\n<p>If you want a form builder plugin that’s easy to use right out of the box, but still offers a ton of built-in features, WPForms works great as an alternative to Formstack.</p>\n<p><strong>Winner: WPForms</strong></p>\n<h3 id=\"features\">Features: WPForms vs Formstack</h3>\n<p>It’s not enough for your contact form builder to be easy to use. If it’s too basic, or doesn’t provide a lot of flexibility, you won’t be able to create powerful forms that grab people’s attention and convince them to convert.</p>\n<p>The success of your business depends on how well potential followers or customers can get in touch with you. That’s why an extensive feature set is so important.</p>\n<p><strong>Formstack Features</strong></p>\n<p>Formstack&#8217;s feature set is very limited when compared to what WPForms has to offer.</p>\n<p>In fact, here are some of the most blatant limitations:</p>\n<ul>\n<li>There are no specialty form fields like WPForms&#8217; GDPR Agreement, Captcha, or Password fields</li>\n<li>You can only collect a limited number of form entries per month, even on the first tier paid plan</li>\n<li>Each paid plan has a form creation limit</li>\n<li>Although you can customize your forms with themes, each plan has a theme limit</li>\n<li>Since Formstack stores your form entries, and any files that are uploaded to your forms, there are storage limits on all plans</li>\n<li>If your email notifications aren&#8217;t sending to you or your site visitors, you have to troubleshoot on your own to fix it</li>\n<li>There are no email service provider integrations on the first tier paid plan, making email marketing difficult</li>\n</ul>\n<p>When you want to create forms for your website, and find that the limitations outweigh the feature set, it&#8217;s time to look for a Formstack alternative.</p>\n<p><strong>WPForms Features</strong></p>\n<p>On the other hand, WPForms stands out as more than just a simple form builder because of the sheer amount of built-in features and addons you receive as a customer:</p>\n<ul>\n<li><strong><a href=\"https://wpforms.com/how-to-create-clutter-free-forms-with-smart-logic/\">Smart Conditional Logic</a>: </strong>create as many conditional logic rules as you want, on as many forms as you&#8217;d like so your users have the best experience possible and your forms convert.</li>\n<li><strong>Entry Management:</strong> manage all form entries right in the WordPress dashboard in an organized and easy to understand way. Plus, take advantage of the WPForms dashboard widget and see how yoru forms are performing right in your WordPress dashboard.</li>\n<li><strong>File Uploads:</strong> enjoy unlimited file uploads on all plans. Plus, easily view them, save them to your Media Library, and even access them in the notification you receive when someone submits a form.</li>\n<li><strong>Automatic Form Confirmations:</strong> Choose from three form confirmation types &#8211; Message, Show Page, and Redirect &#8211; or use a combination of all three using smart conditional logic.</li>\n<li><strong><a href=\"https://wpforms.com/addons/surveys-and-polls-addon/\">Survey and Poll</a> Form Creation: </strong>add survey or poll forms to your site, collect responses in one convenient location, and access multiple reports displaying results for easy analysis of data.</li>\n<li><strong>Partial Form Saving: </strong>capture partial form entries and follow up on those leads to turn abandoning site visitors into subscribers, followers, or customers.</li>\n<li><strong>Exhaustive Spam Protection: </strong>enjoy built-in honeypot spam protection, enable captchas, customize your own captchas, or even use Google invisible reCAPTCHA to protect your forms from spam submissions.</li>\n<li><strong>No Limits: </strong>Create as many forms as you want, with as many form fields as you want, and accept as many entries as you like, no matter which plan you choose.</li>\n<li><strong>Online Signature Capability: </strong>collect signatures from site visitors right on your forms for things like contracts and agreements.</li>\n<li><strong>Form Permissions and Access Controls: </strong>password protect your forms, schedule start and stop dates, limit the number of entries you&#8217;ll accept, and even limit form submissions to logged in users, regardless of which plan you have.</li>\n<li><strong>Geolocation Tracking: </strong>learn more about site visitors and their locations with geolocation tracking so you can send targeted email campaigns that are more relevant to them.</li>\n</ul>\n<p>If you’re looking for reasons why WPForms serves as a better solution than Formstack, its feature set alone is compelling.</p>\n<p>In fact, WPForms’ flexibility gives you a chance to create <a href=\"https://wpforms.com/research-based-tips-to-improve-contact-form-conversions/\">standout forms that will convert</a>.</p>\n<p><strong>Winner: WPForms</strong></p>\n<h3 id=\"support\">Support: WPForms vs Formstack</h3>\n<p>No matter how much experience you have with form builders or even websites in general, you’re bound to run into problems every now and then.</p>\n<p>Since your success hinges on your website working right, including your contact forms, knowing there’s a support team backing you at all times can give you the peace of mind that if something did happen, you’d be okay.</p>\n<p><strong>Level of Support: Formstack</strong></p>\n<p>With Formstack, you can access support in two ways:</p>\n<ol>\n<li>Using the generic contact form and choosing a topic that hopefully relates to your issue</li>\n<li>Reading articles in the Resources and Learning section</li>\n</ol>\n<p><img class=\"alignnone size-full wp-image-343039\" src=\"https://wpforms.com/wp-content/uploads/2018/12/formstack-resources.png\" alt=\"formstack resources\" width=\"562\" height=\"511\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/formstack-resources.png 562w, https://wpforms.com/wp-content/uploads/2018/12/formstack-resources-300x273.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Formstack’s resource section does not have a search bar, which makes finding a solution very hard. Though there are content types and topics to pick from, if you’re unsure about how to handle an issue, your guess is as good as mine as to where to start.</p>\n<p>The level of support you get will depend on how much you pay for your monthly Formstack plan.</p>\n<p>Here are some of the most significant support limitations:</p>\n<ul>\n<li>From the first paid tier through the fourth (which will cost you $249 a month!) you do not receive personal onboarding when you sign up</li>\n<li>The first three paid plans (with the third costing you $99 a month!) are not eligible for priority support or technical phone consultations</li>\n</ul>\n<p>Want to add priority support to your Formstack plan? Tack on an extra $99/month to your already high monthly bill and you can.</p>\n<p>What this says to customers is that even though you are willing to shell out hundreds of dollars a month for forms on your site, you do not pay enough to get priority support, and that if you do want it, you’ll have to pay even more.</p>\n<p><strong>Level of Support: WPForms</strong></p>\n<p>If you’re looking for more comprehensive support through a variety of channels, look no further than the best Formstack alternative around: WPForms.</p>\n<p><img class=\"alignnone size-full wp-image-299305\" src=\"https://wpforms.com/wp-content/uploads/2018/10/wpforms-support.png\" alt=\"wpforms support\" width=\"562\" height=\"456\" srcset=\"https://wpforms.com/wp-content/uploads/2018/10/wpforms-support.png 562w, https://wpforms.com/wp-content/uploads/2018/10/wpforms-support-300x243.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>You can access the support ticket system and receive help from the knowledgeable and friendly support team, read through the <a href=\"https://wpforms.com/docs/\">extensive documentation</a> for configuring every little setting possible, and even check out the blog to learn tips and tricks for creating highly converting, good looking WordPress forms.</p>\n<p>And if you want, you can even check out the <a href=\"https://wordpress.org/support/plugin/wpforms-lite\" target=\"_blank\" rel=\"nofollow noopener\">official WordPress Repository</a> where people using WPForms Lite get answers to their most pressing questions.</p>\n<p>Remember when we mentioned that Formstack doesn&#8217;t have an explicit solution to emails not delivering properly when a form is submitted and an email notification goes out?</p>\n<p>Well, not only does WPForms have an explicit solution, which is to use the WP Mail SMPT plugin, the support team is knowledgeable about how to set it up on your site and troubleshoot issues if you run into them. We take a proactive approach to helping you get the most out our easy to use WordPress form builder.</p>\n<p><strong>Winner: WPForms</strong></p>\n<h3 id=\"account-management\">Account Management: WPForms vs Formstack</h3>\n<p>It won’t matter if you’re able to use your online forms to build a bigger email list, collect data based on surveys and polls, or run a nonprofit organization, complete with volunteers, staff, and hosted events, if you can’t manage the entries in an organized and easy way.</p>\n<p><strong>Formstack Account Management</strong></p>\n<p>There is a glaring difference between the way you manage Formstack forms and WPForms forms: the location.</p>\n<p>With Formstack, you have an account on their website where you create and save forms, manage form entries, and analyze results.</p>\n<p>The problem is, every time you want to create a form, make a change, view an entry, or check out metrics, you have to log into your account first. Then you have to go back to your WordPress website and re-embed the form with the new code.</p>\n<p>This is annoying to have to go back and forth between your website and Formstack account.</p>\n<p><strong>WPForms Account Management</strong></p>\n<p>On the other hand, WPForms lets you conveniently manage your forms all within the WordPress dashboard so you never have to leave your website.</p>\n<p>For example, you can do the following:</p>\n<ul>\n<li>View forms you’ve already created</li>\n<li>Create new forms</li>\n<li>Access form entries</li>\n<li>Configure settings related to: your license, email, reCAPTCHA, validation messages, payments, integrations, and more</li>\n<li>Use the import and export tools</li>\n<li>Activate addons that can be used on your forms immediately</li>\n</ul>\n<p><img class=\"alignnone size-full wp-image-299303\" src=\"https://wpforms.com/wp-content/uploads/2018/10/wpforms-form-management.png\" alt=\"wpforms form management\" width=\"562\" height=\"277\" srcset=\"https://wpforms.com/wp-content/uploads/2018/10/wpforms-form-management.png 562w, https://wpforms.com/wp-content/uploads/2018/10/wpforms-form-management-300x148.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>And if you want to get a bird’s eye view of how your forms are performing, take a look at the WPForms dashboard widget. You can see how many total form entries your forms have, as well as a graph view over 7 or 30 days, without ever having to click into your entry management section.</p>\n<p><img class=\"alignnone size-full wp-image-330711\" src=\"https://wpforms.com/wp-content/uploads/2018/11/wpforms-dashboard-widget-1.png\" alt=\"WPForms Dashboard Widget\" width=\"620\" height=\"452\" srcset=\"https://wpforms.com/wp-content/uploads/2018/11/wpforms-dashboard-widget-1.png 620w, https://wpforms.com/wp-content/uploads/2018/11/wpforms-dashboard-widget-1-300x219.png 300w\" sizes=\"(max-width: 620px) 100vw, 620px\" /></p>\n<p>This is perfect for those times you want to monitor a form that means a lot to you in the quickest way possible.</p>\n<p>Managing your website’s forms shouldn’t be difficult. WPForms makes sure it&#8217;s not.</p>\n<p><strong>Winner: WPForms</strong></p>\n<h3 id=\"integrations\">Integrations: WPForms vs Formstack</h3>\n<p>If you&#8217;re going to pay for a WordPress form builder, it better integrate with other platforms to make form creation even better.</p>\n<p><strong>Formstack Integrations</strong></p>\n<p>Formstack offers dozens of third-party integrations.</p>\n<p>For instance, you can integrate with popular tools like Salesforce, Dropbox, and Google Drive. The problem is, if you want to integrate with any of these third-party tools, you have to do so individually. This takes time and makes the process of connecting your forms to helpful tools you rely on to run your business difficult.</p>\n<p>For those collecting payments on their forms, Formstack has 10 payment gateway integrations to choose from. That said, having too many payment processors to deal with can make your job harder and more expensive since that means you’ll have to manage 10 different accounts.</p>\n<p>Lastly, you can connect your forms to email service providers like MailChimp, AWeber, and Constant Contact.</p>\n<p><strong>WPForms Integrations</strong></p>\n<p>WPForms integrates with two of the most popular and widely used payment processors &#8211; PayPal and Stripe &#8211; making life easy for you and your customers. And to top it off, WPForms accepts recurring Stripe payments, which makes collecting donations and subscription or membership payments a cinch.</p>\n<p>In addition, thanks to the Zapier addon, WPForms integrates with <strong>over 1,000 different web apps</strong> from CRMs to invoicing software, calendaring systems to instant messengers.</p>\n<p>For example, you can easily interconnect your forms to apps such as:</p>\n<ul>\n<li>Asana</li>\n<li>QuickBooks</li>\n<li>Google Calendar</li>\n<li>Sendy</li>\n<li>and much more</li>\n</ul>\n<p>Lastly, WPForms integrates with the following powerful email service providers:</p>\n<ul>\n<li>MailChimp</li>\n<li>AWeber</li>\n<li>Campaign Monitor</li>\n<li>Constant Contact</li>\n<li>Drip</li>\n<li>GetResponse</li>\n</ul>\n<p>Being able to connect your WordPress forms to various third-party platforms is a must when choosing the right form builder solution for your needs. And since connecting to these third-party tools using Zapier involves the same process every time, getting connecting is easy.</p>\n<p><strong>Winner: Tie</strong></p>\n<h3 id=\"price\">Price: WPForms vs Formstack</h3>\n<p>Price will almost always play a significant role in whether you decide to use a certain WordPress from builder solution or not.</p>\n<p>Make sure to determine your budget before you conduct your research, and look into what your potential solutions cost upfront so you don’t end up paying too much for too little.</p>\n<p><strong>Price of Formstack</strong></p>\n<p>Formstack has 4 highly priced premium plans to choose from ranging from $19/month to $249/month.</p>\n<p>Each plan has their own form, entry, user, theme, and upload storage limits. In addition, to unlock some of their best features, you have to invest in the most expensive premium plans, making form creation expensive for site owners. And if you decide to pay annually, you get a small break on price, but no flexibility when it comes to the limitations.</p>\n<p>For instance, you can accept payments on your forms with payment processors other than credit cards, integrate with email service providers, integrate with popular third-party tools, and receive priority support only if you use the Silver plan or higher, which will put you in the red a hefty $59/month.</p>\n<p><img class=\"alignnone size-full wp-image-343038\" src=\"https://wpforms.com/wp-content/uploads/2018/12/formstack-paid-plans.png\" alt=\"formstack paid plans\" width=\"562\" height=\"231\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/formstack-paid-plans.png 562w, https://wpforms.com/wp-content/uploads/2018/12/formstack-paid-plans-300x123.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>If the number of form entries goes over the limit for the plan you’re using, you will not incur any overage charges. However, if your form entries exceed the form submission limit, all future entries will be sent right to your email. This not only makes managing your form entries difficult, it has the potential to flood your inbox and make running your business a hassle.</p>\n<p>Lastly, there is no money-back guarantee to be found on Formstack’s website, so if you don’t like what you’ve paid for you’re out of luck.</p>\n<p><strong>Price of WPForms</strong></p>\n<p>On the other hand, WPForms comes in at significantly lower price points, ranging from $39.50/year for the Basic plan to $299.50/year for the Elite plan.</p>\n<p>This is a far cry from the expensive payments you&#8217;ll have to make even with Formstack&#8217;s most basic premium plan.</p>\n<p>In fact, with each plan upgrade, you can access more <a href=\"http://www.wpbeginner.com/showcase/best-email-marketing-services/\" target=\"_blank\" rel=\"noopener\">email service provider</a> integrations, addons, and priority support and still pay <strong>far less than Formstack&#8217;s lowest paid plans</strong>.</p>\n<p>For instance, to accept payments on your online forms, you&#8217;ll need the Pro plan, which also happens to be our most popular plan. At $199.50 for the year, this plan&#8217;s price pales in comparison to Formstacks&#8217;s equivalent plan, which will set you back over $700/year.</p>\n<p>And it comes with a ton more features too, making this the most cost-effective form builder solution.</p>\n<p><img class=\"alignnone size-full wp-image-299304\" src=\"https://wpforms.com/wp-content/uploads/2018/10/wpforms-price-plans.png\" alt=\"wpforms price plans\" width=\"562\" height=\"467\" srcset=\"https://wpforms.com/wp-content/uploads/2018/10/wpforms-price-plans.png 562w, https://wpforms.com/wp-content/uploads/2018/10/wpforms-price-plans-300x249.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>WPForms offers a 14-day 100% money-back guarantee on all premium plans, so if you change your mind for whatever reason, you’ll get your money back.</p>\n<p>And lastly, WPForms sticks by the motto “Simple Prices. No Surprises,” meaning there are no overage charges like the ones found in Formstack.</p>\n<p><strong>Winner: WPForms</strong></p>\n<h3 id=\"conclusion\">Conclusion: WPForms vs Formstack: Which is Better?</h3>\n<p>Formstack is not to be considered a viable form creation solution. It does not have a user friendly interface, falls short in its feature set, and has way too many limitations when it comes to styling, form entries, storage of file uploads, and forms themselves.</p>\n<p>It’s also very expensive for the features you do receive, does not provide the kind of stellar support one would expect when using a premium service, and forces you to handle email marketing manually unless you agree to shell out a ton of money a month for the next level plan.</p>\n<p>On the other hand, WPForms continues to grow in popularity, now with over 10 million downloads, because it offers businesses a faster, easier way to create online forms that go beyond the basics. You can create any kind of form imaginable, not break the bank doing so, and manage your forms right in your WordPress dashboard.</p>\n<p>In fact, price points, feature sets, ease of use, and superior support are all reasons why the most successful business owners choose WPForms as their WordPress form builder solution.</p>\n<p>And there you have it! A comparison of WPForms vs Formstack, with <strong>WPForms coming out at the clear winner</strong>.</p>\n<p>If you’re still on the fence about whether WPForms is the very best Formstack alternative, make sure to <a href=\"https://wpforms.com/user-reviews/\">see what our happy customers have to say</a>.</p>\n<p>So, what are you waiting for? Get started with the most powerful <a href=\"https://wpforms.com\">WordPress forms plugin</a> today.</p>\n<p>And don’t forget, if you like this article, then please follow us on <a href=\"https://www.facebook.com/wpforms\" target=\"_blank\" rel=\"nofollow noopener\">Facebook</a> and <a href=\"http://twitter.com/easywpforms\" target=\"_blank\" rel=\"nofollow noopener\">Twitter</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/formstack-alternative-wpforms-vs-formstack-compared-pros-and-cons/\">Formstack Alternative: WPForms vs Formstack Compared (Pros and Cons)</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wpforms.com/formstack-alternative-wpforms-vs-formstack-compared-pros-and-cons/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:51:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"How to Enable Anonymous Guest Posting on Your Blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wpforms.com/how-to-enable-anonymous-guest-posting-on-your-blog/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wpforms.com/how-to-enable-anonymous-guest-posting-on-your-blog/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 19 Dec 2018 13:00:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:19:\"WordPress Tutorials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:10:\"user login\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:16:\"post submissions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:14:\"guest blogging\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://wpforms.com/?p=73346\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:581:\"<p>Have you ever seen websites that allow users to submit posts or other type of content anonymously? Do you want to enable anonymous guest posting on your blog? In this article, we&#8217;ll show you how to allow anonymous guest posting on your WordPress blog. Step 1: Create a WordPress Form The first thing you’ll need [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/how-to-enable-anonymous-guest-posting-on-your-blog/\">How to Enable Anonymous Guest Posting on Your Blog</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Lindsay Liedke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11069:\"<p>Have you ever seen websites that allow users to submit posts or other type of content anonymously? Do you want to enable anonymous guest posting on your blog?</p>\n<p>In this article, we&#8217;ll show you how to allow anonymous guest posting on your WordPress blog.</p>\n<h3>Step 1: Create a WordPress Form</h3>\n<p>The first thing you’ll need to do is install and activate the <a href=\"https://wpforms.com/pricing/\">WPForms plugin</a>. For more details, see this step by step guide on <a title=\"Step by step guide on How to Install a WordPress Plugin\" href=\"http://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/\" target=\"_blank\" rel=\"noopener\">how to install a plugin in WordPress</a>.</p>\n<p>Next, you’ll need to install and activate the <a href=\"https://wpforms.com/addons/post-submissions-addon/\">Post Submissions addon</a> so users can submit blog posts on your website.</p>\n<p>To do this, go to <strong>WPForms</strong> » <strong>Addon</strong> and find the one labeled <strong>Post Submissions</strong>.</p>\n<p>Click <strong>Install Addon</strong> and then <strong>Activate</strong>.</p>\n<p><img class=\"alignnone size-full wp-image-235134\" src=\"https://wpforms.com/wp-content/uploads/2018/07/WPForms-Post-Submissions-Addon.png\" alt=\"WPForms Post Submissions Addon\" width=\"562\" height=\"193\" srcset=\"https://wpforms.com/wp-content/uploads/2018/07/WPForms-Post-Submissions-Addon.png 562w, https://wpforms.com/wp-content/uploads/2018/07/WPForms-Post-Submissions-Addon-300x103.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Now you’ll need to create a new form.</p>\n<p>To do this, go to <strong>WPForms</strong> » <strong>Add New</strong>, name your form, and choose the <strong>Blog Post Submission Form</strong> template.</p>\n<p><img class=\"alignnone size-full wp-image-235136\" src=\"https://wpforms.com/wp-content/uploads/2018/07/Blog-Post-Submission-Form-Template.png\" alt=\"Blog Post Submission Form Template\" width=\"562\" height=\"307\" srcset=\"https://wpforms.com/wp-content/uploads/2018/07/Blog-Post-Submission-Form-Template.png 562w, https://wpforms.com/wp-content/uploads/2018/07/Blog-Post-Submission-Form-Template-300x164.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>WPForms will create a form for you.</p>\n<p><img class=\"alignnone size-full wp-image-235133\" src=\"https://wpforms.com/wp-content/uploads/2018/07/Blog-Post-Submission-Form.png\" alt=\"Blog Post Submission Form\" width=\"562\" height=\"522\" srcset=\"https://wpforms.com/wp-content/uploads/2018/07/Blog-Post-Submission-Form.png 562w, https://wpforms.com/wp-content/uploads/2018/07/Blog-Post-Submission-Form-300x279.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>You’ll notice your blog post submissions form has the following form fields:</p>\n<ul>\n<li><strong>Author Details.</strong> This includes name, email, and author bio form fields.</li>\n<li><strong>Create a Blog Post.</strong> This includes post title, post content, featured image, post excerpt, and category form fields.</li>\n</ul>\n<p>You can add additional fields by dragging them from the left hand panel to the right hand panel.</p>\n<p>Then, click on the field to make any changes. You can also click on a form field and drag it to rearrange the order on your user registration form.</p>\n<h3>Step 2: Enable Anonymous Guest Posting</h3>\n<p>Before you save the changes you’ve made to your blog post submissions form, you’ll need to enable anonymous guest posting.</p>\n<p>To do this, click on the <strong>Name</strong> form field on your form. Then, in the left hand side of the Form Editor, find the box labeled <strong>Required</strong> and unclick it.</p>\n<p><img class=\"alignnone wp-image-342235\" src=\"https://wpforms.com/wp-content/uploads/2018/12/enable-anonymous-guest-posting.png\" alt=\"enable anonymous guest posting\" width=\"562\" height=\"307\" srcset=\"https://wpforms.com/wp-content/uploads/2018/12/enable-anonymous-guest-posting.png 620w, https://wpforms.com/wp-content/uploads/2018/12/enable-anonymous-guest-posting-300x164.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>By doing this, anyone can submit your blog post submission form on your website without having to fill out the name form field.</p>\n<p>Click <strong>Save</strong>.</p>\n<p>If you want to learn more about how to customize your blog post submissions form, check out this article outlining <a href=\"https://wpforms.com/how-to-allow-users-to-submit-blog-posts-on-your-wordpress-site/\">how to allow users to submit blog posts on your WordPress website</a>.</p>\n<h3>Step 3: Configure Your Form’s General Settings</h3>\n<p>There are many general settings to configure on a WordPress form:</p>\n<ul>\n<li><strong>General Settings:</strong> Here you can change things like your form’s name, description, and submit button copy. You can also <a href=\"https://wpforms.com/how-to-build-spam-free-wordpress-contact-forms-the-ultimate-guide/\">enable additional spam prevention features</a> to <a href=\"https://www.wpbeginner.com/wordpress-security/\" target=\"_blank\" rel=\"noopener\">keep your website secure</a> from unwanted form submissions.</li>\n<li><strong>Form Confirmations:</strong> Form confirmations are messages that display to site visitors once they submit a blog post for your website. WPForms has three confirmation types to choose from: Message, Show Page, and Redirect. To choose more than one form confirmation at a time, check out this helpful tutorial on <a href=\"https://wpforms.com/how-to-create-multiple-form-confirmations-in-wpforms/\">how to create multiple form confirmations</a>.</li>\n<li><strong>Form Notifications:</strong> Notifications are a great way to send an email whenever a form is submitted on your website. A notification will automatically send to your once a form is submitted on your site. You can also send one to the site visitor that submitted the form and anyone else that needs to be notified of a form submission. To learn how to do this, read here about <a href=\"https://wpforms.com/how-to-create-multiple-form-notifications-in-wordpress-forms/\">creating multiple form notifications</a>.</li>\n</ul>\n<p>Click <strong>Save</strong>.</p>\n<h3>Step 4: Allow Post Submissions</h3>\n<p>To allow anonymous guest post submissions on your blog, go to <strong>Settings</strong> » <strong>Post Submissions</strong> and turn <strong>Post Submissions</strong> &#8220;On&#8221;.</p>\n<p><img class=\"alignnone size-full wp-image-235154\" src=\"https://wpforms.com/wp-content/uploads/2018/07/Post-Submissions-On.png\" alt=\"Post Submissions On\" width=\"562\" height=\"216\" srcset=\"https://wpforms.com/wp-content/uploads/2018/07/Post-Submissions-On.png 562w, https://wpforms.com/wp-content/uploads/2018/07/Post-Submissions-On-300x115.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Next, make sure all the dropdown menu items match up to the form field title found above each dropdown menu. If you changed or added any new form fields, you’ll need to match them up with the corresponding custom fields for your posts.</p>\n<ul>\n<li><strong>Post Title:</strong> the title of the blog post</li>\n<li><strong>Post Content:</strong> the main body of the blog post</li>\n<li><strong>Post Excerpt:</strong> a short summary of the blog post</li>\n<li><strong>Post Featured Image:</strong> the image added to the beginning of the blog post</li>\n<li><strong>Post Type:</strong> options include Posts or Pages, but can include custom post types as well</li>\n<li><strong>Post Status:</strong> the status you want each blog post to be in when submitted. You can automatically publish all post submissions or require approval before being published to your website.</li>\n<li><strong>Post Author:</strong> choose an author of the blog post. If you require users to login before submitting blog post submission forms, the signed in user will be assigned as the author. Since you’re allowing anonymous guest posting, if a site visitor doesn’t enter a name, the post author will remain blank.</li>\n</ul>\n<p>Click <strong>Save</strong>.</p>\n<h3>Step 5: Add Your Form to Your Site</h3>\n<p>After you’ve created your blog post submissions form, you need to add it to your WordPress website.</p>\n<p>WPForms allows you to add your forms to many locations on your website, including your blog posts, pages, and even <a href=\"https://wpforms.com/how-to-add-a-contact-form-in-wordpress-sidebar-widget/\">sidebar widgets</a>.</p>\n<p>Let’s take a look at the most common post/page embed option.</p>\n<p>To start, create a new post or page in WordPress and then click on the <strong>Add Form</strong> button.</p>\n<p>Next, select your contact form in the modal popup and click <strong>Add Form</strong>.</p>\n<p><img class=\"alignnone size-full wp-image-235135\" src=\"https://wpforms.com/wp-content/uploads/2018/07/Add-Form-2.png\" alt=\"Add Form\" width=\"562\" height=\"322\" srcset=\"https://wpforms.com/wp-content/uploads/2018/07/Add-Form-2.png 562w, https://wpforms.com/wp-content/uploads/2018/07/Add-Form-2-300x172.png 300w\" sizes=\"(max-width: 562px) 100vw, 562px\" /></p>\n<p>Then, publish your post or page so your blog post submissions form will appear on your website.</p>\n<p>To view post submission form entries after they’ve been submitted, check out this <a href=\"https://wpforms.com/docs/complete-guide-to-form-entries/\">complete guide to form entries</a>. You can view, search for, filter, print, and delete any form entries that people submit on your website.</p>\n<p>And the great thing is, you can also use our <a href=\"https://wpforms.com/addons/zapier-addon/\">Zapier addon</a> to automatically save file uploads to cloud services like <a href=\"https://wpforms.com/how-to-create-a-wordpress-google-drive-upload-form/\">Google Drive</a>, <a href=\"https://wpforms.com/how-to-send-wordpress-form-entries-to-basecamp/\">Basecamp</a>, and <a href=\"https://wpforms.com/how-to-create-a-simple-dropbox-upload-form-in-wordpress/\">Dropbox</a>.</p>\n<p>And there you have it! You now know how to enable anonymous guest posting on your blog.</p>\n<p>To get more content on your blog, see our tips on <a href=\"https://wpforms.com/how-to-get-more-guest-post-submissions-on-your-wordpress-blog/\">how to get more guest post submissions</a>. You can also get sponsored posts by <a href=\"https://wpforms.com/how-to-require-users-to-pay-to-submit-a-post-in-wordpress/\">requiring payment for post submissions</a>.</p>\n<p>So, what are you waiting for? Get started with the most powerful <a href=\"https://wpforms.com\">WordPress forms plugin</a> today.</p>\n<p>And don’t forget, if you like this article, then please follow us on <a href=\"https://www.facebook.com/wpforms\" target=\"_blank\" rel=\"nofollow noopener\">Facebook</a> and <a href=\"http://twitter.com/easywpforms\" target=\"_blank\" rel=\"nofollow noopener\">Twitter</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpforms.com/how-to-enable-anonymous-guest-posting-on-your-blog/\">How to Enable Anonymous Guest Posting on Your Blog</a> appeared first on <a rel=\"nofollow\" href=\"https://wpforms.com\">WPForms</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wpforms.com/how-to-enable-anonymous-guest-posting-on-your-blog/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:25:\"https://wpforms.com/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:12:\"nginx/1.15.2\";s:4:\"date\";s:29:\"Wed, 09 Jan 2019 19:14:43 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:10:\"set-cookie\";s:98:\"srv_id=c22b625f94ce9b456550ebf299e3ae82; expires=Wed, 09-Jan-19 20:14:42 GMT; max-age=3600; path=/\";s:13:\"last-modified\";s:29:\"Tue, 08 Jan 2019 15:17:47 GMT\";s:4:\"etag\";s:34:\"\"60c0208f098a06d71217f2f122182cc3\"\";s:12:\"x-robots-tag\";s:15:\"noindex, follow\";s:9:\"x-backend\";s:22:\"awesomemotive-web4.com\";s:25:\"strict-transport-security\";s:13:\"max-age=86400\";}}s:5:\"build\";s:14:\"20130911133210\";}','no'),(134,'jetpack_available_modules','a:1:{s:5:\"6.8.1\";a:44:{s:18:\"after-the-deadline\";s:3:\"1.1\";s:8:\"carousel\";s:3:\"1.5\";s:13:\"comment-likes\";s:3:\"5.1\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:16:\"google-analytics\";s:3:\"4.5\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:11:\"lazy-images\";s:5:\"5.6.0\";s:5:\"likes\";s:3:\"2.2\";s:6:\"manage\";s:3:\"3.4\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"masterbar\";s:3:\"4.8\";s:9:\"minileven\";s:3:\"1.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"photon-cdn\";s:3:\"6.6\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:3:\"pwa\";s:5:\"5.6.0\";s:13:\"related-posts\";s:3:\"2.9\";s:6:\"search\";s:3:\"5.0\";s:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";s:7:\"wordads\";s:5:\"4.5.0\";}}','yes'),(135,'jetpack_options','a:2:{s:7:\"version\";s:14:\"6.6:1543457315\";s:11:\"old_version\";s:14:\"6.6:1543457315\";}','yes'),(140,'_amn_wpforms-lite_last_checked','1546992000','yes'),(144,'wpforms_review','a:2:{s:4:\"time\";i:1547061927;s:9:\"dismissed\";b:1;}','yes'),(388,'um_cache_userdata_4','a:56:{s:2:\"ID\";i:4;s:10:\"user_login\";s:11:\"stephanyw04\";s:9:\"user_pass\";s:34:\"$P$BoXo9G5k6WzJV.RTX0UjerAz8ls2si/\";s:13:\"user_nicename\";s:11:\"stephanyw04\";s:10:\"user_email\";s:31:\"marybeth@unisexsunglasses.store\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2018-11-30 02:52:19\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:16:\"Stephany Quarles\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;s:8:\"nickname\";s:11:\"stephanyw04\";s:10:\"first_name\";s:8:\"Stephany\";s:9:\"last_name\";s:7:\"Quarles\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:19:\"syntax_highlighting\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:6:\"locale\";s:0:\"\";s:17:\"wpyt_capabilities\";s:28:\"a:1:{s:10:\"subscriber\";b:1;}\";s:15:\"wpyt_user_level\";s:1:\"0\";s:25:\"synced_gravatar_hashed_id\";s:32:\"8147d6b46424305019b97ff3190030b0\";s:9:\"submitted\";s:329:\"a:9:{s:7:\"form_id\";s:3:\"209\";s:9:\"timestamp\";s:10:\"1543546332\";s:7:\"request\";s:0:\"\";s:8:\"_wpnonce\";s:10:\"e1294e69e0\";s:16:\"_wp_http_referer\";s:22:\"/development/register/\";s:10:\"user_login\";s:11:\"stephanyw04\";s:10:\"first_name\";s:8:\"Stephany\";s:9:\"last_name\";s:7:\"Quarles\";s:10:\"user_email\";s:31:\"marybeth@unisexsunglasses.store\";}\";s:7:\"form_id\";s:3:\"209\";s:9:\"timestamp\";s:10:\"1543546332\";s:7:\"request\";s:0:\"\";s:8:\"_wpnonce\";s:10:\"e1294e69e0\";s:16:\"_wp_http_referer\";s:22:\"/development/register/\";s:35:\"um_user_profile_url_slug_user_login\";s:11:\"stephanyw04\";s:9:\"full_name\";s:11:\"stephanyw04\";s:14:\"account_status\";s:8:\"approved\";s:14:\"_um_last_login\";s:10:\"1543546341\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"role\";s:10:\"subscriber\";s:5:\"roles\";a:1:{i:0;s:10:\"subscriber\";}s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:16:\"default_homepage\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"super_admin\";i:0;}','no'),(1087,'_transient_timeout_jetpack_idc_allowed','1547064875','no'),(1088,'_transient_jetpack_idc_allowed','1','no'),(1089,'_transient_timeout_themeisle_companion_273versions','1547493275','no'),(1090,'_transient_themeisle_companion_273versions','a:59:{i:0;a:2:{s:7:\"version\";s:5:\"1.0.0\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.1.0.0.zip\";}i:1;a:2:{s:7:\"version\";s:5:\"1.0.1\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.1.0.1.zip\";}i:2;a:2:{s:7:\"version\";s:5:\"1.0.2\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.1.0.2.zip\";}i:3;a:2:{s:7:\"version\";s:5:\"1.0.3\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.1.0.3.zip\";}i:4;a:2:{s:7:\"version\";s:5:\"1.0.4\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.1.0.4.zip\";}i:5;a:2:{s:7:\"version\";s:5:\"1.0.5\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.1.0.5.zip\";}i:6;a:2:{s:7:\"version\";s:5:\"2.0.0\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.0.0.zip\";}i:7;a:2:{s:7:\"version\";s:5:\"2.0.1\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.0.1.zip\";}i:8;a:2:{s:7:\"version\";s:6:\"2.0.10\";s:3:\"url\";s:69:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.0.10.zip\";}i:9;a:2:{s:7:\"version\";s:6:\"2.0.11\";s:3:\"url\";s:69:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.0.11.zip\";}i:10;a:2:{s:7:\"version\";s:5:\"2.0.2\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.0.2.zip\";}i:11;a:2:{s:7:\"version\";s:5:\"2.0.3\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.0.3.zip\";}i:12;a:2:{s:7:\"version\";s:5:\"2.0.4\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.0.4.zip\";}i:13;a:2:{s:7:\"version\";s:5:\"2.0.5\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.0.5.zip\";}i:14;a:2:{s:7:\"version\";s:5:\"2.0.6\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.0.6.zip\";}i:15;a:2:{s:7:\"version\";s:5:\"2.0.7\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.0.7.zip\";}i:16;a:2:{s:7:\"version\";s:5:\"2.0.8\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.0.8.zip\";}i:17;a:2:{s:7:\"version\";s:5:\"2.0.9\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.0.9.zip\";}i:18;a:2:{s:7:\"version\";s:5:\"2.1.0\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.1.0.zip\";}i:19;a:2:{s:7:\"version\";s:5:\"2.1.1\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.1.1.zip\";}i:20;a:2:{s:7:\"version\";s:5:\"2.2.0\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.2.0.zip\";}i:21;a:2:{s:7:\"version\";s:5:\"2.2.1\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.2.1.zip\";}i:22;a:2:{s:7:\"version\";s:5:\"2.2.2\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.2.2.zip\";}i:23;a:2:{s:7:\"version\";s:5:\"2.2.3\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.2.3.zip\";}i:24;a:2:{s:7:\"version\";s:5:\"2.2.4\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.2.4.zip\";}i:25;a:2:{s:7:\"version\";s:5:\"2.2.5\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.2.5.zip\";}i:26;a:2:{s:7:\"version\";s:5:\"2.2.6\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.2.6.zip\";}i:27;a:2:{s:7:\"version\";s:5:\"2.2.7\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.2.7.zip\";}i:28;a:2:{s:7:\"version\";s:5:\"2.3.0\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.3.0.zip\";}i:29;a:2:{s:7:\"version\";s:5:\"2.3.1\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.3.1.zip\";}i:30;a:2:{s:7:\"version\";s:5:\"2.3.2\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.3.2.zip\";}i:31;a:2:{s:7:\"version\";s:5:\"2.3.3\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.3.3.zip\";}i:32;a:2:{s:7:\"version\";s:5:\"2.3.4\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.3.4.zip\";}i:33;a:2:{s:7:\"version\";s:5:\"2.4.0\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.4.0.zip\";}i:34;a:2:{s:7:\"version\";s:5:\"2.4.1\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.4.1.zip\";}i:35;a:2:{s:7:\"version\";s:5:\"2.4.2\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.4.2.zip\";}i:36;a:2:{s:7:\"version\";s:5:\"2.4.3\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.4.3.zip\";}i:37;a:2:{s:7:\"version\";s:5:\"2.4.4\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.4.4.zip\";}i:38;a:2:{s:7:\"version\";s:5:\"2.4.5\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.4.5.zip\";}i:39;a:2:{s:7:\"version\";s:5:\"2.4.6\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.4.6.zip\";}i:40;a:2:{s:7:\"version\";s:5:\"2.4.7\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.4.7.zip\";}i:41;a:2:{s:7:\"version\";s:5:\"2.5.0\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.5.0.zip\";}i:42;a:2:{s:7:\"version\";s:5:\"2.5.1\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.5.1.zip\";}i:43;a:2:{s:7:\"version\";s:5:\"2.5.2\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.5.2.zip\";}i:44;a:2:{s:7:\"version\";s:5:\"2.5.3\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.5.3.zip\";}i:45;a:2:{s:7:\"version\";s:5:\"2.5.4\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.5.4.zip\";}i:46;a:2:{s:7:\"version\";s:5:\"2.5.5\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.5.5.zip\";}i:47;a:2:{s:7:\"version\";s:5:\"2.5.6\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.5.6.zip\";}i:48;a:2:{s:7:\"version\";s:5:\"2.5.7\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.5.7.zip\";}i:49;a:2:{s:7:\"version\";s:5:\"2.5.8\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.5.8.zip\";}i:50;a:2:{s:7:\"version\";s:5:\"2.6.0\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.6.0.zip\";}i:51;a:2:{s:7:\"version\";s:5:\"2.6.1\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.6.1.zip\";}i:52;a:2:{s:7:\"version\";s:5:\"2.6.2\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.6.2.zip\";}i:53;a:2:{s:7:\"version\";s:5:\"2.6.3\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.6.3.zip\";}i:54;a:2:{s:7:\"version\";s:5:\"2.6.4\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.6.4.zip\";}i:55;a:2:{s:7:\"version\";s:5:\"2.7.0\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.7.0.zip\";}i:56;a:2:{s:7:\"version\";s:5:\"2.7.1\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.7.1.zip\";}i:57;a:2:{s:7:\"version\";s:5:\"2.7.2\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.7.2.zip\";}i:58;a:2:{s:7:\"version\";s:5:\"2.7.3\";s:3:\"url\";s:68:\"https://downloads.wordpress.org/plugin/themeisle-companion.2.7.3.zip\";}}','no'),(1158,'_transient_is_multi_author','0','yes'),(1183,'_transient_timeout_feed_2b16a4f9a2b7110ce37a7c1a0e3bbb94','1547106415','no'),(1184,'_transient_feed_2b16a4f9a2b7110ce37a7c1a0e3bbb94','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\n \n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Blog – Ultimate Member\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://ultimatemember.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"A Free Community & User Profile WordPress Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 07 Jan 2019 11:35:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wordpress.org/?v=4.9.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://ultimatemember.com/wp-content/uploads/2017/06/cropped-favicon-32x32.png\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Blog – Ultimate Member\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://ultimatemember.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"Christmas &amp; New Year Support Schedule\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://ultimatemember.com/christmas-new-year-support-schedule/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 16 Dec 2018 04:04:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://ultimatemember.com/?p=243089\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:570:\"<p>With Christmas and the New Year fast approaching, we wanted to let you know about support over the holidays. We are going to be closing support ticket submission on Friday 21st December. Support ticket submission will then be closed until Tuesday the 1st of January and all of our support staff will then be back&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/christmas-new-year-support-schedule/\">Christmas &#038; New Year Support Schedule</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Calum Allison\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:998:\"<p>With Christmas and the New Year fast approaching, we wanted to let you know about support over the holidays.</p>\n<p>We are going to be closing support ticket submission on Friday 21st December. Support ticket submission will then be closed until Tuesday the 1st of January and all of our support staff will then be back to work on Wednesday the 2nd of January.</p>\n<p>We will be using the holidays to catch up with family and friends and recharge the batteries, as this is the only time of the year when the whole company takes time off together.</p>\n<p>We&#8217;d like to thank you for your support in 2018 and we look forward to making Ultimate Member even better in 2019!</p>\n<p>We hope you enjoy the holiday season!</p>\n<p>Ultimate Member team</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/christmas-new-year-support-schedule/\">Christmas &#038; New Year Support Schedule</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"New extensions, theme &amp; pricing changes.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://ultimatemember.com/new-extensions-theme-pricing-changes/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 01 Oct 2018 00:23:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://ultimatemember.com/?p=610416\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:590:\"<p>This week we will be releasing two new extensions, making the theme (beta release) available for purchase and making some change to pricing. New extensions The first week of October we will be releasing two new extensions: User Groups and User Photos. User Groups The User Groups extension allows users to create and join groups&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/new-extensions-theme-pricing-changes/\">New extensions, theme &#038; pricing changes.</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Calum Allison\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4118:\"<p>This week we will be releasing two new extensions, making the theme (beta release) available for purchase and making some change to pricing.</p>\n<h3>New extensions</h3>\n<p>The first week of October we will be releasing two new extensions: User Groups and User Photos.</p>\n<h4>User Groups</h4>\n<p>The User Groups extension allows users to create and join groups around shared interests, topics etc. Users can post and have discussions within the groups.</p>\n<h4>User Photos</h4>\n<p>The User photos extension allows users to create and upload photos to their user profile.</p>\n<h3>Theme</h3>\n<p>The beta release of the theme will also occur in the first week of October. If you purchase the theme during the beta period you will get a 2-year license for the price of a 1-year license.</p>\n<h3>Pricing Changes</h3>\n<p>With the release of the new extensions and the theme, we will be making some changes to our pricing models. We will be replacing the extensions bundle with an extensions pass and introducing a new extensions + theme pass.</p>\n<p>The extension pass provides the exact same features of the current bundle (access to all premium extensions and unlimited site usage) but the access pass will only require one license key rather than the current system where each extension has a separate license key.</p>\n<p>The extensions + theme pass provides access to all premium extensions and our official theme for one single price.</p>\n<p>Our prices have not increased for 3 years but to ensure the long-term sustainability of the business and to allow us to grow the team (faster development and support) we will be increasing the prices of our extensions.</p>\n<p>Prices for existing extensions will increase by 20% and with the release of the new extensions the pricing for the new access passes will be as follows:</p>\n<ul>\n<li><strong>Extensions Pass</strong> &#8211; $249/year</li>\n<li><strong>Extensions + Theme Pass</strong> &#8211; $299/year</li>\n</ul>\n<p><img class=\"alignnone size-full wp-image-610432\" src=\"https://ultimatemember.com/wp-content/uploads/2018/09/Screen-Shot-2018-09-07-at-12.55.48.png\" alt=\"\" width=\"2560\" height=\"1534\" srcset=\"https://ultimatemember.com/wp-content/uploads/2018/09/Screen-Shot-2018-09-07-at-12.55.48.png 2560w, https://ultimatemember.com/wp-content/uploads/2018/09/Screen-Shot-2018-09-07-at-12.55.48-300x180.png 300w, https://ultimatemember.com/wp-content/uploads/2018/09/Screen-Shot-2018-09-07-at-12.55.48-768x460.png 768w, https://ultimatemember.com/wp-content/uploads/2018/09/Screen-Shot-2018-09-07-at-12.55.48-1024x614.png 1024w, https://ultimatemember.com/wp-content/uploads/2018/09/Screen-Shot-2018-09-07-at-12.55.48-265x159.png 265w, https://ultimatemember.com/wp-content/uploads/2018/09/Screen-Shot-2018-09-07-at-12.55.48-530x318.png 530w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" /></p>\n<p>With the access passes it works out at buying each extension for only $13.10 ($249/19). This is a small increase of $1.40 from $11.70 ($199/17). Purchasing the theme via the access pass offers a 50% saving compared to buying the theme individually.</p>\n<p>The theme will also be available for purchase individually (starting from $99/year for a single site license).</p>\n<p>Whilst we&#8217;ve tried to avoid increasing prices for the last few years, it is important that we have the ability to grow the support and development team as every year support increases significantly as more people use the plugin.</p>\n<p>These changes are designed to ensure that Ultimate Member is here for the long-term and allows us to provide a better plugin and service in the future.</p>\n<p>These changes will occur in October.</p>\n<h3>Existing Customers</h3>\n<p>For existing customers, you will be grandfathered into the existing pricing. Customers with an active bundle license, you will be moved onto the extensions access pass.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/new-extensions-theme-pricing-changes/\">New extensions, theme &#038; pricing changes.</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"We’ve made our roadmap public\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://ultimatemember.com/weve-made-our-roadmap-public/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Jun 2018 02:14:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://ultimatemember.com/?p=561023\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:547:\"<p>After the release of UM2 which was many months in the making, we are now stepping up development of new features for the plugin and new extensions. To make it easier for you to see what we&#8217;re working on and what&#8217;s coming in the future we have created a public roadmap. The roadmap provides a&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/weve-made-our-roadmap-public/\">We&#8217;ve made our roadmap public</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Calum Allison\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1204:\"<p>After the release of UM2 which was many months in the making, we are now stepping up development of new features for the plugin and new extensions.</p>\n<p>To make it easier for you to see what we&#8217;re working on and what&#8217;s coming in the future we have created a <a href=\"https://ultimatemember.com/roadmap/\">public roadmap</a>.</p>\n<p>The roadmap provides a quick summary of new features that are currently being developed, what we will be developing next and future plans.</p>\n<p>Via this page, you can also submit feature suggestions for new functionality you would like to see. So if you have an idea for how Ultimate Member could be made better we would love to hear it!</p>\n<p>At the bottom of the page you can see the changelog for the plugin and all the extensions.</p>\n<p>We hope you find our roadmap useful and alongside our public <a href=\"https://ultimatemember.com/open-metrics/\">revenue-metrics</a>, we aim to be a transparent and open company.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/weve-made-our-roadmap-public/\">We&#8217;ve made our roadmap public</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Ultimate Member &amp; GDPR\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://ultimatemember.com/ultimate-member-gdpr/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 May 2018 03:52:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://ultimatemember.com/?p=530389\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:533:\"<p>GDPR On the 25th of May, new EU privacy rules come into effect called the General Data Protection Regulation (GDPR). These new regulations have a wide-ranging impact on businesses and websites. If you are an EU based business or have website users who are from the EU you will need to ensure that your site&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/ultimate-member-gdpr/\">Ultimate Member &amp; GDPR</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Calum Allison\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4045:\"<h3>GDPR</h3>\n<p>On the 25th of May, new EU privacy rules come into effect called the General Data Protection Regulation (GDPR).</p>\n<p>These new regulations have a wide-ranging impact on businesses and websites. If you are an EU based business or have website users who are from the EU you will need to ensure that your site is in compliance with the new regulations.</p>\n<p>If you&#8217;ve never heard of the GDPR or are not sure about the consequences of the new regulations, we recommend reading the following sources:</p>\n<ul>\n<li><a href=\"https://www.eugdpr.org/\">https://www.eugdpr.org/</a></li>\n<li><a href=\"https://www.codeinwp.com/blog/complete-wordpress-gdpr-guide/\">https://www.codeinwp.com/blog/complete-wordpress-gdpr-guide/</a></li>\n<li><a href=\"https://kinsta.com/blog/gdpr-compliance/\">https://kinsta.com/blog/gdpr-compliance/</a></li>\n<li><a href=\"http://www.wpbeginner.com/beginners-guide/the-ultimate-guide-to-wordpress-and-gdpr-compliance-everything-you-need-to-know\">http://www.wpbeginner.com/beginners-guide/the-ultimate-guide-to-wordpress-and-gdpr-compliance-everything-you-need-to-know</a></li>\n</ul>\n<h3>WordPress 4.9.6</h3>\n<p>On May 17th WordPress 4.9.6 was released which included some GDPR privacy-related features including data export and removal tools, privacy policy page template and cookie opt-in for comments. You can read more about WordPress 4.9.6 <a href=\"https://wordpress.org/news/2018/05/wordpress-4-9-6-privacy-and-maintenance-release/\">here</a>.</p>\n<h3>Ultimate Member &amp; GDPR</h3>\n<p>To make it easier for your site to comply with the new regulations, we&#8217;ve done the following:</p>\n<ul>\n<li>Integrated UM with the WordPress data exporter (Custom UM created fields will show in the data file).</li>\n<li>Integrated UM with the WordPress data eraser</li>\n<li>Updated Private Messaging extension to make it possible for users to download their private message chat history (Private Messaging extension).</li>\n<li>Added a privacy field to registration forms for users to consent to privacy policy before registering</li>\n<li>Recorded timestamp of user confirmation to terms &amp; condition upon registration (Terms &amp; Conditions extension).</li>\n<li>Updated MailChimp extension to either delete or unsubscribe users from your MailChimp list when they delete their account.</li>\n</ul>\n<h3>Responsibility</h3>\n<p>Whilst ourselves and other plugin developers are working on making it easier to comply with the GDPR, as the owner of your site, it is your responsibility to ensure that your site is compliant with the regulations.</p>\n<h3>Action to take</h3>\n<p>We suggest doing the following in regards to Ultimate Member plugin:</p>\n<ul>\n<li>Update Ultimate Member to the latest version</li>\n<li>Create a privacy policy and enable the privacy policy field on registration forms by turning on the privacy policy from edit registration form page.</li>\n<li>Install our free terms &amp; conditions extension so that users must agree to your terms &amp; conditions before registering.</li>\n<li>Turn on double opt-in for MailChimp subscribers</li>\n<li>Enable the user deletion tab in account page so users can delete their account</li>\n</ul>\n<h3>What we&#8217;ve implemented</h3>\n<p>To comply with the GDPR regulations ourselves we have:</p>\n<ul>\n<li>Added required checkboxes to forms on our websites (support, pre-purchase etc).</li>\n<li>Updated website to the latest version of WordPress which includes the data exporter/eraser for user requests for data.</li>\n<li>Added a required privacy checkbox to the checkout page.</li>\n<li>Updated our privacy policy.</li>\n<li>Disabled IP storage for form submissions.</li>\n<li>Added GDPR cookie consent plugin to the website.</li>\n<li>Turned on double opt-in for MailChimp signups.</li>\n<li>Moved our website server location to EU</li>\n</ul>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/ultimate-member-gdpr/\">Ultimate Member &amp; GDPR</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Product Update: November\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://ultimatemember.com/product-update-november/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 18 Dec 2017 03:53:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://ultimatemember.com/?p=407573\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:572:\"<p>Product Update is our monthly update that highlights the recent product improvements we’ve made, so you can easily stay up to date on what’s new. Here&#8217;s what&#8217;s been happening in November. What&#8217;s new ? We&#8217;ve not been working on any new features for the plugin this month as November has seen a focus on UM2.0 initial&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/product-update-november/\">Product Update: November</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Calum Allison\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1428:\"<p><em>Product Update is our monthly update that highlights the recent product improvements we’ve made, so you can easily stay up to date on what’s new. Here&#8217;s what&#8217;s been happening in November.</em></p>\n<h3>What&#8217;s new ?</h3>\n<p>We&#8217;ve not been working on any new features for the plugin this month as November has seen a focus on UM2.0 initial release, helping users with update process and making small tweaks to 2.0 based on user feedback. This is taking up most of the development time but once UM2.0 is released fully, development will focus on releasing new extensions and making further improvements to existing extensions and the core plugin.</p>\n<p>If you&#8217;ve not yet updated to 2.0 you can do so by following the instructions in this doc.</p>\n<h3>What&#8217;s next ?</h3>\n<h4>Plugin repo release</h4>\n<p>We are working towards pushing the 2.0 update to the official plugin directory. The update should be released on wp.org in January 2018.</p>\n<h4>New extensions</h4>\n<p>Work continues on the groups and user location extensions and we plan to release these shortly after 2.0 is released on the repo. We will be sharing more info about thes extensions in early 2018.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/product-update-november/\">Product Update: November</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Product Update: October\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://ultimatemember.com/product-update-october/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 13 Nov 2017 02:12:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://ultimatemember.com/?p=384708\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:568:\"<p>Product Update is our monthly update that highlights the recent product improvements we’ve made, so you can easily stay up to date on what’s new. Here&#8217;s what&#8217;s been happening in October. What&#8217;s new ? Ultimate Member 2.0 After over a month in beta, UM2.0 is officially here. As this is a significant update to the plugin&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/product-update-october/\">Product Update: October</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Calum Allison\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2658:\"<p><em>Product Update is our monthly update that highlights the recent product improvements we’ve made, so you can easily stay up to date on what’s new. Here&#8217;s what&#8217;s been happening in October.</em></p>\n<h3>What&#8217;s new ?</h3>\n<h4>Ultimate Member 2.0</h4>\n<p>After over a month in beta, UM2.0 is officially here. As this is a significant update to the plugin the release of 2.0 will happen in two stages. The first stage is manual updating of the plugin. This will allow for more people to update to 2.0 and give feedback on it before an update is pushed to the 70,000+ websites that use Ultimate Member.</p>\n<p>After a period of manual updating to 2.0, we will then release the plugin on the repo so that automatic updates are made available to all websites. You will not receive an update notice if you have already updated to 2.0 manually.</p>\n<p>Because of the significant changes made to the code base in UM2.0, all extensions need to be updated to their 2.0 versions as well to work with core 2.0.</p>\n<p>For instructions on updating to 2.0 fore core plugin and extensions please read this <a href=\"http://docs.ultimatemember.com/article/262-manually-updating-to-2-0\">doc</a></p>\n<p>Before updating to 2.0, make sure you make a full site backup which can be restored in case of any issues. If you have any issues after updating to 2.0, please submit a support ticket so we can help you out.</p>\n<h3>What&#8217;s next ?</h3>\n<h4>Member directory improvements</h4>\n<p>After 2.0 release, the next update will see improvements to member directories with:</p>\n<ul>\n<li>List display for directories</li>\n<li>Directories now use ajax (no reloading of page)</li>\n<li>General search feature</li>\n<li>Filters appearing in reveal section</li>\n<li>Front-end sorting e.g New users, oldest users, first name etc</li>\n</ul>\n<h4>Groups extension</h4>\n<p>The groups extension has mostly been finished and the extension is now being reviewed, checked and tweaked. We will release this to beta once it is ready for testing by users.</p>\n<h4>User location extension</h4>\n<p>As well as releasing the groups extension shortly, we have also been working on a user location extension utilising Google Places API. This extension will allow users to add their address/location on registration/profile and then their location will appear on a google map on the directory. Users will then be able to search the directory for users by location.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/product-update-october/\">Product Update: October</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Product Update: September\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://ultimatemember.com/product-update-september/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 08 Oct 2017 09:44:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Product\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://ultimatemember.com/?p=362111\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:601:\"<p>Product Update is our monthly update that highlights the recent product improvements we’ve made, so you can easily stay up to date on what’s new. Here&#8217;s what&#8217;s been happening in September. What&#8217;s new ? Private Content Extension September saw the release of the Private Content extension. With the private content extension you can provide logged in&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/product-update-september/\">Product Update: September</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Calum Allison\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2449:\"<p><em>Product Update is our monthly update that highlights the recent product improvements we’ve made, so you can easily stay up to date on what’s new. Here&#8217;s what&#8217;s been happening in September.</em></p>\n<h3>What&#8217;s new ?</h3>\n<h4>Private Content Extension</h4>\n<p>September saw the release of the <a href=\"https://ultimatemember.com/extensions/private-content/\">Private Content</a> extension. With the private content extension you can provide logged in users with content that only they can access and view.</p>\n<p><img class=\"alignnone size-full wp-image-346284\" src=\"https://ultimatemember.com/wp-content/uploads/edd/2017/09/private-content-user-admin.png\" alt=\"\" width=\"1000\" height=\"454\" srcset=\"https://ultimatemember.com/wp-content/uploads/edd/2017/09/private-content-user-admin.png 1000w, https://ultimatemember.com/wp-content/uploads/edd/2017/09/private-content-user-admin-300x136.png 300w, https://ultimatemember.com/wp-content/uploads/edd/2017/09/private-content-user-admin-768x349.png 768w, https://ultimatemember.com/wp-content/uploads/edd/2017/09/private-content-user-admin-265x120.png 265w, https://ultimatemember.com/wp-content/uploads/edd/2017/09/private-content-user-admin-530x241.png 530w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></p>\n<h4>UM2.0 Beta Release</h4>\n<p>We also released the beta for 2.0 and extensions. We&#8217;ve been fixing issues and making improvements based on the feedback we have received for it so far.</p>\n<h3>What&#8217;s next ?</h3>\n<h4>Member directory improvements</h4>\n<p>Whilst UM2.0 is in beta, we have started working on improvements to member directories. This following improvement/changes have been made to directories:</p>\n<ul>\n<li>List display for directories</li>\n<li>Directories now use ajax (no reloading of page)</li>\n<li>General search feature</li>\n<li>Filters appearing in reveal section</li>\n<li>Front-end sorting e.g New users, oldest users, first name etc</li>\n</ul>\n<h4>UM2.0 release</h4>\n<p>UM2.0 will be released once the beta period ends. We hope to have UM2.0 released within the next 1-2 weeks.</p>\n<h4>Groups extension</h4>\n<p>Work is continuing on the groups extension and we hope to release this shortly after UM2.0 is released.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/product-update-september/\">Product Update: September</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"New extension: Private Content\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://ultimatemember.com/new-extension-private-content/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 14 Sep 2017 13:47:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Product\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://ultimatemember.com/?p=346985\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:547:\"<p>Do you want to show unique private content to each user when they are logged in to your site? Now you can with our latest extension Private Content. The private content extension provides each user with their own content area in the wp-admin which you can use to provide each user with customized content on&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/new-extension-private-content/\">New extension: Private Content</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Calum Allison\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5317:\"<p>Do you want to show unique private content to each user when they are logged in to your site? Now you can with our latest extension <a href=\"https://ultimatemember.com/extensions/private-content/\">Private Content</a>.</p>\n<p>The private content extension provides each user with their own content area in the wp-admin which you can use to provide each user with customized content on their user profile (or anywhere on your site using a shortcode).</p>\n<h3 style=\"text-align: center;\">How does it work?</h3>\n<p>The extension adds a private content area for each user. You can access this by going to your wp-admin &gt; all users page and hovering over a user and clicking the private content link.</p>\n<div id=\"attachment_346232\" style=\"width: 1210px\" class=\"wp-caption alignnone\"><img class=\"size-full wp-image-346232\" src=\"https://ultimatemember.com/wp-content/uploads/edd/2017/09/private-content-all-users.png\" alt=\"\" width=\"1200\" height=\"617\" srcset=\"https://ultimatemember.com/wp-content/uploads/edd/2017/09/private-content-all-users.png 1200w, https://ultimatemember.com/wp-content/uploads/edd/2017/09/private-content-all-users-300x154.png 300w, https://ultimatemember.com/wp-content/uploads/edd/2017/09/private-content-all-users-768x395.png 768w, https://ultimatemember.com/wp-content/uploads/edd/2017/09/private-content-all-users-1024x527.png 1024w, https://ultimatemember.com/wp-content/uploads/edd/2017/09/private-content-all-users-265x136.png 265w, https://ultimatemember.com/wp-content/uploads/edd/2017/09/private-content-all-users-530x273.png 530w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" /><p class=\"wp-caption-text\">Admin can create private content for each user via the all users page in wp-admin</p></div>\n<p>You will then be taking to the page where you can add content that only that particular user can view.</p>\n<p><img class=\"alignnone size-full wp-image-346284\" src=\"https://ultimatemember.com/wp-content/uploads/edd/2017/09/private-content-user-admin.png\" alt=\"\" width=\"1000\" height=\"454\" srcset=\"https://ultimatemember.com/wp-content/uploads/edd/2017/09/private-content-user-admin.png 1000w, https://ultimatemember.com/wp-content/uploads/edd/2017/09/private-content-user-admin-300x136.png 300w, https://ultimatemember.com/wp-content/uploads/edd/2017/09/private-content-user-admin-768x349.png 768w, https://ultimatemember.com/wp-content/uploads/edd/2017/09/private-content-user-admin-265x120.png 265w, https://ultimatemember.com/wp-content/uploads/edd/2017/09/private-content-user-admin-530x241.png 530w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></p>\n<p>Once you&#8217;ve added private content for the user, the user will then be able to see this private content by going to their profile &gt; private content tab.</p>\n<p>This tab is optional and if you dont want to include it on the profile it can be disabled in the settings. You can also give the profile tab a unique name and icon from settings.</p>\n<p><img class=\"alignnone size-full wp-image-346291\" src=\"https://ultimatemember.com/wp-content/uploads/edd/2017/09/private-content-profile.png\" alt=\"\" width=\"800\" height=\"439\" srcset=\"https://ultimatemember.com/wp-content/uploads/edd/2017/09/private-content-profile.png 800w, https://ultimatemember.com/wp-content/uploads/edd/2017/09/private-content-profile-300x165.png 300w, https://ultimatemember.com/wp-content/uploads/edd/2017/09/private-content-profile-768x421.png 768w, https://ultimatemember.com/wp-content/uploads/edd/2017/09/private-content-profile-265x145.png 265w, https://ultimatemember.com/wp-content/uploads/edd/2017/09/private-content-profile-530x291.png 530w\" sizes=\"(max-width: 800px) 100vw, 800px\" /></p>\n<p>The tab will only appear in the profile menu for a user if you have added private content for them. If their private content page in wp-admin is empty then no profile tab will show.</p>\n<p>If you dont want the private content to be shown on the profile, you can have users view it anywhere on your site using the shortcode: [um_private_content]</p>\n<h3 style=\"text-align: center;\">What can I use this for?</h3>\n<p>The private content extension is perfect for when you need to provide private information to users which varies for each user.</p>\n<p>This could be a workout routine, results from a test, a diet plan, job feedback or anything else that requires personalised information on a user to user basis.</p>\n<h3 style=\"text-align: center;\">How to get the extension?</h3>\n<p>The extension can be bought <a href=\"https://ultimatemember.com/extensions/private-content/\">individually</a> or as part of our <a href=\"https://ultimatemember.com/core-extensions-bundle/\">bundle</a> package. If you already have an active license for bundle you will be able to download the extension from your <a href=\"https://ultimatemember.com/account/\">account</a> page &gt; downloads tab.</p>\n<h3 style=\"text-align: center;\">Let us know your thoughts</h3>\n<p>We&#8217;re excited to see how people implement this into their sites. So if you install private content on your site, let us and everyone else know how you are using the extension.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/new-extension-private-content/\">New extension: Private Content</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Product Update: August\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://ultimatemember.com/product-update-august/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 12 Sep 2017 02:30:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://ultimatemember.com/?p=341945\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:580:\"<p>Product Update is our monthly update that highlights the recent product improvements we’ve made, so you can easily stay up to date on what’s new. Here&#8217;s what&#8217;s been happening in August. What&#8217;s new ? UM2.0 beta After several months of development, UM2.0 is now available for beta testing. It can be downloaded directly here using this&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/product-update-august/\">Product Update: August</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Calum Allison\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8150:\"<p><em>Product Update is our monthly update that highlights the recent product improvements we’ve made, so you can easily stay up to date on what’s new. Here&#8217;s what&#8217;s been happening in August.</em></p>\n<h3 style=\"text-align: center;\">What&#8217;s new ?</h3>\n<h4>UM2.0 beta</h4>\n<p>After several months of development, UM2.0 is now available for beta testing. It can be downloaded directly here using this <a href=\"https://ultimatemember.com/wp-content/uploads/2017/09/ultimate-member.zip\">link</a>.</p>\n<p>A lot has been changed in UM2.0, so if you want to test UM2.0 beta, please <strong>do not install on your live site</strong>.</p>\n<p>If you want to test it, please create a clone of your existing site or create a new install of WordPress to test it out.</p>\n<p>UM2.0 should only be installed on your live site once it has been officially released on the wp.org repo.</p>\n<p>If you find an issue with UM2.0 please create an issue on Github for it.</p>\n<h4>Main changes</h4>\n<p>The main focus for UM2.0 has been to make improvements to Ultimate Member for the long term future of the plugin.</p>\n<p>The biggest changes to the plugin have been removing UM roles from the plugin and using WP native roles and switching from using the redux framework for settings to using native WP settings.</p>\n<p>Improvements have also been made to content restriction and emails.</p>\n<p>There is a lot more we plan on improving in the future and the initial release of UM2.0 has been  focused on providing the solid platform for new functionality/extensions to be added to the plugin.</p>\n<h4>Extensions 2.0 beta</h4>\n<p>We&#8217;ve also created beta versions for all UM extensions which are compatible with UM2.0. To download the beta versions of the extensions please login to your account page and go to the downloads tab to download the beta versions of the extensions. You will need to make sure the license keys for each extension are activated and linked to a site to be able to see the beta versions.</p>\n<p>For the free extensions you can download the beta versions here: <a href=\"https://ultimatemember.com/wp-content/uploads/2017/09/um-terms-conditions-beta.zip\">Terms &amp; Conditions</a>, <a href=\"https://ultimatemember.com/wp-content/uploads/2017/09/um-recaptcha-beta.zip\">Google reCAPTCHA</a>, <a href=\"https://ultimatemember.com/wp-content/uploads/2017/09/um-online-beta.zip\">Online Users</a></p>\n<p>If you find an issue with a 2.0 extension please submit a ticket via our site and mention in the ticket it is with the 2.0 version.</p>\n<h4>Installing UM2.0 and extensions</h4>\n<p>If you&#8217;re installing UM2.0 and 2.0 extensions on a clean install of WP, you can install the plugins by simply going to the add new plugins page and clicking the upload plugin link then selecting the plugin from your computer.</p>\n<p>If you&#8217;ve created a clone of your existing site and want to update the plugin/extensions to 2.0, you should install this <a href=\"https://wordpress.org/plugins/easy-theme-and-plugin-upgrades/\">plugin</a> on your site first.</p>\n<p>This will allow you to manually update existing plugins using the same upload plugin method.</p>\n<p>Before installing UM2.0 you should take a full backup of your site/database so you can restore your site if needed. You can use a backup/restore plugin if your hosting does not offer backup/restore services.</p>\n<p>If you need to rollback to previous version of core plugin, you can install this <a href=\"https://wordpress.org/plugins/wp-rollback/\">plugin</a>, which makes it easy to rollback to a previous version of the plugin.</p>\n<h4>2.0 Changelog</h4>\n<p>For Users:</p>\n<ul>\n<li>added activation dependencies for extensions;</li>\n<li>added Licenses checking and changed Licenses page;</li>\n<li>added uninstall.php file for delete permanently all UM settings;</li>\n<li>added ability to register users without WP Registration enabled;</li>\n<li>Account page shortcodes for each tab content;</li>\n<li>changed UM Option View (deprecated/added options);</li>\n<li>changed UM Roles, optimized for WP native logic;</li>\n<li>changed backend forms/fields to WP native styles;</li>\n<li>changed Content Restriction feature for posts, taxonomies, menus;</li>\n<li>changed Email Notifications settings and using templates logic;</li>\n<li>deprecated Redux Framework;</li>\n<li>deprecated old unusable options</li>\n<li>deprecated old unusable forms metadata;</li>\n<li>deprecated old unusable member directories metadata;</li>\n<li>deprecated old unusable user roles metadata;</li>\n<li>optimized registration/upgrade profile process (some hook deprecated);</li>\n<li>optimized some code parts, deprecated some functions;</li>\n<li>fixed avatars on some SSL installs;</li>\n<li>fixed some vulnerabilities;</li>\n<li>fixed integrations with core/extensions;</li>\n<li>fixed &#8220;Edit Profile&#8221; button at members directory;</li>\n<li>fixed conditional logic PHP validation and JS validation (for IE,Edge browsers);</li>\n<li>updated FontAwesome library;</li>\n<li>removed addons to separate extensions;</li>\n</ul>\n<p>For Developers:</p>\n<ul>\n<li>new code structure, optimized for next development;</li>\n<li>created spl_autoloader for remove includes;</li>\n<li>UM classes with namespaces;</li>\n<li>deprecated global $ultimatemember; variable (use UM() instead);</li>\n<li>new ajax handlers in separate classes (by objects);</li>\n</ul>\n<p>Deprecated hooks:</p>\n<ul>\n<li>um_new_user_registration_plain</li>\n<li>um_user_registration_extra_hook</li>\n<li>um_add_user_frontend</li>\n<li>um_post_registration_global_hook</li>\n<li>um_admin_extend_directory_options_general (was action&#8230;will be filter)</li>\n<li>um_account_tab__{$tab_id}</li>\n<li>um_account_display_tabs_hook</li>\n<li>um_account_user_photo_hook__mobile</li>\n<li>um_account_user_photo_hook</li>\n<li>um_after_follow_button_profile</li>\n<li>um_after_new_user_register will be &#8220;um_user_register&#8221;</li>\n<li>um_user_registration</li>\n<li>um_before_new_user_register</li>\n<li>um_post_registration will be &#8220;um_registration_complete&#8221;</li>\n<li>um_post_registration_listener</li>\n<li>&#8220;um_post_registration_save&#8221; will be &#8220;um_registration_set_extra_data&#8221;</li>\n<li>um_user_profile_extra_hook</li>\n</ul>\n<p>UM Extensions General:</p>\n<ul>\n<li>created Plugin Updater for getting updates and license details from Shop;</li>\n<li>removed old EDD updates class;</li>\n<li>added uninstall.php file for delete permanently UM extensions settings;</li>\n<li>textdomain fixes;</li>\n</ul>\n<p>UM bbPress:</p>\n<ul>\n<li>fixed the calculation of all subscriptions;</li>\n</ul>\n<p>UM Friends:</p>\n<ul>\n<li>fixed sorting members directory by &#8220;most friends&#8221; and &#8220;least friends&#8221;;</li>\n<li>fixed allow admin to edit friends only profile;</li>\n</ul>\n<p>UM Recatpcha:</p>\n<ul>\n<li>fixed initialization two captcha v2 in single page;</li>\n</ul>\n<p>UM Reviews:</p>\n<ul>\n<li>fixed display of stars in Member Directories;</li>\n<li>fixed when creating the review, two Ajax requests were sent in Firefox;</li>\n</ul>\n<p>UM Social Activity:</p>\n<ul>\n<li>fixed Chinese and Russian Hashtags working;</li>\n<li>added GravityForms add form/submit form activities;</li>\n</ul>\n<p>UM Social Login:</p>\n<ul>\n<li>fixed Facebook autoload;</li>\n</ul>\n<p>UM User Tags:</p>\n<ul>\n<li>fixed filter and widget when user have 2 fields with the same tax attribute(tag group);</li>\n</ul>\n<p>UM Woocommerce:</p>\n<ul>\n<li>fixed displaying of &#8220;Total Orders&#8221; and &#8220;Total Spent&#8221; in Member Directories</li>\n</ul>\n<h3 style=\"text-align: center;\">What&#8217;s next ?</h3>\n<h4>UM2.0 release</h4>\n<p>UM2.0 will be released once the beta period ends. We hope to have UM2.0 released by the end of this month but this will depend on the feedback we receive on UM2.0.</p>\n<h4>Groups extension</h4>\n<p>Work is continuing on the groups extension and we hope to release this shortly after UM2.0 is released.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/product-update-august/\">Product Update: August</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Product Update: July\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://ultimatemember.com/product-update-july/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 31 Jul 2017 09:01:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Product\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://ultimatemember.com/?p=319273\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:597:\"<p>Product Update is our monthly update that highlights the recent product improvements we’ve made, so you can easily stay up to date on what’s new. Here&#8217;s what&#8217;s been happening in July. What&#8217;s new ? Terms &#38; Conditions extension Want to have your users agree to your terms &#38; conditions before registering? We&#8217;ve created a free extension which&#8230;</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/product-update-july/\">Product Update: July</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Calum Allison\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2656:\"<p><span style=\"font-size: 16px;\"><em>Product Update is our monthly update that highlights the recent product improvements we’ve made, so you can easily stay up to date on what’s new. Here&#8217;s what&#8217;s been happening in July.</em></span></p>\n<h3 style=\"text-align: center;\">What&#8217;s new ?</h3>\n<h4>Terms &amp; Conditions extension</h4>\n<p>Want to have your users agree to your terms &amp; conditions before registering? We&#8217;ve created a free extension which adds a T&amp;C checkbox to the registration form with a show/hide toggle so users can view the terms and conditions without leaving the registration page.</p>\n<p>You can download the extension <a href=\"https://ultimatemember.com/extensions/terms-conditions/\">here</a> and you can read the doc <a href=\"http://docs.ultimatemember.com/article/260-terms-conditions\">here</a>.</p>\n<p>You can also see how it works on our <a href=\"https://ultimatememberdemo.com/register/\">demo site</a>.</p>\n<h4>Google reCAPTCHA update</h4>\n<p>We&#8217;ve updated the Google reCAPTCHA extension so you can now use Google&#8217;s invisible captcha. This means that users won&#8217;t see the captcha unless Google suspects suspicious activity, which will then cause the captcha to appear on the page.</p>\n<p>To use invisible captcha your site must be using SSL (https). You can download the latest version of the extension <a href=\"https://ultimatemember.com/extensions/google-recaptcha/\">here</a>.</p>\n<h4>UM core update 1.3.88</h4>\n<p>We released one core plugin update during July. 1.3.88. adds support for the latest version of reCAPTCHA and the new Terms &amp; Conditions extension as well as fixing a few bugs and a couple of enhancements to the plugin including update the extensions page to match the new branding of Ultimate Member.</p>\n<h3 style=\"text-align: center;\">What&#8217;s next ?</h3>\n<h4>UM 2.0 Beta Period</h4>\n<p>Work continues on UM2.0 with the plugin close to being ready for public beta testing. The last couple of weeks has seen tweaks made and some bugs fixed from internal testing.</p>\n<p>A blog post will go out when UM2.0 is ready for testing asking users to test out the plugin.</p>\n<h4>Groups extension</h4>\n<p>We&#8217;re just about to get started working on Groups extension again, so this will be the next extension to be released.</p>\n<p>The extension will allow users to join groups and interact with other members of the group (similar to FB groups).</p>\n<p>The post <a rel=\"nofollow\" href=\"https://ultimatemember.com/product-update-july/\">Product Update: July</a> appeared first on <a rel=\"nofollow\" href=\"https://ultimatemember.com\">Ultimate Member</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:37:\"https://ultimatemember.com/blog/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:17:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 09 Jan 2019 19:46:55 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:14:\"content-length\";s:5:\"10525\";s:7:\"expires\";s:29:\"Thu, 19 Nov 1981 08:52:00 GMT\";s:13:\"cache-control\";a:2:{i:0;s:35:\"no-store, no-cache, must-revalidate\";i:1;s:6:\"public\";}s:6:\"pragma\";s:8:\"no-cache\";s:12:\"x-robots-tag\";s:15:\"noindex, follow\";s:4:\"link\";s:63:\"<https://ultimatemember.com/wp-json/>; rel=\"https://api.w.org/\"\";s:10:\"set-cookie\";s:44:\"PHPSESSID=c2mfk9kjb4ldlvd74nfrcjfauc; path=/\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:13:\"last-modified\";s:29:\"Wed, 09 Jan 2019 19:35:20 GMT\";s:4:\"etag\";s:39:\"\"4ddc3e078b2809493f44c6f2918648c1-gzip\"\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:16:\"content-encoding\";s:4:\"gzip\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:22:\"x-content-type-options\";s:7:\"nosniff\";}}s:5:\"build\";s:14:\"20130911133210\";}','no'),(1145,'themeisle_companion_review_flag','no','yes'),(1091,'_transient_timeout_jetpack_https_test','1547147676','no'),(1092,'_transient_jetpack_https_test','1','no'),(1093,'_transient_timeout_jetpack_https_test_message','1547147676','no'),(1094,'_transient_jetpack_https_test_message','','no'),(1096,'_transient_timeout_elementor_remote_info_api_data_2.3.8','1547104477','no'),(1097,'_transient_elementor_remote_info_api_data_2.3.8','a:2:{s:9:\"timestamp\";i:1547061275;s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}}','no'),(1098,'_transient_timeout_wpforms_dash_widget_lite_entries_by_form','1547078402','no'),(1099,'_transient_wpforms_dash_widget_lite_entries_by_form','a:1:{i:306;a:3:{s:7:\"form_id\";i:306;s:5:\"count\";i:0;s:5:\"title\";s:7:\"Contact\";}}','no'),(1100,'_transient_timeout_feed_9bc1b9ec726e1f508c5207949084454a','1547104477','no'),(1101,'_transient_feed_9bc1b9ec726e1f508c5207949084454a','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\n \n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"ThemeIsle Blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://themeisle.com/blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WordPress Tutorials and Reviews for Beginners and Advanced\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Jan 2019 17:50:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wordpress.org/?v=4.9.7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"https://mllj2j8xvfl0.i.optimole.com/auto/auto/auto/https/s15165.pcdn.co/wp-content/uploads/2018/03/logo_demo_bar_new.png\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"ThemeIsle Blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://themeisle.com/blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:36:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"Website Usability Testing: 5 Best Places to Find a Usability Expert\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://themeisle.com/blog/website-usability-testing/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://themeisle.com/blog/website-usability-testing/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Jan 2019 08:44:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Resources\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://themeisle.com/blog/?p=20779\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:586:\"<p>Website usability testing is about making it easier for visitors to accomplish the goal of your website. If you want to improve your site, finding an expert to work with you on your site&#8217;s usability is a great way to take big steps forward. What is website usability testing? Usability testing helps you find out...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://themeisle.com/blog/website-usability-testing/\">Website Usability Testing: 5 Best Places to Find a Usability Expert</a> appeared first on <a rel=\"nofollow\" href=\"https://themeisle.com/blog\">ThemeIsle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Pulkit Bhardwaj\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://themeisle.com/blog/website-usability-testing/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:36:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"What’s the Difference Between WordPress Plugins vs Themes? Explained\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://themeisle.com/blog/wordpress-plugins-vs-themes/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://themeisle.com/blog/wordpress-plugins-vs-themes/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Jan 2019 10:04:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://themeisle.com/blog/?p=20310\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:621:\"<p>Wondering what&#8217;s the difference between WordPress plugins vs themes? In general, you use a WordPress theme to change how your site looks and a plugin to add or change functionality on your site. An introduction to WordPress plugins vs themes As a platform, WordPress is designed to be incredibly flexible. It’s used to create all types...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://themeisle.com/blog/wordpress-plugins-vs-themes/\">What&#8217;s the Difference Between WordPress Plugins vs Themes? Explained</a> appeared first on <a rel=\"nofollow\" href=\"https://themeisle.com/blog\">ThemeIsle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Hughes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://themeisle.com/blog/wordpress-plugins-vs-themes/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:36:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"4 Ways to Handle Missing Images on a Website … #Beginner-Friendly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://themeisle.com/blog/missing-images-on-website/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://themeisle.com/blog/missing-images-on-website/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 07 Jan 2019 10:34:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"WordPress Tutorials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://themeisle.com/blog/?p=20415\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:608:\"<p>If you have a website where you add content frequently, there is a possibility that over time, some of your website&#8217;s images will go missing. This post will help you handle missing images to avoid negatively impacting your site&#8217;s user experience. Why might images go missing on your website? There can be several reasons for...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://themeisle.com/blog/missing-images-on-website/\">4 Ways to Handle Missing Images on a Website &#8230; #Beginner-Friendly</a> appeared first on <a rel=\"nofollow\" href=\"https://themeisle.com/blog\">ThemeIsle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Shaumik Daityari\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://themeisle.com/blog/missing-images-on-website/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"What Are WordPress Post Formats and Why They Don’t Matter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://themeisle.com/blog/wordpress-post-formats/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://themeisle.com/blog/wordpress-post-formats/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Jan 2019 08:46:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"Resources\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://themeisle.com/blog/?p=19845\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:566:\"<p>Confused by what WordPress post formats are and whether or not you actually need to care about them? WordPress post formats are kind of like a premade template that you can apply to a blog post to give it a different layout/look on the front-end of your site. What are WordPress post formats? Explained in...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://themeisle.com/blog/wordpress-post-formats/\">What Are WordPress Post Formats and Why They Don&#8217;t Matter</a> appeared first on <a rel=\"nofollow\" href=\"https://themeisle.com/blog\">ThemeIsle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Hughes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://themeisle.com/blog/wordpress-post-formats/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:36:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"Beginner’s Guide to Starting a News Website With WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://themeisle.com/blog/starting-a-news-website/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://themeisle.com/blog/starting-a-news-website/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Jan 2019 08:51:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"WordPress Tutorials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://themeisle.com/blog/?p=19759\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:579:\"<p>Thinking of starting a news website? Even if you&#8217;re not planning to be the next New York Times, there&#8217;s plenty of space for creating your own news site for your favorite topic, local area, or anything else. It&#8217;s also easier than ever to make your own news website thanks to a free piece of software...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://themeisle.com/blog/starting-a-news-website/\">Beginner&#8217;s Guide to Starting a News Website With WordPress</a> appeared first on <a rel=\"nofollow\" href=\"https://themeisle.com/blog\">ThemeIsle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Hughes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://themeisle.com/blog/starting-a-news-website/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:36:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"13 Unlucky eCommerce Design Mistakes That Are Hurting Your Store\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://themeisle.com/blog/ecommerce-design-mistakes/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://themeisle.com/blog/ecommerce-design-mistakes/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Jan 2019 09:46:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://themeisle.com/blog/?p=19541\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:593:\"<p>Getting shoppers to your eCommerce store is hard enough. But once they&#8217;re there, you also have to convince them to buy. However, if you&#8217;re making some of these common eCommerce design mistakes, you might be making things a lot more difficult than they need to be. 13+ common eCommerce design mistakes to avoid 1. Not...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://themeisle.com/blog/ecommerce-design-mistakes/\">13 Unlucky eCommerce Design Mistakes That Are Hurting Your Store</a> appeared first on <a rel=\"nofollow\" href=\"https://themeisle.com/blog\">ThemeIsle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"Priya\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://themeisle.com/blog/ecommerce-design-mistakes/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:36:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"How to Sell Music Online: DIY Guide – Build Your Own Website and Prosper\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://themeisle.com/blog/how-to-sell-music-online/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://themeisle.com/blog/how-to-sell-music-online/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 31 Dec 2018 13:00:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"WordPress Tutorials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://themeisle.com/blog/?p=19751\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:612:\"<p>Looking to learn how to sell music online? While you might&#8217;ve come across dedicated services like Bandcamp, it&#8217;s also easier than ever to sell music through your own website. By setting up your own website, you&#8217;re able to not just sell music online, but also have space for a list of your upcoming shows, information...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://themeisle.com/blog/how-to-sell-music-online/\">How to Sell Music Online: DIY Guide &#8211; Build Your Own Website and Prosper</a> appeared first on <a rel=\"nofollow\" href=\"https://themeisle.com/blog\">ThemeIsle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Hughes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://themeisle.com/blog/how-to-sell-music-online/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"How to Create Viral Content on Your WordPress Blog (4 Key Strategies)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://themeisle.com/blog/create-viral-content/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://themeisle.com/blog/create-viral-content/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 28 Dec 2018 13:09:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Blogging\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:15:\"Marketing & SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://themeisle.com/blog/?p=19405\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:562:\"<p>Having a piece of content go viral is like hitting the jackpot as it can bring a lot of new traffic back to your site. While focusing on quality content should be your number-one priority, you might also want to increase its chances of going big. This means learning how to create viral content on...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://themeisle.com/blog/create-viral-content/\">How to Create Viral Content on Your WordPress Blog (4 Key Strategies)</a> appeared first on <a rel=\"nofollow\" href=\"https://themeisle.com/blog\">ThemeIsle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Hughes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://themeisle.com/blog/create-viral-content/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:133:\"Alex Denning Interview – “A marketing agency that wasn’t very popular with clients would not be a very good marketing agency”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://themeisle.com/blog/alex-denning-interview-on-marketing-and-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://themeisle.com/blog/alex-denning-interview-on-marketing-and-wordpress/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Dec 2018 14:59:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:19:\"WordPress Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://themeisle.com/blog/?p=20721\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:709:\"<p>Howdy ladies and gents, this marks our last interview of 2018! After having exciting conversations with remarkable people throughout the whole year, we&#8217;re ready to finish things out with a talk with Alex Denning about marketing (and everything it entails). If you want to check out all our interviews from 2018, you can find them...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://themeisle.com/blog/alex-denning-interview-on-marketing-and-wordpress/\">Alex Denning Interview &#8211; &#8220;A marketing agency that wasn&#8217;t very popular with clients would not be a very good marketing agency&#8221;</a> appeared first on <a rel=\"nofollow\" href=\"https://themeisle.com/blog\">ThemeIsle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Adelina Tuca\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://themeisle.com/blog/alex-denning-interview-on-marketing-and-wordpress/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"7 Great News Aggregator Websites You Should Check Out (Plus How to Build Your Own)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://themeisle.com/blog/news-aggregator-websites-examples/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://themeisle.com/blog/news-aggregator-websites-examples/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 24 Dec 2018 10:25:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"Resources\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:19:\"WordPress Tutorials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://themeisle.com/blog/?p=17529\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:619:\"<p>Let&#8217;s agree that the information age can be overwhelming without news aggregator websites. Not only is there a lot of information in total, but it is also scattered all over the web. In order to save time, you can bring all of the news, updates, insights, tips, guides, articles into one location with content aggregators....</p>\n<p>The post <a rel=\"nofollow\" href=\"https://themeisle.com/blog/news-aggregator-websites-examples/\">7 Great News Aggregator Websites You Should Check Out (Plus How to Build Your Own)</a> appeared first on <a rel=\"nofollow\" href=\"https://themeisle.com/blog\">ThemeIsle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Chris Fitzgerald\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://themeisle.com/blog/news-aggregator-websites-examples/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://themeisle.com/blog/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:12:{s:4:\"date\";s:29:\"Wed, 09 Jan 2019 19:14:37 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:6:\"server\";s:18:\"Pagely-ARES/1.3.21\";s:25:\"x-gateway-rate-limit-conn\";s:1:\"6\";s:28:\"x-gateway-rate-limit-delayed\";s:4:\"1.99\";s:13:\"last-modified\";s:29:\"Wed, 09 Jan 2019 17:50:26 GMT\";s:4:\"etag\";s:34:\"\"0c5c49507a9ca67748a9828a15530d2a\"\";s:12:\"x-robots-tag\";s:15:\"noindex, follow\";s:4:\"link\";s:63:\"<https://themeisle.com/blog/wp-json/>; rel=\"https://api.w.org/\"\";s:19:\"x-gateway-cache-key\";s:56:\"1547056228.476|standard|https|themeisle.com||/blog/feed/\";s:22:\"x-gateway-cache-status\";s:3:\"HIT\";s:20:\"x-gateway-skip-cache\";s:1:\"0\";}}s:5:\"build\";s:14:\"20130911133210\";}','no'),(1102,'_transient_timeout_feed_mod_9bc1b9ec726e1f508c5207949084454a','1547104477','no'),(1103,'_transient_feed_mod_9bc1b9ec726e1f508c5207949084454a','1547061277','no'),(1104,'_transient_timeout_themeisle_sdk_feed_items','1547234077','no'),(1105,'_transient_themeisle_sdk_feed_items','a:5:{i:0;a:3:{s:5:\"title\";s:67:\"Website Usability Testing: 5 Best Places to Find a Usability Expert\";s:4:\"date\";i:1547023498;s:4:\"link\";s:53:\"https://themeisle.com/blog/website-usability-testing/\";}i:1;a:3:{s:5:\"title\";s:70:\"What’s the Difference Between WordPress Plugins vs Themes? Explained\";s:4:\"date\";i:1546941878;s:4:\"link\";s:55:\"https://themeisle.com/blog/wordpress-plugins-vs-themes/\";}i:2;a:3:{s:5:\"title\";s:67:\"4 Ways to Handle Missing Images on a Website … #Beginner-Friendly\";s:4:\"date\";i:1546857240;s:4:\"link\";s:53:\"https://themeisle.com/blog/missing-images-on-website/\";}i:3;a:3:{s:5:\"title\";s:59:\"What Are WordPress Post Formats and Why They Don’t Matter\";s:4:\"date\";i:1546591591;s:4:\"link\";s:50:\"https://themeisle.com/blog/wordpress-post-formats/\";}i:4;a:3:{s:5:\"title\";s:60:\"Beginner’s Guide to Starting a News Website With WordPress\";s:4:\"date\";i:1546505491;s:4:\"link\";s:51:\"https://themeisle.com/blog/starting-a-news-website/\";}}','no'),(1106,'_transient_timeout_themeisle_sdk_products','1547082878','no'),(1107,'_transient_themeisle_sdk_products','a:41:{i:0;a:4:{s:4:\"name\";s:4:\"Neve\";s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:4:\"neve\";s:8:\"installs\";i:9000;}i:1;a:4:{s:4:\"name\";s:5:\"Fagri\";s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:5:\"fagri\";s:8:\"installs\";i:6000;}i:2;a:4:{s:4:\"name\";s:5:\"Orfeo\";s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:5:\"orfeo\";s:8:\"installs\";i:20000;}i:3;a:4:{s:4:\"name\";s:11:\"Tiny Hestia\";s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:11:\"tiny-hestia\";s:8:\"installs\";i:5000;}i:4;a:4:{s:4:\"name\";s:6:\"Hestia\";s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:6:\"hestia\";s:8:\"installs\";i:100000;}i:5;a:4:{s:4:\"name\";s:15:\"Llorix One Lite\";s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:15:\"llorix-one-lite\";s:8:\"installs\";i:20000;}i:6;a:4:{s:4:\"name\";s:14:\"ResponsiveBoat\";s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:14:\"responsiveboat\";s:8:\"installs\";i:10000;}i:7;a:4:{s:4:\"name\";s:4:\"Oria\";s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:4:\"oria\";s:8:\"installs\";i:10000;}i:8;a:4:{s:4:\"name\";s:7:\"Oblique\";s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:7:\"oblique\";s:8:\"installs\";i:20000;}i:9;a:4:{s:4:\"name\";s:7:\"Amadeus\";s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:7:\"amadeus\";s:8:\"installs\";i:10000;}i:10;a:4:{s:4:\"name\";s:14:\"RokoPhoto Lite\";s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:14:\"rokophoto-lite\";s:8:\"installs\";i:5000;}i:11;a:4:{s:4:\"name\";s:6:\"FlyMag\";s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:6:\"flymag\";s:8:\"installs\";i:8000;}i:12;a:4:{s:4:\"name\";s:9:\"Shop Isle\";s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:9:\"shop-isle\";s:8:\"installs\";i:40000;}i:13;a:4:{s:4:\"name\";s:7:\"islemag\";s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:7:\"islemag\";s:8:\"installs\";i:10000;}i:14;a:4:{s:4:\"name\";s:10:\"Azera Shop\";s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:10:\"azera-shop\";s:8:\"installs\";i:7000;}i:15;a:4:{s:4:\"name\";s:19:\"Advanced CSS Editor\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:19:\"advanced-css-editor\";s:8:\"installs\";i:10000;}i:16;a:4:{s:4:\"name\";s:53:\"Elementor Addons &amp; Templates &#8211; Sizzify Lite\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:23:\"elementor-addon-widgets\";s:8:\"installs\";i:60000;}i:17;a:4:{s:4:\"name\";s:21:\"FEEDZY RSS Feeds Lite\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:16:\"feedzy-rss-feeds\";s:8:\"installs\";i:30000;}i:18;a:4:{s:4:\"name\";s:30:\"Google Maps Plugin by Intergeo\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:13:\"intergeo-maps\";s:8:\"installs\";i:50000;}i:19;a:4:{s:4:\"name\";s:20:\"Llorix One Companion\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:20:\"llorix-one-companion\";s:8:\"installs\";i:20000;}i:20;a:4:{s:4:\"name\";s:23:\"Menu Icons by ThemeIsle\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:10:\"menu-icons\";s:8:\"installs\";i:100000;}i:21;a:4:{s:4:\"name\";s:27:\"NavMenu Addon For Elementor\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:27:\"navmenu-addon-for-elementor\";s:8:\"installs\";i:50000;}i:22;a:4:{s:4:\"name\";s:22:\"Orbit Fox by ThemeIsle\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:19:\"themeisle-companion\";s:8:\"installs\";i:300000;}i:23;a:4:{s:4:\"name\";s:28:\"Page Templater For Elementor\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:19:\"elementor-templater\";s:8:\"installs\";i:30000;}i:24;a:4:{s:4:\"name\";s:50:\"Revive Old Posts &#8211; Auto Post to Social Media\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:14:\"tweet-old-post\";s:8:\"installs\";i:60000;}i:25;a:4:{s:4:\"name\";s:56:\"Slider by Nivo &#8211; Responsive WordPress Image Slider\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:16:\"nivo-slider-lite\";s:8:\"installs\";i:40000;}i:26;a:4:{s:4:\"name\";s:58:\"Visualizer: Tables and Charts Manager for WordPress (Lite)\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:10:\"visualizer\";s:8:\"installs\";i:30000;}i:27;a:4:{s:4:\"name\";s:22:\"WP Product Review Lite\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:17:\"wp-product-review\";s:8:\"installs\";i:50000;}i:28;a:4:{s:4:\"name\";s:19:\"Advanced CSS Editor\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:19:\"advanced-css-editor\";s:8:\"installs\";i:10000;}i:29;a:4:{s:4:\"name\";s:53:\"Elementor Addons &amp; Templates &#8211; Sizzify Lite\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:23:\"elementor-addon-widgets\";s:8:\"installs\";i:60000;}i:30;a:4:{s:4:\"name\";s:21:\"FEEDZY RSS Feeds Lite\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:16:\"feedzy-rss-feeds\";s:8:\"installs\";i:30000;}i:31;a:4:{s:4:\"name\";s:30:\"Google Maps Plugin by Intergeo\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:13:\"intergeo-maps\";s:8:\"installs\";i:50000;}i:32;a:4:{s:4:\"name\";s:20:\"Llorix One Companion\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:20:\"llorix-one-companion\";s:8:\"installs\";i:20000;}i:33;a:4:{s:4:\"name\";s:23:\"Menu Icons by ThemeIsle\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:10:\"menu-icons\";s:8:\"installs\";i:100000;}i:34;a:4:{s:4:\"name\";s:27:\"NavMenu Addon For Elementor\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:27:\"navmenu-addon-for-elementor\";s:8:\"installs\";i:50000;}i:35;a:4:{s:4:\"name\";s:22:\"Orbit Fox by ThemeIsle\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:19:\"themeisle-companion\";s:8:\"installs\";i:300000;}i:36;a:4:{s:4:\"name\";s:28:\"Page Templater For Elementor\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:19:\"elementor-templater\";s:8:\"installs\";i:30000;}i:37;a:4:{s:4:\"name\";s:50:\"Revive Old Posts &#8211; Auto Post to Social Media\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:14:\"tweet-old-post\";s:8:\"installs\";i:60000;}i:38;a:4:{s:4:\"name\";s:56:\"Slider by Nivo &#8211; Responsive WordPress Image Slider\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:16:\"nivo-slider-lite\";s:8:\"installs\";i:40000;}i:39;a:4:{s:4:\"name\";s:58:\"Visualizer: Tables and Charts Manager for WordPress (Lite)\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:10:\"visualizer\";s:8:\"installs\";i:30000;}i:40;a:4:{s:4:\"name\";s:22:\"WP Product Review Lite\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:17:\"wp-product-review\";s:8:\"installs\";i:50000;}}','no'),(1110,'_site_transient_timeout_community-events-7b3a314c65b492970f3ab2b85897b8d5','1547104482','no'),(1111,'_site_transient_community-events-7b3a314c65b492970f3ab2b85897b8d5','a:2:{s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"66.73.204.0\";}s:6:\"events\";a:5:{i:0;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:21:\"2019 Kick Off - WPATX\";s:3:\"url\";s:56:\"https://www.meetup.com/austinwordpress/events/257532791/\";s:6:\"meetup\";s:16:\"WordPress Austin\";s:10:\"meetup_url\";s:39:\"https://www.meetup.com/austinwordpress/\";s:4:\"date\";s:19:\"2019-01-10 18:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:11:\"Austin, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:30.268992999999998261273503885604441165924072265625;s:9:\"longitude\";d:-97.7405470000000065056156017817556858062744140625;}}i:1;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:21:\"WPATX eCommerce - TBD\";s:3:\"url\";s:56:\"https://www.meetup.com/austinwordpress/events/257532919/\";s:6:\"meetup\";s:16:\"WordPress Austin\";s:10:\"meetup_url\";s:39:\"https://www.meetup.com/austinwordpress/\";s:4:\"date\";s:19:\"2019-01-29 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:11:\"Austin, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:30.268992999999998261273503885604441165924072265625;s:9:\"longitude\";d:-97.7405499999999989313437254168093204498291015625;}}i:2;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:11:\"WPATX - TBD\";s:3:\"url\";s:56:\"https://www.meetup.com/austinwordpress/events/257532825/\";s:6:\"meetup\";s:16:\"WordPress Austin\";s:10:\"meetup_url\";s:39:\"https://www.meetup.com/austinwordpress/\";s:4:\"date\";s:19:\"2019-02-14 18:30:00\";s:8:\"location\";a:4:{s:8:\"location\";s:11:\"Austin, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:30.268992999999998261273503885604441165924072265625;s:9:\"longitude\";d:-97.7405499999999989313437254168093204498291015625;}}i:3;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:21:\"WPATX eCommerce - TBD\";s:3:\"url\";s:56:\"https://www.meetup.com/austinwordpress/events/257532935/\";s:6:\"meetup\";s:16:\"WordPress Austin\";s:10:\"meetup_url\";s:39:\"https://www.meetup.com/austinwordpress/\";s:4:\"date\";s:19:\"2019-02-25 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:11:\"Austin, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:30.268992999999998261273503885604441165924072265625;s:9:\"longitude\";d:-97.7405499999999989313437254168093204498291015625;}}i:4;a:7:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:21:\"WPATX eCommerce - TBD\";s:3:\"url\";s:56:\"https://www.meetup.com/austinwordpress/events/257532983/\";s:6:\"meetup\";s:16:\"WordPress Austin\";s:10:\"meetup_url\";s:39:\"https://www.meetup.com/austinwordpress/\";s:4:\"date\";s:19:\"2019-03-25 19:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:11:\"Austin, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:30.268992999999998261273503885604441165924072265625;s:9:\"longitude\";d:-97.7405499999999989313437254168093204498291015625;}}}}','no'),(1112,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1547104482','no'),(1113,'_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Jan 2019 18:56:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wordpress.org/?v=5.0.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:36:\"\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 5.0.3 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2019/01/wordpress-5-0-3-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Jan 2019 18:56:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"5.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6530\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:335:\"WordPress 5.0.3 is now available! 5.0.3 is a maintenance release that includes 36 bug fixes and 7 performance updates. The focus of this release was fine-tuning the new block editor, and fixing any major bugs or regressions. Here are a few of the highlights: 15 block editor related bug fixes and improvements have been added [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Jonathan Desrosiers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4616:\"\n<p>WordPress 5.0.3 is now available!</p>\n\n\n\n<p>5.0.3 is a maintenance release that includes 36 bug fixes and 7 performance updates. The focus of this release was fine-tuning the new block editor, and fixing any major bugs or regressions.</p>\n\n\n\n<p>Here are a few of the highlights:</p>\n\n\n\n<ul><li>15 block editor related bug fixes and improvements have been added to bundled themes. Make sure to update these for an improved block editing experience.</li><li><a href=\"https://core.trac.wordpress.org/query?status=closed&amp;component=I18N&amp;milestone=5.0.3&amp;group=component&amp;order=priority\">2 block editor related internationalization (I18N) bugs</a> have been fixed</li><li>Users with JavaScript disabled <a href=\"https://core.trac.wordpress.org/ticket/45453\">now see a notice</a> when attempting to use the block editor.</li><li>A few <a href=\"https://core.trac.wordpress.org/ticket/44770\">PHP</a> <a href=\"https://core.trac.wordpress.org/ticket/44809\">errors</a> in the Customizer have been fixed.</li><li>Some <a href=\"https://core.trac.wordpress.org/ticket/45615\">issues uploading common file types</a>, like CSVs, have been fixed.</li></ul>\n\n\n\n<p>For a full list of changes, please consult the <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=5.0.3&amp;group=component\">list of tickets on Trac</a>, <a href=\"https://core.trac.wordpress.org/log/branches/5.0?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=44522&amp;stop_rev=44342&amp;limit=100&amp;sfp_email=&amp;sfph_mail=\">changelog</a>, or read a <a href=\"https://make.wordpress.org/core/?p=36158\">more technical summary</a> on the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a>.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/download/\">download WordPress 5.0.3</a> or visit Dashboard → Updates on your site and click <em>Update Now</em>. Sites that support automatic background updates have already started to update automatically.</p>\n\n\n\n<p>Thank you to everyone who contributed to WordPress 5.0.3:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/tellyworth/\">Alex Shiels</a>, <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/anevins/\">Andrew Nevins</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/littlebigthing/\">Csaba (LittleBigThings)</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/kloon/\">Gerhard Potgieter</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Grzegorz (Greg) Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jobthomas/\">Job</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">kjellr</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/mmaumio/\">Muntasir Mahmud</a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/panchen/\">panchen</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/superpoincare/\">Ramanan</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rickalee/\">Ricky Lee Whittemore</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, and <a href=\"https://profiles.wordpress.org/earnjam/\">William Earnhardt</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6530\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"The Month in WordPress: December 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2019/01/the-month-in-wordpress-december-2018/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Jan 2019 09:18:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6527\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:361:\"New features, a big event, and important announcements marked December as a milestone month for the WordPress community. Release of WordPress 5.0 On December 6 WordPress 5.0 was released. This release includes the much anticipated new block editor as the default editing experience. While some users have chosen to continue using the Classic Editor on [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Aditya Kane\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3518:\"\n<p>New features, a big event, and important announcements marked December as a milestone month for the WordPress community. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Release of WordPress 5.0</h2>\n\n\n\n<p>On December 6 <a href=\"https://wordpress.org/news/2018/12/bebo/\">WordPress 5.0 was released</a>. This release includes the much anticipated new block editor as the default editing experience. While some users have chosen to continue using the <a href=\"https://wordpress.org/plugins/classic-editor/\">Classic Editor</a> on their sites, many site owners have quickly upgraded to this latest version.<br></p>\n\n\n\n<p>Two security and maintenance releases came out over the course of the month, with <a href=\"https://wordpress.org/news/2018/12/wordpress-5-0-2-maintenance-release/\">the latest update</a> providing a huge boost to performance and stability.<br></p>\n\n\n\n<p>The new version of WordPress comes a new default theme: <a href=\"https://wordpress.org/themes/twentynineteen/\">Twenty Nineteen</a>. This theme is designed to highlight how the block editor can be used.<br></p>\n\n\n\n<p>Want to get involved in developing WordPress Core? Follow <a href=\"https://make.wordpress.org/core\">the Core team blog</a> and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Gutenberg Phase 2</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2018/12/08/gutenberg-phase-2/\">The next phase of Gutenberg</a> is being decided, starting with widgets, which will make it easier for users to customize their sites. This will be done with features being added to the Gutenberg plugin.<br></p>\n\n\n\n<p>Want to get involved in develop the future of the WordPress dashboard? Follow <a href=\"https://make.wordpress.org/core\">the Core team blog</a> and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>9 Projects for 2019</h2>\n\n\n\n<p>WordPress co-founder Matt Mullenweg outlined <a href=\"https://make.wordpress.org/core/2018/12/08/9-priorities-for-2019/\">9 projects for the year 2019</a>. These projects range from creating a block for navigations menus, porting all existing widgets into blocks, forming a triage team to tackle open issues on Trac and more.<br></p>\n\n\n\n<p>A <a href=\"https://make.wordpress.org/core/2018/12/17/status-update-porting-widgets-to-blocks/\">status update</a> for porting existing widgets to blocks has been posted by Mel Choyce.</p>\n\n\n\n<h2>WordCamp US 2019 Dates announced</h2>\n\n\n\n<p><a href=\"https://2019.us.wordcamp.org/2018/12/12/wordcamp-us-2019-announcing-our-dates/\">WordCamp US 2019</a> will be held during Nov. 1-3, 2019, in St Louis, Missouri. It will be one of our largest events of the year and will feature Matt Mullenweg’s annual State of the Word address.<br></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>v1.2.1 of the WordPress Coding Standards library <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/releases/tag/1.2.1\">has been released</a>.</li><li>A few revisions <a href=\"https://make.wordpress.org/core/2018/12/18/proposed-revisions-to-javascript-coding-standards/\">have been proposed</a> for the WordPress JavaScript coding standards.</li></ul>\n\n\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6527\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:36:\"\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 5.0.2 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2018/12/wordpress-5-0-2-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 19 Dec 2018 23:47:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"5.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6509\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:346:\"WordPress 5.0.2 is now available! 5.0.2 is a maintenance release that addresses 73 bugs. The primary focus of this release was performance improvements in the block editor: the cumulated performance gains make it 330% faster for a post with 200 blocks. Here are a few of the additional highlights: 45 total Block Editor improvements are [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Gary Pendergast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4695:\"\n<p>WordPress 5.0.2 is now available!</p>\n\n\n\n<p>5.0.2 is a maintenance release that addresses 73 bugs. The primary focus of this release was performance improvements in the block editor: the cumulated performance gains make it 330% faster for a post with 200 blocks.</p>\n\n\n\n<p>Here are a few of the additional highlights:</p>\n\n\n\n<ul><li>45 total Block Editor improvements are included (14 performance enhancements &amp; 31 bug fixes).</li><li><a href=\"https://core.trac.wordpress.org/query?component=Bundled+Theme&amp;milestone=5.0.2&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;order=priority\">17 Block Editor related bugs</a> have been fixed across all of the bundled themes.</li><li>Some <a href=\"https://core.trac.wordpress.org/query?component=I18N&amp;milestone=5.0.2&amp;col=id&amp;col=summary&amp;col=status&amp;col=owner&amp;col=type&amp;col=priority&amp;col=milestone&amp;order=priority\">internationalization (i18n) issues</a> related to script loading have also been fixed.</li></ul>\n\n\n\n<p>For a full list of changes, please consult the <a href=\"https://core.trac.wordpress.org/query?status=closed&amp;milestone=5.0.2&amp;group=component\">list of tickets on Trac</a> or the <a href=\"https://core.trac.wordpress.org/log/branches/5.0?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=44339&amp;stop_rev=44183&amp;limit=100&amp;sfp_email=&amp;sfph_mail=\">changelog</a>.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/download/\">download WordPress 5.0.2</a> or visit Dashboard → Updates and click <em>Update Now</em>. Sites that support automatic background updates have already started to update automatically.</p>\n\n\n\n<p>Thank you to everyone who contributed to WordPress 5.0.2:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/babaevan/\">Alexander Babaev</a>, <a href=\"https://profiles.wordpress.org/akirk/\">Alex Kirk</a>, <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/atimmer/\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/jdtrower/\">David Trower</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/edpittol/\">Eduardo Pittol</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/greg-raven/\">Greg Raven</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">gziolo</a>, <a href=\"https://profiles.wordpress.org/herregroen/\">herregroen</a>, <a href=\"https://profiles.wordpress.org/icaleb/\">iCaleb</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/khleomix/\">khleomix</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">kjellr</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeff&nbsp;Paul</a>, <a href=\"https://profiles.wordpress.org/mihaivalentin/\">mihaivalentin</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/more/\"></a><a href=\"https://profiles.wordpress.org/mmaumio/\">Muntasir Mahmud</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pratikthink/\">Pratik K. Yadav</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, <a href=\"https://profiles.wordpress.org/strategio/\">strategio</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/torontodigits/\">TorontoDigits</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/vaishalipanchal/\">Vaishali Panchal</a>, <a href=\"https://profiles.wordpress.org/volodymyrkolesnykov/\">volodymyrkolesnykov</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, <a href=\"https://profiles.wordpress.org/ze3kr/\">ze3kr</a>, and <a href=\"https://profiles.wordpress.org/mypacecreator/\">のむらけい</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6509\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:36:\"\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordCamp US 2019 dates announced\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2018/12/wordcamp-us-2019-dates-announced/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Dec 2018 19:47:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6496\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:324:\"Save the date! The next WordCamp US will be held on November 1-3, 2019, in beautiful St Louis, Missouri. One of our largest events of the year, WordCamp US is a great chance to connect with WordPress enthusiasts from around the world. This is also the event that features Matt Mullenweg&#8217;s annual State of the [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Andrea Middleton\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:705:\"\n<p>Save the date! <a href=\"https://2019.us.wordcamp.org/2018/12/12/wordcamp-us-2019-announcing-our-dates/\">The next WordCamp US</a> will be held on November 1-3, 2019, in beautiful <a href=\"https://2018.us.wordcamp.org/2018/06/15/matt-mullenweg-announces-st-louis-as-wordcamp-us-2019-2020-host-city/\">St Louis, Missouri</a>. One of our largest events of the year, WordCamp US is a great chance to connect with WordPress enthusiasts from around the world. This is also the event that features Matt Mullenweg&#8217;s annual <a href=\"https://www.youtube.com/watch?v=r5b-N2RmxS8\">State of the Word</a> address. </p>\n\n\n\n<p>We&#8217;d love to see you in St. Louis next year, so mark your calendar now!<br></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6496\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:36:\"\n		\n		\n		\n		\n				\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 5.0.1 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2018/12/wordpress-5-0-1-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Dec 2018 03:13:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6498\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:374:\"WordPress 5.0.1 is now available. This is a security release for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately. Plugin authors are encouraged to read the 5.0.1 developer notes for information on backwards-compatibility. WordPress versions 5.0 and earlier are affected by the following bugs, which are fixed in version [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Ian Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4799:\"\n<p>WordPress 5.0.1 is now available. This is a <strong>security release</strong> for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately.</p>\n\n\n\n<p>Plugin authors are encouraged to <a href=\"https://make.wordpress.org/core/2018/12/13/backwards-compatibility-breaks-in-5-0-1/\">read the 5.0.1 developer notes</a> for information on backwards-compatibility.</p>\n\n\n\n<p>WordPress versions 5.0 and earlier are affected by the following bugs, which are fixed in version 5.0.1. Updated versions of WordPress 4.9 and older releases are also available, for users who have not yet updated to 5.0.</p>\n\n\n\n<ul><li><a href=\"https://ripstech.com\">Karim El Ouerghemmi</a> discovered that authors could alter meta data to delete files that they weren&#8217;t authorized to.</li><li>Simon Scannell of <a href=\"https://blog.ripstech.com\">RIPS Technologies</a> discovered that authors could create posts of unauthorized post types with specially crafted input.</li><li><a href=\"https://twitter.com/_s_n_t\">Sam Thomas</a> discovered that contributors could craft meta data in a way that resulted in PHP object injection. </li><li><a href=\"https://security-consulting.icu\">Tim Coen</a> discovered that contributors could edit new comments from higher-privileged users, potentially leading to a cross-site scripting vulnerability.</li><li><a href=\"https://security-consulting.icu\">Tim Coen</a> also discovered that specially crafted URL inputs could lead to a cross-site scripting vulnerability in some circumstances. WordPress itself was not affected, but plugins could be in some situations. </li><li><a href=\"https://yoast.com/\">Team Yoast</a> discovered that the user activation screen could be indexed by search engines in some uncommon configurations, leading to exposure of email addresses, and in some rare cases, default generated passwords.</li><li><a href=\"https://security-consulting.icu\">Tim Coen</a> and <a href=\"https://medium.com/websec\">Slavco</a> discovered that authors on Apache-hosted sites could upload specifically crafted files that bypass MIME verification, leading to a cross-site scripting vulnerability. </li></ul>\n\n\n\n<p>Thank you to all of the reporters for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">privately disclosing the vulnerabilities</a>, which gave us time to fix them before WordPress sites could be attacked.</p>\n\n\n\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 5.0.1</a>, or venture over to <code>Dashboard → Updates</code> and click <code>Update Now</code>. Sites that support automatic background updates are already beginning to update automatically.</p>\n\n\n\n<p>In addition to the security researchers mentioned above, thank you to everyone who contributed to WordPress 5.0.1:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/tellyworth\">Alex Shiels</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron Campbell</a>, <a href=\"https://profiles.wordpress.org/andreamiddleton\">Andrea Middleton</a>, <a href=\"https://profiles.wordpress.org/vortfu\">Ben Bidner</a>, <a href=\"https://profiles.wordpress.org/barry\">Barry Abrahamson</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">Chris Christoff</a>, <a href=\"https://profiles.wordpress.org/darthhexx/\">David Newman</a>, <a href=\"https://profiles.wordpress.org/apokalyptik\">Demitrious Kelly</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/hnotess/\">Hannah Notess</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/herregroen\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/chanthaboune\">Josepha Haden</a>, <a href=\"https://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/batmoo/\">Mo Jangda</a>, <a href=\"https://profiles.wordpress.org/nickdaugherty\">Nick Daugherty</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a>, and <a href=\"https://twitter.com/p_valentyn\">Valentyn Pylypchuk</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6498\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:35:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n	\n\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"WordPress 5.0 “Bebo”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/news/2018/12/bebo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 06 Dec 2018 19:28:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6328\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:342:\"Say Hello to the New Editor We’ve made some big upgrades to the editor. Our new block-based editor is the first step toward an exciting new future with a streamlined editing experience across your site. You’ll have more flexibility with how content is displayed, whether you are building your first site, revamping your blog, or [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:2:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:52:\"https://s.w.org/images/core/5.0/videos/add-block.mp4\";s:6:\"length\";s:7:\"8086508\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:48:\"https://s.w.org/images/core/5.0/videos/build.mp4\";s:6:\"length\";s:7:\"2623964\";s:4:\"type\";s:9:\"video/mp4\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:56437:\"\n<h2 style=\"text-align:center\">Say Hello to the New Editor</h2>\n\n\n\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe class=\'youtube-player\' type=\'text/html\' width=\'632\' height=\'386\' src=\'https://www.youtube.com/embed/72xdCU__XCk?version=3&#038;rel=1&#038;fs=1&#038;autohide=2&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;wmode=transparent\' allowfullscreen=\'true\' style=\'border:0;\'></iframe>\n</div></figure>\n\n\n\n<p>We’ve made some big upgrades to the editor. Our new block-based editor is the first step toward an exciting new future with a streamlined editing experience across your site. You’ll have more flexibility with how content is displayed, whether you are building your first site, revamping your blog, or write code for a living.</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Gutenberg.jpg?fit=2400%2C1200&amp;ssl=1\" alt=\"\" class=\"wp-image-6331\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Gutenberg.jpg?w=2400&amp;ssl=1 2400w, https://i1.wp.com/wordpress.org/news/files/2018/12/Gutenberg.jpg?resize=300%2C150&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2018/12/Gutenberg.jpg?resize=768%2C384&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2018/12/Gutenberg.jpg?resize=1024%2C512&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2018/12/Gutenberg.jpg?w=1264&amp;ssl=1 1264w, https://i1.wp.com/wordpress.org/news/files/2018/12/Gutenberg.jpg?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" /></figure></div>\n\n\n\n<h2 style=\"text-align:center\">Building with Blocks</h2>\n\n\n\n<p>The new block-based editor won’t change the way any of your content looks to your visitors. What it will do is let you insert any type of multimedia in a snap and rearrange to your heart’s content. Each piece of content will be in its own block; a distinct wrapper for easy maneuvering. If you’re more of an HTML and CSS sort of person, then the blocks won’t stand in your way. WordPress is here to simplify the process, not the outcome.</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://s.w.org/images/core/5.0/videos/add-block.mp4\"></video></figure>\n\n\n\n<p>We have tons of blocks available by default, and more get added by the community every day. Here are a few of the blocks to help you get started:</p>\n\n\n\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://i2.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Paragraph.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6340\" data-link=\"https://wordpress.org/news/?attachment_id=6340\" class=\"wp-image-6340\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Paragraph.jpg?w=500&amp;ssl=1 500w, https://i2.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Paragraph.jpg?resize=150%2C150&amp;ssl=1 150w, https://i2.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Paragraph.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>Paragraph</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Heading.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6341\" data-link=\"https://wordpress.org/news/?attachment_id=6341\" class=\"wp-image-6341\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Heading.jpg?w=500&amp;ssl=1 500w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Heading.jpg?resize=150%2C150&amp;ssl=1 150w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Heading.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>Heading</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Preformatted.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6342\" data-link=\"https://wordpress.org/news/?attachment_id=6342\" class=\"wp-image-6342\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Preformatted.jpg?w=500&amp;ssl=1 500w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Preformatted.jpg?resize=150%2C150&amp;ssl=1 150w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Preformatted.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>Preformatted</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Quote.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6343\" data-link=\"https://wordpress.org/news/?attachment_id=6343\" class=\"wp-image-6343\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Quote.jpg?w=500&amp;ssl=1 500w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Quote.jpg?resize=150%2C150&amp;ssl=1 150w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Quote.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>Quote</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Image.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6344\" data-link=\"https://wordpress.org/news/?attachment_id=6344\" class=\"wp-image-6344\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Image.jpg?w=500&amp;ssl=1 500w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Image.jpg?resize=150%2C150&amp;ssl=1 150w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Image.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>Image</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i2.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Gallery.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6345\" data-link=\"https://wordpress.org/news/?attachment_id=6345\" class=\"wp-image-6345\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Gallery.jpg?w=500&amp;ssl=1 500w, https://i2.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Gallery.jpg?resize=150%2C150&amp;ssl=1 150w, https://i2.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Gallery.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>Gallery</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Cover-Image.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6346\" data-link=\"https://wordpress.org/news/?attachment_id=6346\" class=\"wp-image-6346\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Cover-Image.jpg?w=500&amp;ssl=1 500w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Cover-Image.jpg?resize=150%2C150&amp;ssl=1 150w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Cover-Image.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>Cover</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Video.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6347\" data-link=\"https://wordpress.org/news/?attachment_id=6347\" class=\"wp-image-6347\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Video.jpg?w=500&amp;ssl=1 500w, https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Video.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Video.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>Video</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Audio.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6348\" data-link=\"https://wordpress.org/news/?attachment_id=6348\" class=\"wp-image-6348\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Audio.jpg?w=500&amp;ssl=1 500w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Audio.jpg?resize=150%2C150&amp;ssl=1 150w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Audio.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>Audio</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Column.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6349\" data-link=\"https://wordpress.org/news/?attachment_id=6349\" class=\"wp-image-6349\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Column.jpg?w=500&amp;ssl=1 500w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Column.jpg?resize=150%2C150&amp;ssl=1 150w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Column.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>Columns</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-File.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6350\" data-link=\"https://wordpress.org/news/?attachment_id=6350\" class=\"wp-image-6350\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-File.jpg?w=500&amp;ssl=1 500w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-File.jpg?resize=150%2C150&amp;ssl=1 150w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-File.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>File</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Code.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6351\" data-link=\"https://wordpress.org/news/?attachment_id=6351\" class=\"wp-image-6351\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Code.jpg?w=500&amp;ssl=1 500w, https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Code.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Code.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>Code</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-List.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6352\" data-link=\"https://wordpress.org/news/?attachment_id=6352\" class=\"wp-image-6352\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-List.jpg?w=500&amp;ssl=1 500w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-List.jpg?resize=150%2C150&amp;ssl=1 150w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-List.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>List</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Button.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6353\" data-link=\"https://wordpress.org/news/?attachment_id=6353\" class=\"wp-image-6353\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Button.jpg?w=500&amp;ssl=1 500w, https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Button.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Button.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>Button</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Embeds.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6354\" data-link=\"https://wordpress.org/news/?attachment_id=6354\" class=\"wp-image-6354\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Embeds.jpg?w=500&amp;ssl=1 500w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Embeds.jpg?resize=150%2C150&amp;ssl=1 150w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Embeds.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>Embeds</figcaption></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-More.jpg?w=632&#038;ssl=1\" alt=\"\" data-id=\"6355\" data-link=\"https://wordpress.org/news/?attachment_id=6355\" class=\"wp-image-6355\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-More.jpg?w=500&amp;ssl=1 500w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-More.jpg?resize=150%2C150&amp;ssl=1 150w, https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-More.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /><figcaption>More</figcaption></figure></li></ul>\n\n\n\n<h2 style=\"text-align:center\">Freedom to Build, Freedom to Write</h2>\n\n\n\n<p>This new editing experience provides a more consistent treatment of design as well as content. If you’re building client sites, you can create reusable blocks. This lets your clients add new content anytime, while still maintaining a consistent look and feel.</p>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://s.w.org/images/core/5.0/videos/build.mp4\"></video></figure>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 style=\"text-align:center\">A Stunning New Default Theme</h2>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2018/12/twenty-nineteen.jpg?fit=2400%2C1600&amp;ssl=1\" alt=\"\" class=\"wp-image-6358\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2018/12/twenty-nineteen.jpg?w=2400&amp;ssl=1 2400w, https://i0.wp.com/wordpress.org/news/files/2018/12/twenty-nineteen.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2018/12/twenty-nineteen.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2018/12/twenty-nineteen.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2018/12/twenty-nineteen.jpg?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2018/12/twenty-nineteen.jpg?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" /></figure></div>\n\n\n\n<p>Introducing Twenty Nineteen, a new default theme that shows off the power of the new editor.</p>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><figure class=\"wp-block-media-text__media\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2018/12/block-editor-1024x683.jpg?resize=632%2C422&#038;ssl=1\" alt=\"\" class=\"wp-image-6359\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2018/12/block-editor.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2018/12/block-editor.jpg?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2018/12/block-editor.jpg?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2018/12/block-editor.jpg?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 id=\"mce_9\">Designed for the block editor</h3>\n\n\n\n<p>Twenty Nineteen features custom styles for the blocks available by default in 5.0. It makes extensive use of editor styles throughout the theme. That way, what you create in your content editor is what you see on the front of your site.<br></p>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><figure class=\"wp-block-media-text__media\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/typography-1.jpg?w=632&#038;ssl=1\" alt=\"\" class=\"wp-image-6427\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/typography-1.jpg?w=900&amp;ssl=1 900w, https://i1.wp.com/wordpress.org/news/files/2018/12/typography-1.jpg?resize=300%2C200&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2018/12/typography-1.jpg?resize=768%2C512&amp;ssl=1 768w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 id=\"mce_18\">Simple, type-driven layout</h3>\n\n\n\n<p>Featuring ample whitespace, and modern sans-serif headlines paired with classic serif body text, Twenty Nineteen is built to be beautiful on the go. It uses system fonts to increase loading speed. No more long waits on slow networks!</p>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><figure class=\"wp-block-media-text__media\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2018/12/twenty-nineteen-versatile.gif?w=632&#038;ssl=1\" alt=\"\" class=\"wp-image-6361\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 id=\"mce_24\">Versatile design for all sites</h3>\n\n\n\n<p>Twenty Nineteen is designed to work for a wide variety of use cases. Whether you’re running a photo blog, launching a new business, or supporting a non-profit, Twenty Nineteen is flexible enough to fit your needs.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link has-text-color\" href=\"https://wordpress.org/themes/twentynineteen/\" style=\"color:#ffffff\">Give Twenty Nineteen a try</a></div>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 style=\"text-align:center\">Developer Happiness</h2>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><figure class=\"wp-block-media-text__media\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Protect.jpg?w=632&#038;ssl=1\" alt=\"\" class=\"wp-image-6362\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Protect.jpg?w=500&amp;ssl=1 500w, https://i1.wp.com/wordpress.org/news/files/2018/12/Protect.jpg?resize=300%2C210&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 id=\"mce_34\">Protect</h3>\n\n\n\n<p>Blocks provide a comfortable way for users to change content directly, while also ensuring the content structure cannot be easily disturbed by accidental code edits. This allows the developer to control the output, building polished and semantic markup that is preserved through edits and not easily broken.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><figure class=\"wp-block-media-text__media\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2018/12/Compose.jpg?w=632&#038;ssl=1\" alt=\"\" class=\"wp-image-6363\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2018/12/Compose.jpg?w=500&amp;ssl=1 500w, https://i2.wp.com/wordpress.org/news/files/2018/12/Compose.jpg?resize=300%2C210&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 id=\"mce_39\">Compose</h3>\n\n\n\n<p>Take advantage of a wide collection of APIs and interface components to easily create blocks with intuitive controls for your clients. Utilizing these components not only speeds up development work but also provide a more consistent, usable, and accessible interface to all users.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><figure class=\"wp-block-media-text__media\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Create.jpg?w=632&#038;ssl=1\" alt=\"\" class=\"wp-image-6364\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Create.jpg?w=500&amp;ssl=1 500w, https://i1.wp.com/wordpress.org/news/files/2018/12/Create.jpg?resize=300%2C210&amp;ssl=1 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<h3 id=\"mce_45\">Create</h3>\n\n\n\n<p>The new block paradigm opens up a path of exploration and imagination when it comes to solving user needs. With the unified block insertion flow, it’s easier for your clients and customers to find and use blocks for all types of content. Developers can focus on executing their vision and providing rich editing experiences, rather than fussing with difficult APIs.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link has-text-color\" href=\"https://wordpress.org/gutenberg/handbook/\" style=\"color:#ffffff\">Learn how to get started</a></div>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2 style=\"text-align:center\">Keep it Classic</h2>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Classic.jpg?fit=2400%2C1130&amp;ssl=1\" alt=\"\" class=\"wp-image-6365\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Classic.jpg?w=2400&amp;ssl=1 2400w, https://i1.wp.com/wordpress.org/news/files/2018/12/Classic.jpg?resize=300%2C141&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2018/12/Classic.jpg?resize=768%2C362&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2018/12/Classic.jpg?resize=1024%2C482&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2018/12/Classic.jpg?w=1264&amp;ssl=1 1264w, https://i1.wp.com/wordpress.org/news/files/2018/12/Classic.jpg?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" /></figure></div>\n\n\n\n<p>Prefer to stick with the familiar Classic Editor? No problem! Support for the Classic Editor plugin will remain in WordPress through 2021.</p>\n\n\n\n<p>The Classic Editor plugin restores the previous WordPress editor and the Edit Post screen. It lets you keep using plugins that extend it, add old-style meta boxes, or otherwise depend on the previous editor. To install, visit your plugins page and click the “Install Now” button next to “Classic Editor”. After the plugin finishes installing, click “Activate”. That’s it!</p>\n\n\n\n<p>Note to users of assistive technology: if you experience usability issues with the block editor, we recommend you continue to use the Classic Editor.</p>\n\n\n\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link has-text-color\" href=\"https://wordpress.org/plugins/classic-editor/\" style=\"color:#ffffff\">Check out the Classic Editor</a></div>\n\n\n\n<p>This release is named in homage to the pioneering Cuban jazz musician <a href=\"https://en.wikipedia.org/wiki/Bebo_Vald%C3%A9s\">Bebo Valdés</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>The Squad</h2>\n\n\n\n<p>This release was led by <a href=\"http://ma.tt/\">Matt Mullenweg</a>, along with co-leads <a href=\"https://www.allancole.com/\">Allan Cole</a>, <a href=\"http://antpb.com/\">Anthony Burchell</a>, <a href=\"https://pento.net/\">Gary Pendergast</a>, <a href=\"https://josepha.blog/\">Josepha Haden Chomphosy</a>, <a href=\"https://laurel.blog/\">Laurel Fulford</a>, <a href=\"https://yoast.com/about-us/team/omar-reiss/\">Omar Reiss</a>, <a href=\"https://danielbachhuber.com/\">Daniel Bachhuber</a>, <a href=\"https://matiasventura.com/\">Matías Ventura</a>, <a href=\"https://lamda.blog/\">Miguel Fonseca</a>, <a href=\"https://tam.blog/\">Tammie Lister</a>, <a href=\"https://tofumatt.com/\">Matthew Riley MacPherson</a>. They were ably assisted by the following fabulous folks. There were 423 contributors with props in this release. Pull up some Bebo Valdés on your music service of choice, and check out some of their profiles:</p>\n\n\n<a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abdulwahab610\">Abdul Wahab</a>, <a href=\"https://profiles.wordpress.org/abdullahramzan\">Abdullah Ramzan</a>, <a href=\"https://profiles.wordpress.org/abhijitrakas\">Abhijit Rakas</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/afraithe\">afraithe</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais\">Ahmad Awais</a>, <a href=\"https://profiles.wordpress.org/ahmadawais\">ahmadawais</a>, <a href=\"https://profiles.wordpress.org/airathalitov\">Airat Halitov</a>, <a href=\"https://profiles.wordpress.org/ajitbohra\">Ajit Bohra</a>, <a href=\"https://profiles.wordpress.org/schlessera\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/albertomedina\">albertomedina</a>, <a href=\"https://profiles.wordpress.org/aldavigdis\">aldavigdis</a>, <a href=\"https://profiles.wordpress.org/akirk\">Alex Kirk</a>, <a href=\"https://profiles.wordpress.org/alexsanford1\">Alex Sanford</a>, <a href=\"https://profiles.wordpress.org/babaevan\">Alexander Babaev</a>, <a href=\"https://profiles.wordpress.org/xyfi\">Alexander Botteram</a>, <a href=\"https://profiles.wordpress.org/alexis\">alexis</a>, <a href=\"https://profiles.wordpress.org/alexislloyd\">Alexis Lloyd</a>, <a href=\"https://profiles.wordpress.org/arush\">Amanda Rush</a>, <a href=\"https://profiles.wordpress.org/amedina\">amedina</a>, <a href=\"https://profiles.wordpress.org/nosolosw\">Andr&#233;s</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andreamiddleton\">Andrea Middleton</a>, <a href=\"https://profiles.wordpress.org/euthelup\">Andrei Lupu</a>, <a href=\"https://profiles.wordpress.org/andreiglingeanu\">andreiglingeanu</a>, <a href=\"https://profiles.wordpress.org/aduth\">Andrew Duthie</a>, <a href=\"https://profiles.wordpress.org/sumobi\">Andrew Munro</a>, <a href=\"https://profiles.wordpress.org/anevins\">Andrew Nevins</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/androb\">Andrew Roberts</a>, <a href=\"https://profiles.wordpress.org/andrewtaylor-1\">Andrew Taylor</a>, <a href=\"https://profiles.wordpress.org/andrewserong\">andrewserong</a>, <a href=\"https://profiles.wordpress.org/apeatling\">Andy Peatling</a>, <a href=\"https://profiles.wordpress.org/ameeker\">Angie Meeker</a>, <a href=\"https://profiles.wordpress.org/annaharrison\">Anna Harrison</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/arnaudban\">ArnaudBan</a>, <a href=\"https://profiles.wordpress.org/arshidkv12\">Arshid</a>, <a href=\"https://profiles.wordpress.org/aprakasa\">Arya Prakasa</a>, <a href=\"https://profiles.wordpress.org/artisticasad\">Asad</a>, <a href=\"https://profiles.wordpress.org/mrasharirfan\">Ashar Irfan</a>, <a href=\"https://profiles.wordpress.org/asvinballoo\">Asvin Balloo</a>, <a href=\"https://profiles.wordpress.org/atanasangelovdev\">Atanas Angelov</a>, <a href=\"https://profiles.wordpress.org/b-07\">Bappi</a>, <a href=\"https://profiles.wordpress.org/bcolumbia\">bcolumbia</a>, <a href=\"https://profiles.wordpress.org/belcherj\">belcherj</a>, <a href=\"https://profiles.wordpress.org/blowery\">Ben Lowery</a>, <a href=\"https://profiles.wordpress.org/caxco93\">Benjamin Eyzaguirre</a>, <a href=\"https://profiles.wordpress.org/benjamin_zekavica\">Benjamin Zekavica</a>, <a href=\"https://profiles.wordpress.org/benlk\">benlk</a>, <a href=\"https://profiles.wordpress.org/kau-boy\">Bernhard Kau</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/betsela\">betsela</a>, <a href=\"https://profiles.wordpress.org/bhargavmehta\">Bhargav Mehta</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bph\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/bobbingwide\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/boblinthorst\">boblinthorst</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bradyvercher\">Brady Vercher</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/bpayton\">Brandon Payton</a>, <a href=\"https://profiles.wordpress.org/brentswisher\">Brent Swisher</a>, <a href=\"https://profiles.wordpress.org/technosiren\">Brianna Privett</a>, <a href=\"https://profiles.wordpress.org/briannaorg\">briannaorg</a>, <a href=\"https://profiles.wordpress.org/bronsonquick\">Bronson Quick</a>, <a href=\"https://profiles.wordpress.org/bandonrandon\">Brooke.</a>, <a href=\"https://profiles.wordpress.org/burhandodhy\">Burhan Nasir</a>, <a href=\"https://profiles.wordpress.org/cantothemes\">CantoThemes</a>, <a href=\"https://profiles.wordpress.org/cathibosco\">cathibosco</a>, <a href=\"https://profiles.wordpress.org/chetan200891\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/chetansatasiya\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/ketuchetan\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chrisl27\">Chris Lloyd</a>, <a href=\"https://profiles.wordpress.org/crunnells\">Chris Runnells</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/chriskmnds\">chriskmnds</a>, <a href=\"https://profiles.wordpress.org/pixelverbieger\">Christian Sabo</a>, <a href=\"https://profiles.wordpress.org/christophherr\">Christoph Herr</a>, <a href=\"https://profiles.wordpress.org/claudiosanches\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/coderkevin\">coderkevin</a>, <a href=\"https://profiles.wordpress.org/copons\">Copons</a>, <a href=\"https://profiles.wordpress.org/courtney0burton\">courtney0burton</a>, <a href=\"https://profiles.wordpress.org/mitogh\">Crisoforo Gaspar</a>, <a href=\"https://profiles.wordpress.org/littlebigthing\">Csaba (LittleBigThings)</a>, <a href=\"https://profiles.wordpress.org/csabotta\">csabotta</a>, <a href=\"https://profiles.wordpress.org/danieltj\">Daniel James</a>, <a href=\"https://profiles.wordpress.org/talldanwp\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/danielhw\">danielhw</a>, <a href=\"https://profiles.wordpress.org/daniloercoli\">daniloercoli</a>, <a href=\"https://profiles.wordpress.org/dannycooper\">DannyCooper</a>, <a href=\"https://profiles.wordpress.org/nerrad\">Darren Ethier (nerrad)</a>, <a href=\"https://profiles.wordpress.org/davemoran118\">davemoran118</a>, <a href=\"https://profiles.wordpress.org/davidbinda\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/dcavins\">David Cavins</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David Kennedy</a>, <a href=\"https://profiles.wordpress.org/dryanpress\">David Ryan</a>, <a href=\"https://profiles.wordpress.org/davidsword\">David Sword</a>, <a href=\"https://profiles.wordpress.org/jdtrower\">David Trower</a>, <a href=\"https://profiles.wordpress.org/folletto\">Davide \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/davidherrera\">davidherrera</a>, <a href=\"https://profiles.wordpress.org/davisshaver\">Davis</a>, <a href=\"https://profiles.wordpress.org/dciso\">dciso</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/dsmart\">Derek Smart</a>, <a href=\"https://profiles.wordpress.org/designsimply\">designsimply</a>, <a href=\"https://profiles.wordpress.org/dlocc\">Devin Walker</a>, <a href=\"https://profiles.wordpress.org/deviodigital\">Devio Digital</a>, <a href=\"https://profiles.wordpress.org/dfangstrom\">dfangstrom</a>, <a href=\"https://profiles.wordpress.org/dhanendran\">Dhanendran</a>, <a href=\"https://profiles.wordpress.org/diegoliv\">Diego de Oliveira</a>, <a href=\"https://profiles.wordpress.org/diegoreymendez\">diegoreymendez</a>, <a href=\"https://profiles.wordpress.org/dingo_bastard\">dingo-d</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dency\">Dixita Dusara</a>, <a href=\"https://profiles.wordpress.org/dixitadusara\">Dixita Dusara Gohil</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/donnapep\">Donna Peplinskie</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/dsawardekar\">dsawardekar</a>, <a href=\"https://profiles.wordpress.org/dsifford\">dsifford</a>, <a href=\"https://profiles.wordpress.org/duanestorey\">Duane Storey</a>, <a href=\"https://profiles.wordpress.org/edpittol\">Eduardo Pittol</a>, <a href=\"https://profiles.wordpress.org/chopinbach\">Edwin Cromley</a>, <a href=\"https://profiles.wordpress.org/ehg\">ehg</a>, <a href=\"https://profiles.wordpress.org/electricfeet\">ElectricFeet</a>, <a href=\"https://profiles.wordpress.org/eliorivero\">Elio Rivero</a>, <a href=\"https://profiles.wordpress.org/epointal\">Elisabeth Pointal</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/elrae\">elrae</a>, <a href=\"https://profiles.wordpress.org/enodekciw\">enodekciw</a>, <a href=\"https://profiles.wordpress.org/ephoxjames\">ephoxjames</a>, <a href=\"https://profiles.wordpress.org/ephoxmogran\">ephoxmogran</a>, <a href=\"https://profiles.wordpress.org/sewmyheadon\">Eric Amundson</a>, <a href=\"https://profiles.wordpress.org/ericnmurphy\">ericnmurphy</a>, <a href=\"https://profiles.wordpress.org/etoledom\">etoledom</a>, <a href=\"https://profiles.wordpress.org/circlecube\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy\">fabiankaegy</a>, <a href=\"https://profiles.wordpress.org/fabs_pim\">fabs_pim</a>, <a href=\"https://profiles.wordpress.org/faishal\">Faishal</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/floriansimeth\">Florian Simeth</a>, <a href=\"https://profiles.wordpress.org/foobar4u\">foobar4u</a>, <a href=\"https://profiles.wordpress.org/foreverpinetree\">foreverpinetree</a>, <a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/fuyuko\">fuyuko</a>, <a href=\"https://profiles.wordpress.org/gma992\">Gabriel Maldonado</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/doomwaxer\">Gary Thayer</a>, <a href=\"https://profiles.wordpress.org/garyjones\">garyjones</a>, <a href=\"https://profiles.wordpress.org/soulseekah\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/babbardel\">George Olaru</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/georgeh\">georgeh</a>, <a href=\"https://profiles.wordpress.org/gnif\">gnif</a>, <a href=\"https://profiles.wordpress.org/goldsounds\">goldsounds</a>, <a href=\"https://profiles.wordpress.org/grappler\">Grappler</a>, <a href=\"https://profiles.wordpress.org/greg-raven\">Greg Raven</a>, <a href=\"https://profiles.wordpress.org/gziolo\">Grzegorz Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/bordoni\">Gustavo Bordoni</a>, <a href=\"https://profiles.wordpress.org/gwwar\">gwwar</a>, <a href=\"https://profiles.wordpress.org/hardeepasrani\">Hardeep Asrani</a>, <a href=\"https://profiles.wordpress.org/hblackett\">hblackett</a>, <a href=\"https://profiles.wordpress.org/helen\">Helen Hou-Sandi</a>, <a href=\"https://profiles.wordpress.org/luehrsen\">Hendrik Luehrsen</a>, <a href=\"https://profiles.wordpress.org/herbmiller\">herbmiller</a>, <a href=\"https://profiles.wordpress.org/herregroen\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>, <a href=\"https://profiles.wordpress.org/hypest\">hypest</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianstewart\">ianstewart</a>, <a href=\"https://profiles.wordpress.org/ianbelanger\">ibelanger</a>, <a href=\"https://profiles.wordpress.org/icaleb\">iCaleb</a>, <a href=\"https://profiles.wordpress.org/idpokute\">idpokute</a>, <a href=\"https://profiles.wordpress.org/igorsch\">Igor</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/imonly_ik\">Imran Khalid</a>, <a href=\"https://profiles.wordpress.org/intronic\">intronic</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/ireneyoast\">Irene Strikkers</a>, <a href=\"https://profiles.wordpress.org/ismailelkorchi\">Ismail El Korchi</a>, <a href=\"https://profiles.wordpress.org/israelshmueli\">israelshmueli</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jd55\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jakept\">Jacob Peattie</a>, <a href=\"https://profiles.wordpress.org/jagnew\">jagnew</a>, <a href=\"https://profiles.wordpress.org/jahvi\">jahvi</a>, <a href=\"https://profiles.wordpress.org/jnylen0\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jamestryon\">jamestryon</a>, <a href=\"https://profiles.wordpress.org/jamiehalvorson\">jamiehalvorson</a>, <a href=\"https://profiles.wordpress.org/jdembowski\">Jan Dembowski</a>, <a href=\"https://profiles.wordpress.org/janalwin\">janalwin</a>, <a href=\"https://profiles.wordpress.org/jaswrks\">Jason Caldwell</a>, <a href=\"https://profiles.wordpress.org/octalmage\">Jason Stallings</a>, <a href=\"https://profiles.wordpress.org/yingling017\">Jason Yingling</a>, <a href=\"https://profiles.wordpress.org/vengisss\">Javier Villanueva</a>, <a href=\"https://profiles.wordpress.org/jhoffm34\">Jay Hoffmann</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jblz\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/jeffpaul\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jipmoors\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">JJJ</a>, <a href=\"https://profiles.wordpress.org/sephsekla\">Joe Bailey-Roberts</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joemaller\">joemaller</a>, <a href=\"https://profiles.wordpress.org/joen\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/j-falk\">Johan Falk</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnny5\">John Godley</a>, <a href=\"https://profiles.wordpress.org/johndyer\">johndyer</a>, <a href=\"https://profiles.wordpress.org/johnpixle\">JohnPixle</a>, <a href=\"https://profiles.wordpress.org/johnwatkins0\">johnwatkins0</a>, <a href=\"https://profiles.wordpress.org/jomurgel\">jomurgel</a>, <a href=\"https://profiles.wordpress.org/jonsurrell\">Jon Surrell</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/koke\">Jorge Bernal</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/ieatwebsites\">Jose Fremaint</a>, <a href=\"https://profiles.wordpress.org/shelob9\">Josh Pollock</a>, <a href=\"https://profiles.wordpress.org/jvisick77\">Josh Visick</a>, <a href=\"https://profiles.wordpress.org/joshuawold\">Joshua Wold</a>, <a href=\"https://profiles.wordpress.org/joyously\">Joy</a>, <a href=\"https://profiles.wordpress.org/jrf\">jrf</a>, <a href=\"https://profiles.wordpress.org/jryancard\">jryancard</a>, <a href=\"https://profiles.wordpress.org/jsnajdr\">jsnajdr</a>, <a href=\"https://profiles.wordpress.org/julienmelissas\">JulienMelissas</a>, <a href=\"https://profiles.wordpress.org/kopepasah\">Justin Kopepasah</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K.Adam White</a>, <a href=\"https://profiles.wordpress.org/kallehauge\">Kallehauge</a>, <a href=\"https://profiles.wordpress.org/kalpshit\">KalpShit Akabari</a>, <a href=\"https://profiles.wordpress.org/codebykat\">Kat Hagan</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/kevinwhoffman\">Kevin Hoffman</a>, <a href=\"https://profiles.wordpress.org/khleomix\">khleomix</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/kjellr\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/kluny\">kluny</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/xkon\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/krutidugade\">krutidugade</a>, <a href=\"https://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"https://profiles.wordpress.org/notlaura\">Lara Schenck</a>, <a href=\"https://profiles.wordpress.org/leahkoerper\">leahkoerper</a>, <a href=\"https://profiles.wordpress.org/lloyd\">lloyd</a>, <a href=\"https://profiles.wordpress.org/loicblascos\">Lo&#239;c Blascos</a>, <a href=\"https://profiles.wordpress.org/lucasstark\">Lucas Stark</a>, <a href=\"https://profiles.wordpress.org/lucasrolff\">LucasRolff</a>, <a href=\"https://profiles.wordpress.org/luigipulcini\">luigipulcini</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/lucaskowalski\">Luke Kowalski</a>, <a href=\"https://profiles.wordpress.org/lukepettway\">Luke Pettway</a>, <a href=\"https://profiles.wordpress.org/luminus\">Luminus</a>, <a href=\"https://profiles.wordpress.org/lynneux\">lynneux</a>, <a href=\"https://profiles.wordpress.org/macbookandrew\">macbookandrew</a>, <a href=\"https://profiles.wordpress.org/maedahbatool\">Maedah Batool</a>, <a href=\"https://profiles.wordpress.org/mahdiyazdani\">Mahdi Yazdani</a>, <a href=\"https://profiles.wordpress.org/mahmoudsaeed\">mahmoudsaeed</a>, <a href=\"https://profiles.wordpress.org/travel_girl\">Maja Benke</a>, <a href=\"https://profiles.wordpress.org/mkaz\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/marina_wp\">marina_wp</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mariusvw\">mariusvw</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/mapk\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/vindl\">Marko Andrijasevic</a>, <a href=\"https://profiles.wordpress.org/martinlugton\">martinlugton</a>, <a href=\"https://profiles.wordpress.org/m-e-h\">Marty Helmick</a>, <a href=\"https://profiles.wordpress.org/mathiu\">mathiu</a>, <a href=\"https://profiles.wordpress.org/webdevmattcrom\">Matt Cromwell</a>, <a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/mattgeri\">MattGeri</a>, <a href=\"https://profiles.wordpress.org/mboynes\">Matthew Boynes</a>, <a href=\"https://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"https://profiles.wordpress.org/maurobringolf\">maurobringolf</a>, <a href=\"https://profiles.wordpress.org/maximebj\">Maxime BERNARD-JACQUET</a>, <a href=\"https://profiles.wordpress.org/mayukojpn\">Mayo Moriyama</a>, <a href=\"https://profiles.wordpress.org/meetjey\">meetjey</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mendezcode\">mendezcode</a>, <a href=\"https://profiles.wordpress.org/woodent\">Micah Wood</a>, <a href=\"https://profiles.wordpress.org/wpscholar\">Micah Wood</a>, <a href=\"https://profiles.wordpress.org/mdawaffe\">Michael Adams (mdawaffe)</a>, <a href=\"https://profiles.wordpress.org/michaelhull\">Michael Hull</a>, <a href=\"https://profiles.wordpress.org/mnelson4\">Michael Nelson</a>, <a href=\"https://profiles.wordpress.org/mizejewski\">Michele Mizejewski</a>, <a href=\"https://profiles.wordpress.org/jbpaul17\">Migrated to @jeffpaul</a>, <a href=\"https://profiles.wordpress.org/mihaivalentin\">mihaivalentin</a>, <a href=\"https://profiles.wordpress.org/stubgo\">Miina Sikk</a>, <a href=\"https://profiles.wordpress.org/simison\">Mikael Korpela</a>, <a href=\"https://profiles.wordpress.org/mihai2u\">Mike Crantea</a>, <a href=\"https://profiles.wordpress.org/mike-haydon-swo\">Mike Haydon</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikeselander\">Mike Selander</a>, <a href=\"https://profiles.wordpress.org/mikehaydon\">mikehaydon</a>, <a href=\"https://profiles.wordpress.org/mikeyarce\">Mikey Arce</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/milana_cap\">Milana Cap</a>, <a href=\"https://profiles.wordpress.org/gonzomir\">Milen Petrinski - Gonzo</a>, <a href=\"https://profiles.wordpress.org/milesdelliott\">milesdelliott</a>, <a href=\"https://profiles.wordpress.org/mimo84\">mimo84</a>, <a href=\"https://profiles.wordpress.org/0mirka00\">mirka</a>, <a href=\"https://profiles.wordpress.org/mmtr86\">mmtr86</a>, <a href=\"https://profiles.wordpress.org/boemedia\">Monique Dubbelman</a>, <a href=\"https://profiles.wordpress.org/mor10\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/mostafas1990\">Mostafa Soufi</a>, <a href=\"https://profiles.wordpress.org/motleydev\">motleydev</a>, <a href=\"https://profiles.wordpress.org/mpheasant\">mpheasant</a>, <a href=\"https://profiles.wordpress.org/mrmadhat\">mrmadhat</a>, <a href=\"https://profiles.wordpress.org/mrwweb\">mrwweb</a>, <a href=\"https://profiles.wordpress.org/msdesign21\">msdesign21</a>, <a href=\"https://profiles.wordpress.org/mtias\">mtias</a>, <a href=\"https://profiles.wordpress.org/desideveloper\">Muhammad Irfan</a>, <a href=\"https://profiles.wordpress.org/mukesh27\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/munirkamal\">munirkamal</a>, <a href=\"https://profiles.wordpress.org/mmaumio\">Muntasir Mahmud</a>, <a href=\"https://profiles.wordpress.org/mzorz\">mzorz</a>, <a href=\"https://profiles.wordpress.org/nagayama\">nagayama</a>, <a href=\"https://profiles.wordpress.org/nfmohit\">Nahid F. Mohit</a>, <a href=\"https://profiles.wordpress.org/nao\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/napy84\">napy84</a>, <a href=\"https://profiles.wordpress.org/nateconley\">nateconley</a>, <a href=\"https://profiles.wordpress.org/nativeinside\">Native Inside</a>, <a href=\"https://profiles.wordpress.org/greatislander\">Ned Zimmerman</a>, <a href=\"https://profiles.wordpress.org/buzztone\">Neil Murray</a>, <a href=\"https://profiles.wordpress.org/nicbertino\">nic.bertino</a>, <a href=\"https://profiles.wordpress.org/notnownikki\">Nicola Heald</a>, <a href=\"https://profiles.wordpress.org/nielslange\">Niels Lange</a>, <a href=\"https://profiles.wordpress.org/nikschavan\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/nitrajka\">nitrajka</a>, <a href=\"https://profiles.wordpress.org/njpanderson\">njpanderson</a>, <a href=\"https://profiles.wordpress.org/nshki\">nshki</a>, <a href=\"https://profiles.wordpress.org/hideokamoto\">Okamoto Hidetaka</a>, <a href=\"https://profiles.wordpress.org/oskosk\">oskosk</a>, <a href=\"https://profiles.wordpress.org/otto42\">Otto</a>, <a href=\"https://profiles.wordpress.org/pareshradadiya-1\">Paresh Radadiya</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pauldechov\">Paul Dechov</a>, <a href=\"https://profiles.wordpress.org/paulstonier\">Paul Stonier</a>, <a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"https://profiles.wordpress.org/pedromendonca\">Pedro Mendon&#231;a</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pglewis\">pglewis</a>, <a href=\"https://profiles.wordpress.org/tyrannous\">Philipp Bammes</a>, <a href=\"https://profiles.wordpress.org/piersb\">piersb</a>, <a href=\"https://profiles.wordpress.org/wizzard_\">Pieter Daalder</a>, <a href=\"https://profiles.wordpress.org/pilou69\">pilou69</a>, <a href=\"https://profiles.wordpress.org/delawski\">Piotr Delawski</a>, <a href=\"https://profiles.wordpress.org/poena\">poena</a>, <a href=\"https://profiles.wordpress.org/postphotos\">postphotos</a>, <a href=\"https://profiles.wordpress.org/potbot\">potbot</a>, <a href=\"https://profiles.wordpress.org/prtksxna\">Prateek Saxena</a>, <a href=\"https://profiles.wordpress.org/pratikthink\">Pratik K. Yadav</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/psealock\">psealock</a>, <a href=\"https://profiles.wordpress.org/ptasker\">ptasker</a>, <a href=\"https://profiles.wordpress.org/rachelmcr\">Rachel</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rahmohn\">Rahmohn</a>, <a href=\"https://profiles.wordpress.org/rahmon\">Rahmon</a>, <a href=\"https://profiles.wordpress.org/rahulsprajapati\">Rahul Prajapati</a>, <a href=\"https://profiles.wordpress.org/rakshans1\">rakshans1</a>, <a href=\"https://profiles.wordpress.org/ramonopoly\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/lamosty\">Rastislav Lamos</a>, <a href=\"https://profiles.wordpress.org/revgeorge\">revgeorge</a>, <a href=\"https://profiles.wordpress.org/youknowriad\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rianrietveld\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/richtabor\">Rich Tabor</a>, <a href=\"https://profiles.wordpress.org/richsalvucci\">richsalvucci</a>, <a href=\"https://profiles.wordpress.org/riddhiehta02\">Riddhi Mehta</a>, <a href=\"https://profiles.wordpress.org/rileybrook\">rileybrook</a>, <a href=\"https://profiles.wordpress.org/noisysocks\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/sanchothefat\">Robert O\'Rourke</a>, <a href=\"https://profiles.wordpress.org/robertsky\">robertsky</a>, <a href=\"https://profiles.wordpress.org/_dorsvenabili\">Rocio Valdivia</a>, <a href=\"https://profiles.wordpress.org/rohittm\">Rohit Motwani</a>, <a href=\"https://profiles.wordpress.org/magicroundabout\">Ross Wintle</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/ryo511\">ryo511</a>, <a href=\"https://profiles.wordpress.org/sagarprajapati\">Sagar Prajapati</a>, <a href=\"https://profiles.wordpress.org/samikeijonen\">Sami Keijonen</a>, <a href=\"https://profiles.wordpress.org/smyoon315\">Sang-Min Yoon</a>, <a href=\"https://profiles.wordpress.org/tinkerbelly\">sarah semark</a>, <a href=\"https://profiles.wordpress.org/scottmweaver\">Scott Weaver</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sergioestevao\">SergioEstevao</a>, <a href=\"https://profiles.wordpress.org/azchughtai\">Shahjehan Ali</a>, <a href=\"https://profiles.wordpress.org/shaileesheth\">Shailee Sheth</a>, <a href=\"https://profiles.wordpress.org/sharaz\">Sharaz Shahid</a>, <a href=\"https://profiles.wordpress.org/giventofly76\">Shaun sc</a>, <a href=\"https://profiles.wordpress.org/shaunandrews\">shaunandrews</a>, <a href=\"https://profiles.wordpress.org/shooper\">Shawn Hooper</a>, <a href=\"https://profiles.wordpress.org/shenkj\">shenkj</a>, <a href=\"https://profiles.wordpress.org/sikander\">sikander</a>, <a href=\"https://profiles.wordpress.org/pross\">Simon Prosser</a>, <a href=\"https://profiles.wordpress.org/siriokun\">siriokun</a>, <a href=\"https://profiles.wordpress.org/sirjonathan\">sirjonathan</a>, <a href=\"https://profiles.wordpress.org/sirreal\">sirreal</a>, <a href=\"https://profiles.wordpress.org/sisanu\">Sisanu</a>, <a href=\"https://profiles.wordpress.org/skorasaurus\">skorasaurus</a>, <a href=\"https://profiles.wordpress.org/butimnoexpert\">Slushman</a>, <a href=\"https://profiles.wordpress.org/ssousa\">Sofia Sousa</a>, <a href=\"https://profiles.wordpress.org/somtijds\">SOMTIJDS</a>, <a href=\"https://profiles.wordpress.org/soean\">Soren Wrede</a>, <a href=\"https://profiles.wordpress.org/spocke\">spocke</a>, <a href=\"https://profiles.wordpress.org/stagger-lee\">Stagger Lee</a>, <a href=\"https://profiles.wordpress.org/sstoqnov\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stevehenty\">Steve Henty</a>, <a href=\"https://profiles.wordpress.org/charlestonsw\">Store Locator Plus</a>, <a href=\"https://profiles.wordpress.org/strategio\">strategio</a>, <a href=\"https://profiles.wordpress.org/stuartfeldt\">stuartfeldt</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/tacrapo\">tacrapo</a>, <a href=\"https://profiles.wordpress.org/talldan\">talldan</a>, <a href=\"https://profiles.wordpress.org/tammie_l\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/themeroots\">ThemeRoots</a>, <a href=\"https://profiles.wordpress.org/tfrommen\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/thrijith\">Thrijith Thankachan</a>, <a href=\"https://profiles.wordpress.org/hedgefield\">Tim Hengeveld</a>, <a href=\"https://profiles.wordpress.org/timgardner\">timgardner</a>, <a href=\"https://profiles.wordpress.org/timmydcrawford\">Timmy Crawford</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tmatsuur\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tjnowell\">Tom J Nowell</a>, <a href=\"https://profiles.wordpress.org/tlxo\">Toni Laakso</a>, <a href=\"https://profiles.wordpress.org/skithund\">Toni Viemer&#246;</a>, <a href=\"https://profiles.wordpress.org/tobifjellner\">Tor-Bjorn Fjellner</a>, <a href=\"https://profiles.wordpress.org/toro_unit\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/torontodigits\">TorontoDigits</a>, <a href=\"https://profiles.wordpress.org/mirucon\">Toshihiro Kanai</a>, <a href=\"https://profiles.wordpress.org/itowhid06\">Towhidul Islam</a>, <a href=\"https://profiles.wordpress.org/travislopes\">Travis Lopes</a>, <a href=\"https://profiles.wordpress.org/truongwp\">truongwp</a>, <a href=\"https://profiles.wordpress.org/tjfunke001\">Tunji Ayoola</a>, <a href=\"https://profiles.wordpress.org/twoelevenjay\">twoelevenjay</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/vaishalipanchal\">Vaishali Panchal</a>, <a href=\"https://profiles.wordpress.org/vishalkakadiya\">Vishal Kakadiya</a>, <a href=\"https://profiles.wordpress.org/vtrpldn\">Vitor Paladini</a>, <a href=\"https://profiles.wordpress.org/volodymyrkolesnykov\">volodymyrkolesnykov</a>, <a href=\"https://profiles.wordpress.org/walterebert\">Walter Ebert</a>, <a href=\"https://profiles.wordpress.org/warmarks\">warmarks</a>, <a href=\"https://profiles.wordpress.org/webmandesign\">WebMan Design &#124; Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/websupporter\">websupporter</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/earnjam\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/williampatton\">williampatton</a>, <a href=\"https://profiles.wordpress.org/willybahuaud\">Willy Bahuaud</a>, <a href=\"https://profiles.wordpress.org/yahil\">Yahil Madakiya</a>, <a href=\"https://profiles.wordpress.org/yingles\">yingles</a>, <a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/fierevere\">Yui</a>, <a href=\"https://profiles.wordpress.org/youthkee\">Yusuke Takahashi</a>, <a href=\"https://profiles.wordpress.org/ze3kr\">ze3kr</a>, <a href=\"https://profiles.wordpress.org/zebulan\">zebulan</a>, <a href=\"https://profiles.wordpress.org/ziyaddin\">Ziyaddin Sadigov</a>, and <a href=\"https://profiles.wordpress.org/mypacecreator\">のむらけい (Kei Nomura)</a>.\n\n\n\n<p>Finally, thanks to all the community translators who worked on WordPress 5.0. Their efforts bring WordPress 5.0 fully translated to 37 languages at release time, with more on the way.</p>\n\n\n\n<p>If you want to follow along or help out, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> and our <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n\n\n\n<p>Thanks for choosing WordPress!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6328\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress 5.0 RC3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2018/12/wordpress-5-0-rc3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Dec 2018 07:07:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6322\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:388:\"The third release candidate for WordPress 5.0 is now available! WordPress 5.0 will be released on December 6, 2018. This is a big release and needs&#160;your&#160;help—if you haven’t tried 5.0 yet, now is the time! To test WordPress 5.0, you can use the&#160;WordPress Beta Tester&#160;plugin or you can&#160;download the release candidate here&#160;(zip). For details about [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Gary Pendergast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2791:\"\n<p>The third release candidate for WordPress 5.0 is now available!</p>\n\n\n\n<p><strong>WordPress 5.0 will be released on </strong><a href=\"https://make.wordpress.org/core/2018/12/04/new-5-0-target-date/\"><strong>December 6, 2018</strong></a>. This is a big release and needs&nbsp;<em>your</em>&nbsp;help—if you haven’t tried 5.0 yet, now is the time!</p>\n\n\n\n<p>To test WordPress 5.0, you can use the&nbsp;<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin or you can&nbsp;<a href=\"https://wordpress.org/wordpress-5.0-RC3.zip\">download the release candidate here</a>&nbsp;(zip).</p>\n\n\n\n<p>For details about what to expect in WordPress 5.0, please see the&nbsp;<a href=\"https://wordpress.org/news/2018/11/wordpress-5-0-release-candidate/\">first release candidate post</a>.</p>\n\n\n\n<p>This release candidate includes a fix for some scripts not loading on subdirectory installs (<a href=\"https://core.trac.wordpress.org/ticket/45469\">#45469</a>), and user locale settings not being loaded in the block editor (<a href=\"https://core.trac.wordpress.org/ticket/45465\">#45465</a>). Twenty Nineteen has also had a couple of minor tweaks.</p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.0 and update the&nbsp;<em>Tested up to</em>&nbsp;version in the readme to 5.0. If you find compatibility problems, please be sure to post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>&nbsp;so we can figure those out before the final release. An in-depth field guide to developer-focused changes is coming soon on the&nbsp;<a href=\"https://make.wordpress.org/core/\">core development blog</a>. In the meantime, you can review the&nbsp;<a href=\"https://make.wordpress.org/core/tag/5.0+dev-notes/\">developer notes for 5.0</a>.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a>&nbsp;</p>\n\n\n\n<p>If you think you’ve found a bug, you can post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a>&nbsp;in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report,&nbsp;<a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find&nbsp;<a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>WordPress Five Point Oh<br>Is just a few days away!<br>Nearly party time!</em> <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f389.png\" alt=\"🎉\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6322\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"The Month in WordPress: November 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2018/12/the-month-in-wordpress-november-2018/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 03 Dec 2018 17:43:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6318\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:345:\"WordPress 5.0 is almost ready for release, including an all-new content editing experience. Volunteers all across the project are gearing up for the launch and making sure everything is ready. Read on to find out what&#8217;s been happening and how you can get involved. WordPress 5.0 Close to Launch The release date for WordPress 5.0 [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6593:\"\n<p>WordPress 5.0 is almost ready for release, including an all-new content editing experience. Volunteers all across the project are gearing up for the launch and making sure everything is ready. Read on to find out what&#8217;s been happening and how you can get involved.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.0 Close to Launch</h2>\n\n\n\n<p>The release date for WordPress 5.0 has not yet been set, but the second release candidate (RC) <a href=\"https://wordpress.org/news/2018/11/wordpress-5-0-rc2/\">is now available</a>. The final release date will be determined based on feedback and testing of this RC. The Core development team has been posting <a href=\"https://make.wordpress.org/core/2018/12/03/5-0-gutenberg-status-update-dec-3/\">daily updates</a> on the progress of their work on v5.0, with the number of open issues for this release decreasing every day.<br></p>\n\n\n\n<p>The primary feature of this release is <a href=\"https://wordpress.org/gutenberg/\">the new editor</a> that will become the default WordPress experience going forward. A number of people have been seeking more direct feedback from the release leads about the progress of this release, which <a href=\'https://profiles.wordpress.org/matt/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>matt</a> has facilitated by hosting <a href=\"https://make.wordpress.org/core/2018/11/29/gutenberg-5-0-listening-office-hours/\">one-to-one discussions</a> with anyone in the community who wanted to talk with him about it. He has also published <a href=\"https://ma.tt/2018/11/a-gutenberg-faq/\">an extended FAQ</a> covering many of the questions people have been asking.<br></p>\n\n\n\n<p>Alongside the development of the new editor, the Mobile team has been working hard to bring the WordPress mobile apps up to speed. They plan to make a beta version available <a href=\"https://make.wordpress.org/mobile/2018/11/15/gutenberg-in-the-apps-what-to-expect/\">in February 2019</a>.<br></p>\n\n\n\n<p>Want to get involved in developing WordPress Core in 5.0 and beyond? Follow <a href=\"https://make.wordpress.org/core\">the Core team blog</a> and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>New WordPress Support Platform Goes Live</h2>\n\n\n\n<p>WordPress user documentation has long been hosted on the <a href=\"https://codex.wordpress.org/\">WordPress Codex</a>, but for the past couple of years an ambitious project has been underway to move that content to a freshly-built WordPress-based platform. This project, named “HelpHub,” is now live and <a href=\"https://wordpress.org/support/\">the official home of WordPress Support</a>.<br></p>\n\n\n\n<p>There is still plenty of content that needs to be migrated from the Codex to HelpHub, but the initial move is done and the platform is ready to have all WordPress’ user documentation moved across. HelpHub will be the first place for support, encouraging users to find solutions for themselves before posting in the <a href=\"https://wordpress.org/support/forums/\">forums</a>.<br></p>\n\n\n\n<p>Want to get involved in populating HelpHub with content, or with its future development? Follow <a href=\"https://make.wordpress.org/docs/\">the Documentation team blog</a> and join the #docs channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Spanish WordPress Community Pushes Translations Forward</h2>\n\n\n\n<p>The WordPress community in Spain has been hard at work making sure as much of the WordPress project as possible is available in Spanish. <a href=\"https://es.wordpress.org/2018/11/07/logros-equipo-traducciones-wordpress-espana/\">They have recently translated more of the project than ever</a> — including WordPress Core, WordPress.org, the mobile apps and the top 120 plugins in the Directory.<br></p>\n\n\n\n<p>This achievement has largely been possible due to the fact that <a href=\"https://make.wordpress.org/polyglots/teams/?locale=es_ES\">the Spanish translation team</a> has over 2,500 individuals contributing to it, making it the largest translation team across the whole project. <br></p>\n\n\n\n<p>Want to get involved in translating WordPress into your local language? You can <a href=\"https://translate.wordpress.org/\">jump straight into translations</a>, follow <a href=\"https://make.wordpress.org/polyglots/\">the Polyglots team blog</a> and join the #polyglots channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>All volunteer teams have checked in with their <a href=\"https://wordpress.org/news/2018/11/quarterly-updates-q3-2018/\">latest quarterly updates</a>.</li><li>The WordPress Support Team <a href=\"https://make.wordpress.org/support/2018/11/new-volunteer-orientation-for-wp-support-contributors-dec-9/\">is hosting an orientation</a> for new Support volunteers on December 9.</li><li><a href=\"https://2018.us.wordcamp.org/tickets/\">Tickets are now available</a> to watch the WordCamp US livestream for free.</li><li>WordPress Core <a href=\"https://core.trac.wordpress.org/ticket/45287\">has switched to a WP-CLI command</a> for generating localization files.</li><li>WordPress Coding Standards v1.2.0 <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/releases/tag/1.2.0\">has been released</a> with some really useful improvements.</li><li>The first ever <a href=\"https://2019.nordic.wordcamp.org/\">WordCamp Nordic</a> is taking place on March 7-8, 2019 with ticket sales now open.</li><li>The WordCamp Incubator program is going very well this year — <a href=\"https://make.wordpress.org/community/2018/11/27/wordcamp-incubator-2018-update-thread-november-edition/\">you can see the latest updates here</a>.</li><li>The Mobile Team is looking for testers for the upcoming v11.3 release of the WordPress mobile apps on <a href=\"https://make.wordpress.org/mobile/2018/11/21/call-for-testing-wordpress-for-android-11-3/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2018/11/21/call-for-testing-wordpress-for-ios-11-3/\">iOS</a>.</li><li>The WordCamp Europe team is looking for local communities to <a href=\"https://2019.europe.wordcamp.org/2018/11/29/call-for-host-city/\">apply to be the host city</a> for the 2020 event.</li></ul>\n\n\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em><br></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6318\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress 5.0 RC2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2018/11/wordpress-5-0-rc2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Nov 2018 23:16:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6287\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:332:\"The second release candidate for WordPress 5.0 is now available! This is an important milestone, as we near the release of WordPress 5.0. A final release date will be announced soon, based on feedback from this release candidate. Things are appearing very stable and we hope to announce a date soon. This is a big release [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Gary Pendergast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3296:\"\n<p>The second release candidate for WordPress 5.0 is now available!</p>\n\n\n\n<p>This is an important milestone, as we near the release of WordPress 5.0. A final release date will be announced soon, based on feedback from this release candidate. Things are appearing very stable and we hope to announce a date soon. This is a big release and needs <em>your</em> help—if you haven’t tried 5.0 yet, now is the time! </p>\n\n\n\n<p>To test WordPress 5.0, you can use the&nbsp;<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin or you can&nbsp;<a href=\"https://wordpress.org/wordpress-5.0-RC2.zip\">download the release candidate here</a>&nbsp;(zip).</p>\n\n\n\n<p>For details about what to expect in WordPress 5.0, please see the <a href=\"https://wordpress.org/news/2018/11/wordpress-5-0-release-candidate/\">previous release candidate post</a>.</p>\n\n\n\n<h2>Significant changes</h2>\n\n\n\n<ul><li>We stopped rendering&nbsp;<em>AdminNotices</em>&nbsp;compatibility component, as this previous attempt at backward compatibility was bringing in numerous incompatible banners and notices from plugins.</li><li>An update to the parser to better deal with malformed HTML that could cause a loop. We&#8217;re only aware of this in the wild being triggered once in the <a href=\"https://gutenstats.blog/\">over a million posts</a> made with Gutenberg, but it caused a loop so we wanted to fix for RC2.</li></ul>\n\n\n\n<h2>Cosmetic and minor changes in RC2</h2>\n\n\n\n<ul><li>Accessibility: Simplify sidebar tabs&nbsp;aria-labels.</li><li>Make the&nbsp;Image&nbsp;Link URL field readonly.</li><li>Internationalization: Merge&nbsp;similar text strings that differed only in capitalization.</li><li>CSS: Improve block preview&nbsp;styling.</li><li>CSS: Fix&nbsp;visual issues&nbsp;with&nbsp;Button&nbsp;block text wrap.</li><li>Fix&nbsp;getSelectedBlockClientId selector.</li><li>Fix&nbsp;Classic&nbsp;block&nbsp;not showing galleries on a grid.</li><li>Fix an issue where the block toolbar&nbsp;would cause an image to jump&nbsp;downwards when the&nbsp;<em>wide</em>&nbsp;or&nbsp;<em>full</em>&nbsp;alignments were activated.</li><li>Move editor specific styles&nbsp;from style.scss to editor.scss in&nbsp;Cover&nbsp;block.</li><li>Fix modals&nbsp;in Microsoft Edge browser.</li><li>Fix Microsoft IE11 focus loss&nbsp;after TinyMCE init.&nbsp;Add&nbsp;IE check.</li><li>Fix Microsoft IE11 input when mounting TinyMCE.</li><li>Change @package names&nbsp;to WordPress.</li></ul>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a>&nbsp;</p>\n\n\n\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<pre class=\"wp-block-verse\"><em>RC bittersweet.<br>We welcome in Gutenberg,<br>Vale Gutenbeard.</em></pre>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6287\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 5.0 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2018/11/wordpress-5-0-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 23 Nov 2018 09:46:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"5.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6257\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:323:\"The first release candidate for WordPress 5.0 is now available! This is an important milestone, as we near the release of WordPress 5.0.&#160;The WordPress 5.0 release date has shifted from the 27th to give more time for the RC to be fully tested. A final release date will be announced soon, based on feedback on [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matias Ventura\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6009:\"\n<p>The first release candidate for WordPress 5.0 is now available!</p>\n\n\n\n<p>This is an important milestone, as we near the release of WordPress 5.0.&nbsp;<strong>The WordPress 5.0 release date has shifted from the 27th to give more time for the RC to be fully tested</strong>. A final release date will be announced soon, based on feedback on the RC. This is a big release and needs <em>your</em> help—if you haven’t tried 5.0 yet, now is the time!&nbsp;</p>\n\n\n\n<p>To test WordPress 5.0, you can use the&nbsp;<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin or you can&nbsp;<a href=\"https://wordpress.org/wordpress-5.0-RC1.zip\">download the release candidate here</a>&nbsp;(zip).</p>\n\n\n\n<h2>What&#8217;s in WordPress 5.0?</h2>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/11/Gutenberg-3.png?resize=632%2C316&#038;ssl=1\" alt=\"Screenshot of the new block editor interface.\" class=\"wp-image-6271\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2018/11/Gutenberg-3.png?resize=1024%2C512&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2018/11/Gutenberg-3.png?resize=300%2C150&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2018/11/Gutenberg-3.png?resize=768%2C384&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2018/11/Gutenberg-3.png?w=1264&amp;ssl=1 1264w, https://i1.wp.com/wordpress.org/news/files/2018/11/Gutenberg-3.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /><figcaption>The new block-based post editor.</figcaption></figure>\n\n\n\n<p>WordPress 5.0 introduces the <a href=\"https://wordpress.org/gutenberg/\">new block-based post editor</a>. This is the first step toward an exciting new future with a streamlined editing experience across your site. You’ll have more flexibility with how content is displayed, whether you are building your first site, revamping your blog, or write code for a living.</p>\n\n\n\n<p>The block editor is&nbsp;<a href=\"https://gutenstats.blog/\">used on over a million sites</a>, we think it&#8217;s ready to be used on all WordPress sites. We do understand that some sites might need some extra time, though. If that&#8217;s you, please install the <a href=\"https://wordpress.org/plugins/classic-editor/\">Classic Editor plugin</a>, you&#8217;ll continue to use the classic post editor when you upgrade to WordPress 5.0.</p>\n\n\n\n<p>Twenty Nineteen is WordPress&#8217; new default theme, it&nbsp;features custom styles for the blocks available by default in 5.0.&nbsp;Twenty Nineteen is designed to work for a wide variety of use cases. Whether you’re running a photo blog, launching a new business, or supporting a non-profit, Twenty Nineteen is flexible enough to fit your needs.</p>\n\n\n\n<p>The block editor is a big change, but that&#8217;s not all. We&#8217;ve made some smaller changes as well,&nbsp; including:</p>\n\n\n\n<ul><li>All of the previous default themes, from Twenty Ten through to Twenty Seventeen, have been updated to support the block editor.</li><li>You can improve the accessibility of the content you write, now that <a href=\"https://core.trac.wordpress.org/ticket/30421\">simple ARIA labels</a>&nbsp;can be saved in posts and pages.</li><li>WordPress 5.0 officially supports the upcoming PHP 7.3 release: if you&#8217;re using an older version, we encourage you to <a href=\"https://wordpress.org/support/upgrade-php/\">upgrade PHP</a>&nbsp;on your site.</li><li>Developers can now add translatable strings directly to your JavaScript code, using the new <a href=\"https://make.wordpress.org/core/2018/11/09/new-javascript-i18n-support-in-wordpress/\">JavaScript language packs</a>.</li></ul>\n\n\n\n<p>You can read more about the fixes and changes since  Beta 5 <a href=\"https://make.wordpress.org/core/2018/11/20/whats-new-in-gutenberg-20th-november/\">in the last update post</a>.</p>\n\n\n\n<p>For more details about what’s new in version 5.0, check out the&nbsp;<a href=\"https://wordpress.org/news/2018/10/wordpress-5-0-beta-1/\">Beta 1</a>,&nbsp;<a href=\"https://wordpress.org/news/2018/10/wordpress-5-0-beta-2/\">Beta 2</a>,&nbsp;<a href=\"https://wordpress.org/news/2018/11/wordpress-5-0-beta-3/\">Beta 3</a>, <a href=\"https://wordpress.org/news/2018/11/wordpress-5-0-beta-4/\">Beta 4</a> and&nbsp;<a href=\"https://wordpress.org/news/2018/11/wordpress-5-0-beta-5/\">Beta 5</a>&nbsp;blog posts.</p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.0 and update the&nbsp;<em>Tested up to</em>&nbsp;version in the readme to 5.0. If you find compatibility problems, please be sure to post to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a> so we can figure those out before the final release. An in-depth field guide to developer-focused changes is coming soon on the&nbsp;<a href=\"https://make.wordpress.org/core/\">core development blog</a>. In the meantime, you can review the&nbsp;<a href=\"https://make.wordpress.org/core/tag/5.0+dev-notes/\">developer notes for 5.0</a>.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a>&nbsp;</p>\n\n\n\n<p><strong><em>If you think you’ve found a bug</em></strong><em>, you can post to the&nbsp;</em><a href=\"https://wordpress.org/support/forum/alphabeta\"><em>Alpha/Beta area</em></a><em>&nbsp;in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report,&nbsp;</em><a href=\"https://make.wordpress.org/core/reports/\"><em>file one on WordPress Trac</em></a><em>, where you can also find&nbsp;</em><a href=\"https://core.trac.wordpress.org/tickets/major\"><em>a list of known bugs</em></a><em>.</em></p>\n\n\n\n<p style=\"background-color:#f9f4e8\" class=\"has-background has-medium-font-size\"><em>Ruedan los bloques<br>Contando vivos cuentos<br>Que se despiertan</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"6257\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 09 Jan 2019 19:14:42 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Wed, 09 Jan 2019 18:56:44 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20130911133210\";}','no'),(1114,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1547104482','no'),(1115,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1547061282','no'),(1116,'_transient_timeout_feed_4cf2927c306176c13771b3ef386d2f5e','1547104482','no'),(1117,'_transient_feed_4cf2927c306176c13771b3ef386d2f5e','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:28:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"WPBeginner\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://www.wpbeginner.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Beginner\'s Guide for WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Jan 2019 18:29:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wordpress.org/?v=4.9.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:3:{i:0;a:6:{s:4:\"data\";s:54:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"How to Register a Domain Name (+ simple tip to get it for FREE)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://www.wpbeginner.com/beginners-guide/how-to-register-a-domain-name-simple-tip-to-get-it-for-free/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://www.wpbeginner.com/beginners-guide/how-to-register-a-domain-name-simple-tip-to-get-it-for-free/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Jan 2019 10:51:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:15:\"Beginners Guide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"domain name\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:12:\"domain names\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:22:\"how to buy domain name\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:22:\"register a domain name\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"http://www.wpbeginner.com/?p=52938\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:699:\"<p>Do you want to start a blog or a new online business in 2019? If you do, then you&#8217;ll need to register a domain name. The first step towards building a website is to find a good domain name and register it. In this article,&#8230;&#160;<strong><a href=\"https://www.wpbeginner.com/beginners-guide/how-to-register-a-domain-name-simple-tip-to-get-it-for-free/\">Read More &#187;</a></strong></p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.wpbeginner.com/beginners-guide/how-to-register-a-domain-name-simple-tip-to-get-it-for-free/\">How to Register a Domain Name (+ simple tip to get it for FREE)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.wpbeginner.com\">WPBeginner</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Editorial Staff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:23252:\"<p>Do you want to <a href=\"https://www.wpbeginner.com/start-a-wordpress-blog/\" title=\"Ultimate Guide: How to Start a WordPress Blog (Step by Step)\">start a blog</a> or a new online business in 2019? If you do, then you&#8217;ll need to register a domain name. </p>\n<p>The first step towards building a website is to find a good domain name and register it. In this article, we will show you how to register a domain name, step by step. We will also share a tip on how you can register a domain name for free. </p>\n<p><img title=\"How to register your own domain name and how to get one for free\" src=\"https://cdn.wpbeginner.com/wp-content/uploads/2019/01/registerdomainname.png\" alt=\"How to register your own domain name and how to get one for free\" width=\"550\" height=\"340\" class=\"alignnone size-full wp-image-59219\" /></p>\n<p>Since this is a comprehensive guide on how to register a domain name, we have created a table of content, so you can easily skip to the section that you&#8217;re most interested in:</p>\n<ul>\n<li><a href=\"#whatisadomainname\">What is a domain name?</a></li>\n<li><a href=\"#whenregisterdomainname\">When is the right time to register a domain name?</a></li>\n<li><a href=\"#howtochoosedomainname\">How to choose the best domain name?</a></li>\n<li><a href=\"#freedomainname\">How to register a domain name (for free)</a></li>\n<li><a href=\"#domaindotcom\">How to register a domain with Domain.com (25% off)</a></li>\n<li><a href=\"#godaddy\">How to register a domain with GoDaddy</a></li>\n</ul>\n<p>Before we get started, let’s cover the basics so we&#8217;re on the same page.</p>\n<h4 id=\"whatisadomainname\">What is a Domain Name?</h4>\n<p>A domain name is the address of your website that people type in the browser to visit your website. For example, wpbeginner.com.</p>\n<p>In simple term, if your website was a house, then your domain name will be its address.</p>\n<p>The whole internet is a giant network of computers. Each computer is assigned a number which is called an IP address, and it looks like this:</p>\n<p>66.249.66.1</p>\n<p>Now, this is not an easy to remember address. Imagine if you had to use this kind of addresses to visit your favorite websites.</p>\n<p>To fix this problem, domain names were invented. </p>\n<p>Domain names can have alphabets and numbers, which helps business owners create brandable names for their website’s address.</p>\n<p><img title=\"How domain names work\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2019/01/howdomainswork.png\" alt=\"How domain names work\" width=\"550\" height=\"525\" class=\"alignnone size-full wp-image-59202\" /></p>\n<p>To learn more about domain names, see our beginner’s guide on <a href=\"https://www.wpbeginner.com/beginners-guide/beginners-guide-what-is-a-domain-name-and-how-do-domains-work/\" title=\"Beginner’s Guide: What is a Domain Name and How Do Domains Work?\">domain names and how do they work</a>.</p>\n<h4 id=\"whenregisterdomainname\">When Do You Need to Register a Domain Name?</h4>\n<p>Each day, over 46,000+ new .com domain names were registered during the third quarter of 2018. </p>\n<p>Currently, there are over 140 million .com domain names already registered.</p>\n<p>This means that all the good domain names are being registered as we speak. Chances are that someone may register a domain name that you&#8217;re thinking of, so it&#8217;s smart to register a domain name as soon as you think of an idea.</p>\n<p>This is why all smart entrepreneurs proactively register domain names even before launching a business. </p>\n<p>Domain names are cheap, and you can register them for a year. If you decide to not pursue the <a href=\"https://www.wpbeginner.com/beginners-guide/proven-and-easy-to-start-online-business-ideas-that-make-money/\" title=\"27 “Proven and Easy to Start” Online Business Ideas that Make Money\">online business idea</a>, then you can let them expire.</p>\n<p>The bottom line is, if you are serious about building a business, then you should register a domain name right away. </p>\n<p>It will help you protect your brand&#8217;s identity, business name, and even future business ideas.</p>\n<p><strong>How much does a domain name cost?</strong></p>\n<p>Normally, a .com domain name costs $14.99 / year. The cost of a domain varies based on each different extension. Some are even more expensive than this. </p>\n<p>We don’t recommend using anything but .com domains because everybody remembers a .com domain, and your smartphone keyboards have a pre-built key for .com.</p>\n<p><strong>Do I Need a Website to Register a Domain Name?</strong></p>\n<p>No, you do not need a website to register a domain name. You can register a domain name and make a website later. You can also register a domain name and setup a temporary website or <a href=\"https://www.wpbeginner.com/plugins/how-to-create-beautiful-coming-soon-pages-in-wordpress-with-seedprod/\" title=\"How to Create Beautiful Coming Soon Pages in WordPress with SeedProd\">coming soon page with SeedProd</a>.</p>\n<p>A lot of entrepreneurs treat domain names like digital real-estate, so they register a good domain name and hold it for the right buyer to purchase it from them for profit.</p>\n<h4 id=\"howtochoosedomainname\">How to Choose The Best Domain Name?</h4>\n<p>Domain names play a very important role in your website’s identity and success. This is why it&#8217;s important for you to carefully think about the domain name you choose. </p>\n<p>However, it’s also important to not overthink it otherwise you will never get past the research phase.</p>\n<p>Following are some general tips to keep in mind when searching for a domain name. </p>\n<ul>\n<li>Make sure that your domain name is easy to pronounce, spell, and as short as possible.</li>\n<li>Stick with the .com extension because most users find them easier to remember than any other domain extensions.</li>\n<li>Use your keywords and brand name in the domain name search. For example, stargardeninghouston.com is more search engine friendly, than stargardeningcompany.com</li>\n<li>Do not use numbers or hyphens in your domain name. It makes them harder to pronounce and difficult to remember.</li>\n</ul>\n<p>Need more advice? See our expert tips on <a href=\"https://www.wpbeginner.com/beginners-guide/tips-and-tools-to-pick-the-best-domain-for-your-blog/\" title=\"How to Choose the Best Domain Name (8 Tips and Tools)\">finding the best domain name</a> for your website. </p>\n<p>You can also use a domain name generator like <a href=\"https://www.nameboy.com/\" title=\"Nameboy\" rel=\"noopener\" target=\"_blank\">Nameboy</a> to speed up your search.</p>\n<h4>How to Register a Domain Name (Step by Step)</h4>\n<p>You can register a domain name from any of the <a href=\"https://www.wpbeginner.com/beginners-guide/how-to-choose-the-best-domain-registrar/\" title=\"How to Choose the Best Domain Registrar in 2019 (Compared)\">top domain registrars</a> that are authorized by ICANN to register domain names.</p>\n<p>Since there are so many different registrars, we will cover the three most popular ways to register a domain name, and you can choose the one that best fits your need.</p>\n<ol>\n<li><a href=\"#freedomainname\">How to register a domain name for free</a></li>\n<li><a href=\"#domaindotcom\">How to register a domain with Domain.com</a></li>\n<li><a href=\"#godaddy\">How to register a domain name with GoDaddy</a></li>\n</ol>\n<h4 id=\"freedomainname\">1. How to Register a Domain Name for Free</h4>\n<p>If you want to register a domain name to <a href=\"https://www.wpbeginner.com/start-a-wordpress-blog/\" title=\"Ultimate Guide: How to Start a WordPress Blog (Step by Step)\">start a blog</a> or <a href=\"https://www.wpbeginner.com/guides/\" title=\"Ultimate Guide: How to Make a Website in 2018 – Step by Step Guide (Free)\">make a website</a>, then this is the best option for you.</p>\n<p>Normally, a domain name costs $14.99 / year and website hosting plans start from $7.99 / month. This is a lot of money if you are just starting out. </p>\n<p>Luckily, <a title=\"Bluehost\" href=\"https://www.wpbeginner.com/refer/bluehost/\" rel=\"nofollow\" target=\"_blank\">Bluehost</a> has agreed to offer our users a <strong>free domain name</strong>, SSL Certificate, and 60% discount on web hosting. </p>\n<p>Basically, you can pay $2.75 per month for web hosting, and you will get a domain name for free, so you can start your website without a lot of money.</p>\n<p><a title=\"Bluehost\" href=\"https://www.wpbeginner.com/refer/bluehost/\" rel=\"nofollow\" class=\"orangecta\" target=\"_blank\">&rarr; Click Here to Get Free Domain with Bluehost &larr;</a>   </p>\n<p>Bluehost is one of the biggest web hosting companies in the world. They are in business since 2003 and host more than 2 million websites. Not to mention, they&#8217;re officially recommended by WordPress.</p>\n<p>To get started, you need to visit the <a title=\"Bluehost\" href=\"https://www.wpbeginner.com/refer/bluehost/\" rel=\"nofollow\" target=\"_blank\">Bluehost website</a> and click on the Get Started button. </p>\n<p><img title=\"Get started with Bluehost\" src=\"https://cdn.wpbeginner.com/wp-content/uploads/2019/01/bh-start-1.jpg\" alt=\"Get started with Bluehost\" width=\"550\" height=\"339\" class=\"alignnone size-full wp-image-59204\" /></p>\n<p>This will bring you to the pricing page. Their Basic and Plus plans are popular among our users. </p>\n<p><img title=\"Bluehost pricing\" src=\"https://cdn.wpbeginner.com/wp-content/uploads/2019/01/bh-pricing.jpg\" alt=\"Bluehost pricing\" width=\"550\" height=\"314\" class=\"alignnone size-full wp-image-59205\" /></p>\n<p>Click on the &#8216;Select&#8217; button below a plan to continue. </p>\n<p>On the next page, you will be asked to choose a domain name. Simply type the domain name in the &#8220;New Domain&#8221; box because that will get you a free domain name.</p>\n<p><img title=\"Select domain name you want to register\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2019/01/selectdomainname-1.png\" alt=\"Select domain name you want to register\" width=\"550\" height=\"290\" class=\"alignnone size-full wp-image-59206\" /></p>\n<p>If the domain name you entered is available, then you will be taken to the signup page. From here you need to enter your account information like name, address, email, etc. </p>\n<p>Below the account information, you will notice some hosting extras. We don&#8217;t recommend buying them, so you can safely uncheck them for now. If you feel that you need them, then you can always add them later. </p>\n<p><img title=\"Uncheck hosting extras\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2019/01/hostingextras-1.png\" alt=\"Uncheck hosting extras\" width=\"550\" height=\"297\" class=\"alignnone size-full wp-image-59207\" /></p>\n<p>After that, you can enter your payment information to finish the purchase. </p>\n<p><a rel=\"nofollow\" target=\"_blank\" title=\"Bluehost\" href=\"https://www.wpbeginner.com/refer/bluehost/\" data-shortcode=\"true\">Bluehost</a> will now register your domain name, set up your hosting account and send you an email with a link to your hosting control panel. </p>\n<p>Since you need both a domain name and web hosting to start any type of website, it makes a lot of sense to purchase them together, so you can get the domain name for free.</p>\n<p>If for some reason you don&#8217;t want to use Bluehost to get a free domain name, then you can use <a title=\"GreenGeeks\" href=\"https://www.wpbeginner.com/refer/greengeeks/\" rel=\"nofollow\" target=\"_blank\">GreenGeeks</a> or <a title=\"InMotion Hosting\" href=\"https://www.wpbeginner.com/refer/inmotionhosting/\" rel=\"nofollow\" target=\"_blank\">InMotion Hosting</a>. Both of these companies are also offering our readers a free domain name with web hosting.</p>\n<p>Related: See the <a href=\"https://www.wpbeginner.com/beginners-guide/whats-the-difference-between-domain-name-and-web-hosting-explained/\" title=\"What’s the Difference Between Domain Name and Web Hosting (Explained)\">difference between domain and web hosting</a> to understand why you need both to build a website. </p>\n<h4 id=\"domaindotcom\">2. How to Register a Domain Name with Domain.com</h4>\n<p>If you only want to register a domain name at the moment without creating a website, then <a title=\"Domain.com\" href=\"https://www.wpbeginner.com/refer/domain-com/\" rel=\"nofollow\" target=\"_blank\">Domain.com</a> is your best option. </p>\n<p>It offers an easy way to manage your domain name without creating a website. </p>\n<p>Once you are ready, you can just point the domain name to your preferred <a href=\"https://www.wpbeginner.com/wordpress-hosting/\" title=\"How to Choose the Best WordPress Hosting?\">WordPress hosting company</a>.</p>\n<p>First, you need to visit the <a title=\"Domain.com\" href=\"https://www.wpbeginner.com/refer/domain-com/\" rel=\"nofollow\" target=\"_blank\">Domain.com website</a> and search for your desired domain name. </p>\n<p><a title=\"Domain.com\" href=\"https://www.wpbeginner.com/refer/domain-com/\" rel=\"nofollow\" target=\"_blank\"><img title=\"Search for domain name on Domain.com\" src=\"https://cdn.wpbeginner.com/wp-content/uploads/2019/01/searchdomaincom.jpg\" alt=\"Search for domain name on Domain.com\" width=\"550\" height=\"287\" class=\"alignnone size-full wp-image-59223\" /></a></p>\n<p>If your desired domain name is available, then it will be automatically added to your cart. </p>\n<p>You can adjust the registration period to 1 year. You can either choose to keep or remove the privacy protection. Removing it will reduce your domain registration cost. </p>\n<p>Domain.com is offering WPBeginner readers a 25% discount, and our <a href=\"https://www.wpbeginner.com/deals/domain-com-coupon/\" title=\"Domain.com Coupon\">domain.com coupon</a> should be automatically applied.</p>\n<p><img title=\"Add domain name to cart\" src=\"https://cdn.wpbeginner.com/wp-content/uploads/2019/01/reviewcart.png\" alt=\"Add domain name to cart\" width=\"550\" height=\"328\" class=\"alignnone size-full wp-image-59224\" /></p>\n<p>Click on the continue button to check out. </p>\n<p>On the checkout page, you can review your order and click on the &#8216;Proceed to billing&#8217; button. </p>\n<p><img title=\"Proceed to billing section\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2019/01/proceedbilling.png\" alt=\"Proceed to billing section\" width=\"550\" height=\"260\" class=\"alignnone size-full wp-image-59225\" /></p>\n<p>Next, you need will be asked to enter your account and payment information to finish the domain purchase.</p>\n<p><img title=\"Complete your domain registration\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2019/01/finishpurchase.png\" alt=\"Complete your domain registration\" width=\"550\" height=\"264\" class=\"alignnone size-full wp-image-59226\" /></p>\n<p>Domain.com will now register your domain name, and it will send you an email with the link to your domain control panel. </p>\n<h4 id=\"godaddy\">3. How to Register a Domain Name with GoDaddy</h4>\n<p><a rel=\"nofollow\" target=\"_blank\" title=\"Godaddy\" href=\"https://www.wpbeginner.com/refer/godaddy/\" data-shortcode=\"true\">Godaddy</a> is the largest domain name registrar in the world. They currently manage over 77 million domain names for 18 million users from around the world.  </p>\n<p>They offer an easy domain control panel, which allows you to point your domain to any hosting provider when you are ready to build a website. </p>\n<p>Here is how to register a domain name with GoDaddy (step by step). </p>\n<p>First, you need to visit the <a title=\"Godaddy\" href=\"https://www.wpbeginner.com/refer/godaddy/\" rel=\"nofollow\" target=\"_blank\">GoDaddy website</a> and enter the domain name you want to register in the search box. </p>\n<p><img title=\"Search domain name on GoDaddy\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2019/01/searchdomaingodaddy.png\" alt=\"Search domain name on GoDaddy\" width=\"550\" height=\"242\" class=\"alignnone size-full wp-image-59208\" /></p>\n<p>If your domain name is available, then you will see a success message with your domain name listed on top. You can now go ahead and add it to the cart. </p>\n<p><img title=\"Add domain name to cart\" src=\"https://cdn.wpbeginner.com/wp-content/uploads/2019/01/adddomaincart.png\" alt=\"Add domain name to cart\" width=\"550\" height=\"284\" class=\"alignnone size-full wp-image-59209\" /></p>\n<p>Next, click on the continue to cart button to checkout. </p>\n<p>GoDaddy will now show you some additional services that you can purchase with your domain name. You can skip those by selecting &#8216;No thanks&#8217; and click on the continue button. </p>\n<p><img title=\"Continue checkout\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2019/01/continuecheckout.png\" alt=\"Continue checkout\" width=\"550\" height=\"273\" class=\"alignnone size-full wp-image-59210\" /></p>\n<p>On the next page, you will see your domain name and its registration period. You can change the registration period to up to 10 years if you want. </p>\n<p>However, we don&#8217;t recommend that. You can always renew your domain name before it expires, so if you want to save money, then you can select just 1 year registration period. </p>\n<p><img title=\"Finish your domain registration\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2019/01/domaincart.png\" alt=\"Finish your domain registration\" width=\"550\" height=\"327\" class=\"alignnone size-full wp-image-59211\" /></p>\n<p>You will need to create a Godaddy account to proceed. </p>\n<p>After you have created an account, you will be able to enter your billing address and make a payment for your domain name. </p>\n<p>GoDaddy will now register your domain name, and they will send you an email with a link to your domain control panel. </p>\n<p><strong>Pro Tip:</strong> You should make sure that auto-renew on your domain is turned on, so Godaddy can automatically bill your account and renew your domain name. This way you won&#8217;t lose your domain if you forget to renew it.  </p>\n<h4>Domain Name Registration FAQs</h4>\n<p>Since we have helped over 200,000 people start a website, we have gotten just about every question you can possibly think of. Below are the answers to some of the top domain name questions:</p>\n<p><strong>Which is the best domain name registrar?</strong></p>\n<p>We believe that <a title=\"Domain.com\" href=\"https://www.wpbeginner.com/refer/domain-com/\" rel=\"nofollow\" target=\"_blank\" >Domain.com</a> is the best registrar right now because they have the features you need, and they&#8217;re offering a 25% off discount.</p>\n<p>However it&#8217;s a smarter money decision to get a free domain with web hosting like <a title=\"Bluehost\" href=\"https://www.wpbeginner.com/refer/bluehost/\" rel=\"nofollow\" target=\"_blank\">Bluehost</a> because it saves you time and money. </p>\n<p>You can always transfer your domain name to another <a href=\"https://www.wpbeginner.com/beginners-guide/how-to-choose-the-best-domain-registrar/\" title=\"How to Choose the Best Domain Registrar in 2019 (Compared)\">popular domain name registrar</a> if you&#8217;re not happy with your existing provider.</p>\n<p><strong>Which domain extension I should buy?</strong></p>\n<p>You should always stick to .com domain names. They are the easiest to remember, and most mobile devices have a dedicated .com key in their keyboards. For more details, see our article on <a href=\"https://www.wpbeginner.com/beginners-guide/com-vs-net-whats-the-difference-between-domain-extensions/\" title=\"Com vs Net – What’s the Difference Between Domain Extensions\">the difference between domain name extensions</a>.</p>\n<p><strong>Should I register new domain name extensions?</strong></p>\n<p>Apart from the most common .com, .net, and .org, there are dozens more domain name extensions available. However, these new domain extensions are hard to remember and difficult to brand. To learn more, see our article on <a href=\"https://www.wpbeginner.com/beginners-guide/should-you-choose-a-new-domain-extension-for-your-website/\" title=\"Should You Choose a New Domain Extension for Your Website?\">choosing a new domain extension</a> for your website. </p>\n<p><strong>How can I buy a domain name permanently?</strong></p>\n<p>You cannot buy a domain name permanently. Domain name registration is done on a yearly basis. However, you can pre-pay for up to 10 years which guarantees that you will have a domain name for 10 years.</p>\n<p><strong>What happens to my domain name once its registration expires?</strong> </p>\n<p>Unless you renew your domain name, it will automatically expire after the registration period you have paid for. Some domain name companies offer a grace period to renew your registration, but it is not guaranteed, and you can lose control of your domain name if you let it expire. </p>\n<p><strong>How do I renew my domain name?</strong> </p>\n<p>You can renew your domain name from your domain control panel. We strongly recommend that you turn on auto-renew feature to automatically renew your domain name. You can always turn it off if you decide not to keep a domain name. </p>\n<p>Even though your domain registrar would remind you to renew your domain registration before it expires, you may miss those emails and lose control of your domain name. </p>\n<p><strong>How can I reserve a domain name without buying it?</strong></p>\n<p>There is no way to reserve a domain name without purchasing it. You have to buy it if you want to reserve it. Considering the low cost of a domain name, it&#8217;s a small investment for a business.</p>\n<p><strong>Is there a way to buy an existing domain name?</strong></p>\n<p>Yes, you can use brokerage like Sedo.com to potentially acquire an existing domain name. However, it&#8217;s not guaranteed that you will get the domain name that you want because the seller may not want to sell it or ask for an outrageous price.</p>\n<p>You can also purchase premium domains from a premium domain broker like <a title=\"BuyDomains\" href=\"https://www.wpbeginner.com/refer/buydomains/\" rel=\"nofollow\" target=\"_blank\" >BuyDomains</a>.</p>\n<p>We hope this article helped you learn how to register a domain name for your website. You may also want to see our tips on <a href=\"https://www.wpbeginner.com/beginners-guide/make-money-online/\" title=\"25 Legit Ways to Make Money Online Blogging with WordPress\">how to make money online</a> with your new domain name and/or <a href=\"https://www.wpbeginner.com/beginners-guide/how-to-setup-a-professional-email-address-with-gmail-and-google-apps/\" title=\"How to Setup a Professional Email Address with Google Apps and Gmail\">how to create a professional email address</a> with your domain. </p>\n<p>If you liked this article, then please subscribe to our <a href=\"http://youtube.com/wpbeginner?sub_confirmation=1\" title=\"WPBeginner on YouTube\" target=\"_blank\" rel=\"nofollow\">YouTube Channel</a> for WordPress video tutorials. You can also find us on <a href=\"http://twitter.com/wpbeginner\" title=\"WPBeginner on Twitter\" target=\"_blank\" rel=\"nofollow\">Twitter</a> and <a href=\"https://www.facebook.com/wpbeginner\" title=\"WPBeginner on Facebook\" target=\"_blank\" rel=\"nofollow\">Facebook</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.wpbeginner.com/beginners-guide/how-to-register-a-domain-name-simple-tip-to-get-it-for-free/\">How to Register a Domain Name (+ simple tip to get it for FREE)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.wpbeginner.com\">WPBeginner</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"https://www.wpbeginner.com/beginners-guide/how-to-register-a-domain-name-simple-tip-to-get-it-for-free/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:51:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"Squarespace vs WordPress – Which one is better? (Pros and Cons)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://www.wpbeginner.com/opinion/squarespace-vs-wordpress-which-one-is-better-pros-and-cons/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://www.wpbeginner.com/opinion/squarespace-vs-wordpress-which-one-is-better-pros-and-cons/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Jan 2019 13:00:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:7:\"Opinion\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"squarespace\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:24:\"squarespace vs wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:36:\"wordpress and squarespace comparison\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"http://www.wpbeginner.com/?p=23204\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:743:\"<p>Squarespace and WordPress are two popular website builders that allow you to easily create a website without any technical skills or programming knowledge. Recently, our readers asked us to compare Squarespace vs. WordPress because they were seeing a lot of commercials on TV for both&#8230;&#160;<strong><a href=\"https://www.wpbeginner.com/opinion/squarespace-vs-wordpress-which-one-is-better-pros-and-cons/\">Read More &#187;</a></strong></p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.wpbeginner.com/opinion/squarespace-vs-wordpress-which-one-is-better-pros-and-cons/\">Squarespace vs WordPress &#8211; Which one is better? (Pros and Cons)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.wpbeginner.com\">WPBeginner</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Editorial Staff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:30983:\"<p>Squarespace and WordPress are two <a href=\"https://www.wpbeginner.com/beginners-guide/how-to-choose-the-best-website-builder/\" title=\"How to Choose the Best Website Builder in 2019 (Compared)\">popular website builders</a> that allow you to easily create a website without any technical skills or programming knowledge. </p>\n<p>Recently, our readers asked us to compare Squarespace vs. WordPress because they were seeing a lot of commercials on TV for both platforms. </p>\n<p>In this article, we will compare Squarespace vs. WordPress with the list of pros and cons for each platform. Our hope is that after reading our comparison, you can pick which one is better for you.</p>\n<p><img title=\"Squarespace vs WordPress comparison\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2019/01/squarespacevswordpress.png\" alt=\"Squarespace vs WordPress comparison\" width=\"550\" height=\"340\" class=\"alignnone size-full wp-image-59184\" /></p>\n<p>Note: This comparison is between Squarespace vs self-hosted WordPress (not WordPress.com). See the difference between <a href=\"https://www.wpbeginner.com/beginners-guide/self-hosted-wordpress-org-vs-free-wordpress-com-infograph/\" title=\"WordPress.com vs WordPress.org – Which is Better? (Comparison Chart)\">self-hosted WordPress vs WordPress.com</a>.</p>\n<p>Since we want to create the most detailed WordPress vs Squarespace comparison, we have broken down the article into multiple sections. We will look at each section and see which platform offers the most benefit to a beginner level user.</p>\n<ul>\n<li>Ease of use</li>\n<li>Costs</li>\n<li>Design and templates</li>\n<li>Extensions and integrations</li>\n<li>E-commerce</li>\n<li>Data portability</li>\n<li>Languages and internationalization</li>\n</ul>\n<p>Ready? Let&#8217;s get started. </p>\n<h4>Ease of Use and The Learning Curve</h4>\n<p>Most business owners and beginner-level users are not familiar with HTML, CSS, and other code related things. They want a platform that helps them easily create a website without hiring a developer. </p>\n<p>Let’s see how both WordPress and Squarespace stack up in this category.</p>\n<p><strong>WordPress</strong></p>\n<p>WordPress is the top choice among users who want to <a href=\"https://www.wpbeginner.com/start-a-wordpress-blog/\" title=\"Ultimate Guide: How to Start a WordPress Blog (Step by Step)\">start a blog</a> or small business owners <a href=\"https://www.wpbeginner.com/guides/\" title=\"Ultimate Guide: How to Make a Website in 2019 – Step by Step Guide (Free)\">building a DIY website</a>. Over 32% of all websites are powered by WordPress.</p>\n<p>While WordPress is fairly intuitive and easy to use, there is definitely a slight learning curve. </p>\n<p>Beginners will need to familiarize themselves with WordPress terminology and concepts such as difference between <a href=\"https://www.wpbeginner.com/beginners-guide/what-is-the-difference-between-posts-vs-pages-in-wordpress/\" title=\"What is the Difference Between Posts vs. Pages in WordPress\">posts vs pages</a>, <a href=\"https://www.wpbeginner.com/beginners-guide/categories-vs-tags-seo-best-practices-which-one-is-better/\" title=\"Categories vs Tags – SEO Best Practices for Sorting your Content\">categories vs tags</a>, understanding <a href=\"https://www.wpbeginner.com/wp-themes/selecting-the-perfect-theme-for-wordpress/\" title=\"Selecting the Perfect WordPress Theme – 9 Things You Should Consider\">themes</a> and <a href=\"https://www.wpbeginner.com/beginners-guide/what-are-wordpress-plugins-how-do-they-work/\" title=\"What Are WordPress Plugins? And How Do They Work?\">plugins</a>.</p>\n<p>The default <a href=\"https://www.wpbeginner.com/beginners-guide/how-to-use-the-new-wordpress-block-editor/\" title=\"How to Use the New WordPress Block Editor (Gutenberg Tutorial)\">WordPress content editor</a> is fairly easy to use. It comes with custom blocks to add content elements to your pages, so you can build beautiful layouts with media-rich content. </p>\n<p><img title=\"Default WordPress editor\" src=\"https://cdn2.wpbeginner.com/wp-content/uploads/2019/01/wp-editor.jpg\" alt=\"Default WordPress editor\" width=\"550\" height=\"349\" class=\"alignnone size-full wp-image-59136\" /></p>\n<p>Despite the slight learning curve, in our experience, most users quickly adapt to WordPress. </p>\n<p><strong>Squarespace</strong></p>\n<p>Unlike WordPress, Squarespace does not come with a lot of choices. This lack of choice makes it very simple and easy to use. Even the absolute beginners can quickly write content and publish it.</p>\n<p><img title=\"Squarespace page editor\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2019/01/squarespace-editor.jpg\" alt=\"Squarespace page editor\" width=\"550\" height=\"349\" class=\"alignnone size-full wp-image-59137\" /></p>\n<p>Squarespace also uses a block editor similar to WordPress. Adding images, videos, and audio files is simpler than WordPress. There are plenty of content blocks, and layout control choices in the block editor. </p>\n<p>Squarespace lets you customize your templates and pages using a visual editor. However, you are limited to the options available in the customizer. It is a controlled environment, which means your options are limited. </p>\n<p><strong>Conclusion</strong></p>\n<p>Squarespace fares a little better than WordPress out of the box in terms of ease of use for absolute beginners. However it&#8217;s limited features might not be ideal for all business owners.</p>\n<p>On the other hand, WordPress offers beginners a lot of choices right from the beginning which might be confusing at first, but it is a lot more flexible in the long run.</p>\n<p>There are several <a href=\"https://www.wpbeginner.com/beginners-guide/best-drag-and-drop-page-builders-for-wordpress/\" title=\"5 Best Drag and Drop WordPress Page Builders Compared (2019)\">WordPress page builder plugins</a> that you can use to create completely custom websites with drag and drop (without hiring a developer). </p>\n<h4>The Costs</h4>\n<p>Knowing how much each platform cost is important in making a business decision. Let’s look at how much Squarespace cost vs. how much WordPress cost.</p>\n<p><strong>WordPress</strong> </p>\n<p>WordPress itself is free. You are free to download, use, and build upon WordPress. It is an open source software with a GPL license which gives you all the freedom and control.</p>\n<p>In order to build your website with WordPress, you will need to <a href=\"https://www.wpbeginner.com/beginners-guide/how-to-register-a-domain-name-simple-tip-to-get-it-for-free/\" title=\"How to Register a Domain Name (+ simple tip to get it for FREE)\">registar a domain</a> and signup for a web hosting account. </p>\n<p>Depending on your needs, you can choose a <a href=\"https://www.wpbeginner.com/glossary/shared-hosting/\" title=\"Shared Hosting\">shared hosting plan</a>, <a href=\"https://www.wpbeginner.com/best-vps-hosting-compared/\" title=\"Do You Really Need a VPS? Best WordPress VPS Hosting Compared – 2019\">VPS hosting</a>, or even <a href=\"https://www.wpbeginner.com/managed-wordpress-hosting/\" title=\"When Do You Really Need Managed WordPress Hosting? Best Managed WordPress Hosting Compared (2019)\">managed WordPress hosting</a>. Shared hosting plans work for most small personal and business websites. </p>\n<p>See our guide on <a href=\"https://www.wpbeginner.com/wordpress-hosting/\" title=\"How to Choose the Best WordPress Hosting?\">how to choose the best WordPress hosting</a>.</p>\n<p>The cost of web hosting and domain name vary depending on which hosting provider you go with. You are in charge of how much resources you need for your website, and how much you will pay for it.</p>\n<p>With over 6800+ free templates and 54,000+ free plugins, you can run your website for as low as $2.75 per month (which includes your domain name and hosting – we recommend <a title=\"Bluehost\" href=\"https://www.wpbeginner.com/refer/bluehost/\" rel=\"nofollow\" target=\"_blank\">Bluehost</a> or <a title=\"SiteGround\" href=\"https://www.wpbeginner.com/refer/siteground/\" rel=\"nofollow\" target=\"_blank\">SiteGround</a>).</p>\n<p>One of the reasons for WordPress&#8217; popularity is that the overall cost of building your website with WordPress is very low. </p>\n<p>Apart from that, you can change your hosting plan as your site grows. This means you will only pay for the resources you actually use, so it&#8217;s easier to control the cost of your website. </p>\n<p>We have a detailed article on the <a href=\"https://www.wpbeginner.com/beginners-guide/how-much-does-it-cost-to-build-a-wordpress-website/\" title=\"How Much Does It Really Cost to Build a WordPress Website?\">cost of building a WordPress website</a> and how to keep it under budget. </p>\n<p><strong>Squarespace</strong> </p>\n<p>The personal plan for Squarespace starts from $12 per month (billed annually) or $16 month to month. That’s a little more than a shared hosting plan for WordPress. </p>\n<p><img title=\"Squarespace pricing plans\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2019/01/squarespacepricing.png\" alt=\"Squarespace pricing plans\" width=\"550\" height=\"275\" class=\"alignnone size-full wp-image-59187\" /></p>\n<p>However, unlike a shared WordPress hosting plan, this personal plan comes with very limited features. You can only add only two contributors to your site, and you cannot sell products. </p>\n<p>Whereas you can <a href=\"https://www.wpbeginner.com/wp-tutorials/how-to-start-an-online-store/\" title=\"How to Start an Online Store in 2019 (Step by Step)\">start an online store</a> with WordPress for less than that.</p>\n<p>Squarespace business plan starts from $18 per month (billed annually) or $26 month to month. It includes eCommerce support, but they charge a 3% transaction fees. The business plan comes with unlimited contributors, pages, and additional advanced features. </p>\n<p>They also have separate plans for online stores starting from $26 per month with no additional transaction fee. </p>\n<p><strong>Conclusion</strong></p>\n<p>WordPress beats Squarespace with flexible pricing plans available from a variety of web hosting services from around the world. </p>\n<p>The cost depends on how much resources you use, and you get access to all WordPress features right out of the box.</p>\n<h4>Design and Templates</h4>\n<p>Both WordPress and Squarespace come with ready-made templates and design tools to make it easy for you to create a custom website. </p>\n<p>Let&#8217;s see which one offers you more choices and tools to create well-designed websites. </p>\n<p><strong>WordPress</strong></p>\n<p>WordPress offers access to thousands of free and paid website templates. These templates are highly customizable, allowing you to use your own website logo, colors, upload your own images, and more. </p>\n<p>Many WordPress themes come with multiple layout choices, drag and drop page builders, sliders, photo galleries, and tons of other features.</p>\n<p>No matter what kind of website you are building, you will find hundreds of professionally designed templates for the job. </p>\n<p><img title=\"Wordpress themes\" src=\"https://cdn2.wpbeginner.com/wp-content/uploads/2019/01/wpthemes.jpg\" alt=\"Wordpress themes\" width=\"550\" height=\"349\" class=\"alignnone size-full wp-image-59179\" /></p>\n<p>Many beginners find this abundance of choices a bit overwhelming. Here are some of our expert-picks of the best WordPress themes for different kind of websites. </p>\n<ul>\n<li><a href=\"https://www.wpbeginner.com/showcase/best-free-wordpress-blog-themes/\" title=\"59 Best Free WordPress Blog Themes for 2019\">Best free WordPress blog themes</a></li>\n<li><a href=\"https://www.wpbeginner.com/showcase/best-wordpress-business-themes/\" title=\"30+ Best WordPress Business Themes (2019)\">Best WordPress themes for business websites</a></li>\n<li><a href=\"https://www.wpbeginner.com/showcase/best-wordpress-magazine-themes/\" title=\"29 Best WordPress Magazine Themes of 2019\">Best WordPress magazine themes</a></li>\n<li><a href=\"https://www.wpbeginner.com/showcase/37-simple-wordpress-themes-you-should-try/\" title=\"41 Best Simple WordPress Themes You Should Try (2019)\">Best simple WordPress themes</a></li>\n</ul>\n<p>For more on this topic, see our article on <a href=\"https://www.wpbeginner.com/wp-themes/selecting-the-perfect-theme-for-wordpress/\" title=\"Selecting the Perfect WordPress Theme – 9 Things You Should Consider\">how to choose the best WordPress theme</a> for your website. </p>\n<p>Alternatively, you can also start with the <a title=\"ElegantThemes Divi\" href=\"https://www.wpbeginner.com/refer/elegantthemes-divi/\" rel=\"nofollow\" target=\"_blank\" >Divi Theme</a> which is a master theme with a lot of custom skins and complete drag &#038; drop control.</p>\n<p><strong>Squarespace</strong></p>\n<p>Squarespace offers ready-made website templates neatly organized into different categories. There are themes for all popular website categories, with professional designs that look good on all devices. </p>\n<p><img title=\"Squarespace templates\" src=\"https://cdn2.wpbeginner.com/wp-content/uploads/2019/01/squarespacetemplates.png\" alt=\"Squarespace templates\" width=\"550\" height=\"349\" class=\"alignnone size-full wp-image-59180\" /></p>\n<p>However, this is a big area where Squarespace seriously falls behind. The number of pre-made templates are very limited, and your design options are also limited to the set of features available in the Squarespace customizer. </p>\n<p>Themes come with a limited number of layout choices with each template. You can still do basic colors, fonts, website logo, and other things, but these templates are not as customizable as WordPress themes. </p>\n<p><strong>Conclusion</strong> </p>\n<p>WordPress comes out as a clear winner in terms of design choices, customization options, and flexibility. Squarespace offers great looking templates, but they are limited in numbers and are not very flexible. </p>\n<h4>Extensions and Integrations</h4>\n<p><img title=\"Extensions\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2019/01/extensions.png\" alt=\"Extensions\" width=\"550\" height=\"275\" class=\"alignnone size-full wp-image-59188\" /></p>\n<p>All website builders come with a collection of built-in features. As your website grows, you would want to add more features and connect your site to work with third-party tools and services. </p>\n<p>Let&#8217;s see how WordPress and Squarespace perform in this regard. </p>\n<p><strong>WordPress</strong> </p>\n<p>The real power of WordPress comes from its massive ecosystem of plugins. These plugins are like apps for your WordPress site that you can install to add new features or change the default behavior of your site. </p>\n<p>There are currently more than 54,000+ free WordPress plugins listed in WordPress.org plugin directory alone. There are also thousands of <a href=\"https://www.wpbeginner.com/beginners-guide/when-is-it-worth-it-to-buy-premium-wordpress-plugins-explained/\" title=\"When is it Worth It to Buy Premium WordPress Plugins? (Explained)\">premium WordPress plugins</a> available from third-party websites. </p>\n<p><img title=\"WordPress plugins\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2019/01/wpplugins.png\" alt=\"WordPress plugins\" width=\"550\" height=\"232\" class=\"alignnone size-full wp-image-59189\" /></p>\n<p>If you can think of a feature, there is a good chance that you&#8217;ll easily find a WordPress plugin that does it. </p>\n<p>WordPress plugins are so robust that many of them are full-fledged platforms with their own add-on plugins and a thriving community built around them. </p>\n<p>We have a list of the <a href=\"https://www.wpbeginner.com/showcase/24-must-have-wordpress-plugins-for-business-websites/\" title=\"24 Must Have WordPress Plugins for Business Websites in 2019\">essential WordPress plugins</a> that every website should have. </p>\n<p>Then you have specialized plugins to <a href=\"https://www.wpbeginner.com/wp-tutorials/how-to-start-an-online-store/\" title=\"How to Start an Online Store in 2019 (Step by Step)\">create ecommerce websites</a>, <a href=\"https://www.wpbeginner.com/wp-tutorials/ultimate-guide-to-creating-a-wordpress-membership-site/\" title=\"Ultimate Guide to Creating a WordPress Membership Site\">build membership community</a>, <a href=\"https://www.wpbeginner.com/plugins/how-to-create-an-online-course-with-wordpress-using-learndash-review/\" title=\"How to Create an Online Course with WordPress using LearnDash (Review)\">sell online courses</a>, and more. </p>\n<p>To learn more see our article on <a href=\"https://www.wpbeginner.com/beginners-guide/how-to-choose-the-best-wordpress-plugin/\" title=\"Beginner’s Guide: How to Choose the Best WordPress Plugin\">how to choose the best WordPress plugin</a>. </p>\n<p>Because WordPress is the most popular website builder, most third-party services and tools have their own WordPress plugins which integrate their services to a WordPress website. </p>\n<p>All <a href=\"https://www.wpbeginner.com/showcase/best-email-marketing-services/\" title=\"7 Best Email Marketing Services for Small Business (2019)\">top email marketing services</a>, <a href=\"https://www.wpbeginner.com/showcase/9-best-wordpress-seo-plugins-and-tools-that-you-should-use/\" title=\"9 Best WordPress SEO Plugins and Tools That You Should Use\">SEO tools</a>, <a href=\"https://www.wpbeginner.com/showcase/7-best-live-chat-support-software-for-your-wordpress-site/\" title=\"12 Best Live Chat Software for Small Business Compared (2019)\">live chat software</a>, and <a href=\"https://www.wpbeginner.com/beginners-guide/lead-generation-in-wordpress/\" title=\"How to Do Lead Generation in WordPress Like a Pro\">lead generation tools</a> offer seamless integration with WordPress. </p>\n<p><strong>Squarespace</strong> </p>\n<p>Squarespace comes nowhere close to WordPress when it comes to extensibility and integrations. </p>\n<p>It is possible to add third-party integrations and customizations but unlike WordPress, Squarespace doesn&#8217;t have powerful APIs that developers can build upon. </p>\n<p><img title=\"Squarespace integrations\" src=\"https://cdn2.wpbeginner.com/wp-content/uploads/2019/01/integrationblocks.jpg\" alt=\"Squarespace integrations\" width=\"550\" height=\"329\" class=\"alignnone size-full wp-image-59190\" /></p>\n<p>They do provide some official third-party integrations, but even those are limited and not all popular services are supported. </p>\n<p>For eCommerce, you can use their built-in platform, but you cannot extend it in any way. </p>\n<p>Squarespace lacks the functionality to allow custom websites that you might need for your <a href=\"https://www.wpbeginner.com/beginners-guide/proven-and-easy-to-start-online-business-ideas-that-make-money/\" title=\"27 “Proven and Easy to Start” Online Business Ideas that Make Money\">online business idea</a>. </p>\n<p><strong>Conclusion</strong> </p>\n<p>WordPress is the clear winner here with an incredible ecosystem of thousands of plugins and integrations at your fingertips. Squarespace, on the other hand, has very few integrations and many of them are very limited.</p>\n<h4>E-commerce</h4>\n<p>Are you building an online store? Let’s compare the eCommerce functionality of WordPress vs. Squarespace.</p>\n<p><strong>WordPress</strong> </p>\n<p>WordPress allows you to integrate and use any payment processor or platform you want. </p>\n<p>There are many WordPress plugins that allow you to easily accept online payments using <a href=\"https://www.wpbeginner.com/wp-tutorials/how-to-easily-accept-credit-card-payments-on-your-wordpress-site/\" title=\"How to Easily Accept Credit Card Payments on Your WordPress Site\">Stripe</a>, PayPal, Google Checkout, 2Checkout, Payoneer, Skrill, and even Bitcoin.</p>\n<p><img title=\"eCommerce\" src=\"https://cdn.wpbeginner.com/wp-content/uploads/2019/01/ecommerce.png\" alt=\"eCommerce \" width=\"550\" height=\"300\" class=\"alignnone size-full wp-image-59181\" /></p>\n<p>WordPress has plenty of eCommerce plugins that can turn your website into an online store within minutes. World&#8217;s most popular eCommerce platform, WooCommerce, is a WordPress plugin. </p>\n<p>WooCommerce comes with its own ecosystem with its own <a href=\"https://www.wpbeginner.com/plugins/20-best-free-woocommerce-plugins-for-wordpress/\" title=\"21+ Best Free WooCommerce Plugins for Your Store (2019)\">WooCommerce add-ons</a> and thousands of <a href=\"https://www.wpbeginner.com/showcase/best-woocommerce-wordpress-themes/\" title=\"48 Best WooCommerce WordPress Themes\">WooComemrce ready themes</a>. </p>\n<p>There is no limit on how many products you add to your website, how you display them, or how you sell them. You can <a href=\"https://www.wpbeginner.com/showcase/3-best-affiliate-tracking-and-management-software-for-wordpress/\" title=\"3 Best Affiliate Tracking and Management Software for WordPress\">run your own affiliate program</a> and use all the tricks to <a href=\"https://www.wpbeginner.com/wp-tutorials/ways-to-recover-woocommerce-abandoned-cart-sales/\" title=\"13 Ways to Recover WooCommerce Abandoned Cart Sales\">grow your sales</a> without any restrictions. </p>\n<p><strong>Squarespace</strong> </p>\n<p>E-commerce is limited on Squarespace. You can only use Stripe and PayPal for payment processing, which are only available in select few countries. </p>\n<p>There is no other payment system available which restricts your ability to accept payments from a larger global audience. For a growing business, starting with such limitations is not a great idea.</p>\n<p><img title=\"Squarespace commerce\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2019/01/squarespacecommerce.jpg\" alt=\"Squarespace commerce\" width=\"550\" height=\"295\" class=\"alignnone size-full wp-image-59191\" /></p>\n<p>Apart from that, you can only sell products in Business or Commerce plans. </p>\n<p>Let&#8217;s say you want to sell only one product, you will still have to pay for the Business plan, and the yearly costs of hosting a site with just one product to sell will be way higher than a shared hosting plan or VPS for WordPress.</p>\n<p>As for third-party services, there are very few external services that you can integrate with your Squarespace website. This affects how you promote your website and the things you can do to make more sales and <a href=\"https://www.wpbeginner.com/beginners-guide/grow-your-business-online-without-a-lot-of-money/\" title=\"15 Tips to Grow Your Business Online (without A Lot of Money)\">grow your business</a>. </p>\n<p><strong>Conclusion</strong> </p>\n<p>WordPress is way ahead of Squarespace when it comes to running an eCommerce website. The limitations of Squarespace are not so good for the growth of an online business.</p>\n<p>The neat part about WordPress is that you can also use it alongside with <a rel=\"nofollow\" target=\"_blank\" title=\"Shopify\" href=\"https://www.wpbeginner.com/refer/shopify/\" data-shortcode=\"true\">Shopify</a>. See our comparison of <a href=\"https://www.wpbeginner.com/opinion/shopify-vs-woocommerce-which-is-the-better-platform-comparison/\" title=\"Shopify vs WooCommerce – Which is the Better Platform? (Comparison)\">Shopify vs WooCommerce</a>.</p>\n<h4>Data Portability</h4>\n<p>When signing a business agreement, you always have safety clauses. Such as if you’re not happy, then you can leave without any hassle. </p>\n<p>This concept extends to online businesses as well, and it is called data portability. If you’re not happy with the platform, then you should be able to take all your work and move it somewhere else.</p>\n<p>Let’s look at how WordPress and Squarespace compare in data portability and the freedom to switch. </p>\n<p><strong>WordPress</strong> </p>\n<p>WordPress comes with built-in tools to easily export all your data. Not just your content and images, but you can also backup your themes, plugins, and the entire database. See our list of the <a href=\"https://www.wpbeginner.com/plugins/7-best-wordpress-backup-plugins-compared-pros-and-cons/\" title=\"7 Best WordPress Backup Plugins Compared (Pros and Cons)\">best WordPress backup solutions</a>.</p>\n<p><img title=\"Exporting content in WordPress\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2019/01/exportwp.png\" alt=\"Exporting content in WordPress\" width=\"550\" height=\"281\" class=\"alignnone size-full wp-image-59192\" /></p>\n<p>You can then easily move this content to any other Content Management System you want. You can store your content anywhere else and <a href=\"https://www.wpbeginner.com/wp-tutorials/how-to-move-wordpress-to-a-new-host-or-server-with-no-downtime/\" title=\"How to Move WordPress to a New Host or Server With No Downtime\">change web hosts</a> at any time you want.</p>\n<p><strong>Squarespace</strong> </p>\n<p>Just like everything else, the export feature on Squarespace is also very limited. You can only export certain parts of your content in a XML file. This includes your pages, galleries, and one blog page with all its posts.</p>\n<p>Your product pages, album pages, text, audio, and video blocks will not be exported.</p>\n<p><strong>Conclusion</strong></p>\n<p>The content you create on your site is yours, and you should have the freedom and tools so that you can move it elsewhere. WordPress again beats Squarespace with easy to manage tools to export your entire site.</p>\n<h4>Languages and Internationalization</h4>\n<p>We live in a global world and many businesses cater to a multilingual audience in different geographical locations. Let&#8217;s see how Squarespace and WordPress handle languages, multi-lingual content, and geographical locations. </p>\n<p><img title=\"Languages and localization\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2019/01/languages.png\" alt=\"Languages and localization\" width=\"550\" height=\"300\" class=\"alignnone size-full wp-image-59193\" /></p>\n<p><strong>WordPress</strong> </p>\n<p>WordPress is fully translated into <a href=\"https://www.wpbeginner.com/wp-tutorials/how-to-install-wordpress-in-other-languages/\" title=\"How to Install WordPress in Other Languages\">dozens of languages</a>. Users on a WordPress site can choose their own language from their profile settings. </p>\n<p>Most <a href=\"https://www.wpbeginner.com/wp-themes/find-translate-translation-ready-wordpress-theme/\" title=\"How to Find and Translate a Translation Ready WordPress Theme\">WordPress themes are translation ready</a> and all popular WordPress plugins are also translated into many languages. </p>\n<p>Basically, you can build a WordPress website in any language you want. You can even <a href=\"https://www.wpbeginner.com/plugins/how-to-easily-translate-your-wordpress-with-translatepress/\" title=\"How to Easily Translate Your WordPress with TranslatePress\">translate WordPress yourself</a> if your language is not yet available. </p>\n<p>WordPress does not come with multi-lingual functionality out of the box. However, there are excellent plugins to <a href=\"https://www.wpbeginner.com/plugins/how-to-create-a-multilingual-wordpress-site-with-wpml/\" title=\"How to Create a Multilingual WordPress Site with WPML\">create multilingual websites</a> that are SEO friendly and incredibly feature rich. </p>\n<p><strong>Squarespace</strong> </p>\n<p>Squarespace platform is fully translated into six languages (English, German, French, Spanish, Italian, and Portuguese). You can change your site language and choose different timezone / country. </p>\n<p>You can only use currencies supported by Stripe or PayPal for your store products. </p>\n<p>You can create multilingual pages by basically duplicating your pages. You will have to manually create a site structure or create different sites for each language (You will be billed for each site separately). </p>\n<p><strong>Conclusion</strong> </p>\n<p>WordPress is way ahead in terms of languages and localization options. Squarespace again comes out as very limited and totally inadequate to create multilingual websites. </p>\n<h4>Summarizing Squarespace vs WordPress Comparison</h4>\n<p>WordPress is a far superior platform than Squarespace when it comes to building a website. Here is a quick breakdown of pros and cons of both platforms. </p>\n<p><strong>Pros of using Squarespace</strong></p>\n<ul>\n<li>Easier to use for small websites</li>\n<li>Polished user experience</li>\n<li>Hassle free website setup</li>\n</ul>\n<p><strong>Cons of using Squarespace</strong></p>\n<ul>\n<li>Costs higher than shared hosting website</li>\n<li>Limited design choices</li>\n<li>Limited set of features</li>\n<li>Limitations put you at disadvantage in growing your business</li>\n</ul>\n<p><strong>Pros of using WordPress</strong> </p>\n<ul>\n<li>Easy to use with a slight learning curve</li>\n<li>Incredibly flexible to create anykind of website</li>\n<li>Massive collection of themes and plugins</li>\n<li>Truly powerful eCommerce platform</li>\n<li>Can be started at a very low cost</li>\n</ul>\n<p><strong>Cons of using WordPress</strong></p>\n<ul>\n<li>You&#8217;ll have to install updates and <a href=\"https://www.wpbeginner.com/plugins/7-best-wordpress-backup-plugins-compared-pros-and-cons/\" title=\"7 Best WordPress Backup Plugins Compared (Pros and Cons)\">make backups</a></li>\n<li>You&#8217;ll have to manually scale resources by upgrading your hosting as your business grows</li>\n<li>You&#8217;ll be responsible for <a href=\"https://www.wpbeginner.com/wordpress-security/\" title=\"The Ultimate WordPress Security Guide – Step by Step (2019)\">managing your website security</a></li>\n</ul>\n<p>Weighing in the pros and cons, we can confidently say that WordPress is a better platform to <a href=\"https://www.wpbeginner.com/guides/\" title=\"Ultimate Guide: How to Make a Website in 2019 – Step by Step Guide (Free)\">start a website</a>. </p>\n<p>The freedom to grow your website as you see fit, is important for all businesses. You should not trade that for any cost. WordPress provides you with this freedom at an much lower cost than all other platforms.</p>\n<p>We hope this article offered you a side by side comparison of WordPress vs Squarespace. You may also want to see our <a href=\"https://www.wpbeginner.com/opinion/the-ultimate-wordpress-review-is-it-the-best-choice-for-your-website/\" title=\"The Ultimate WordPress Review – Is It the Best Choice For Your Website?\">complete WordPress review</a> for a detailed overview of the platform. </p>\n<p>If you liked this article, then please subscribe to our <a href=\"http://youtube.com/wpbeginner?sub_confirmation=1\" title=\"WPBeginner on YouTube\" target=\"_blank\" rel=\"nofollow\">YouTube Channel</a> for WordPress video tutorials. You can also find us on <a href=\"http://twitter.com/wpbeginner\" title=\"WPBeginner on Twitter\" target=\"_blank\" rel=\"nofollow\">Twitter</a> and <a href=\"https://www.facebook.com/wpbeginner\" title=\"WPBeginner on Facebook\" target=\"_blank\" rel=\"nofollow\">Facebook</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.wpbeginner.com/opinion/squarespace-vs-wordpress-which-one-is-better-pros-and-cons/\">Squarespace vs WordPress &#8211; Which one is better? (Pros and Cons)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.wpbeginner.com\">WPBeginner</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://www.wpbeginner.com/opinion/squarespace-vs-wordpress-which-one-is-better-pros-and-cons/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:51:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"How to Update Your Old WordPress Posts with Gutenberg Block Editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"https://www.wpbeginner.com/beginners-guide/how-to-update-your-old-wordpress-posts-with-gutenberg-block-editor/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:119:\"https://www.wpbeginner.com/beginners-guide/how-to-update-your-old-wordpress-posts-with-gutenberg-block-editor/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 07 Jan 2019 12:49:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:15:\"Beginners Guide\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:16:\"gutenberg editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:26:\"the wordpress block editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:28:\"wordpress gutenberg tutorial\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://www.wpbeginner.com/?p=58821\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:764:\"<p>Wondering how to update your old blog posts with Gutenberg, the new WordPress block editor? If you haven&#8217;t upgraded to WordPress 5.0, then you&#8217;re not alone. A lot of readers are concerned because Gutenberg is a completely new experience. The good news is that your&#8230;&#160;<strong><a href=\"https://www.wpbeginner.com/beginners-guide/how-to-update-your-old-wordpress-posts-with-gutenberg-block-editor/\">Read More &#187;</a></strong></p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.wpbeginner.com/beginners-guide/how-to-update-your-old-wordpress-posts-with-gutenberg-block-editor/\">How to Update Your Old WordPress Posts with Gutenberg Block Editor</a> appeared first on <a rel=\"nofollow\" href=\"https://www.wpbeginner.com\">WPBeginner</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Editorial Staff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9141:\"<p>Wondering how to update your old blog posts with Gutenberg, the new WordPress block editor? If you haven&#8217;t upgraded to <a href=\"https://www.wpbeginner.com/news/whats-new-in-wordpress-5-0-features-and-screenshots/\" />WordPress 5.0</a>, then you&#8217;re not alone. </p>\n<p>A lot of readers are concerned because Gutenberg is a completely new experience. The good news is that your old articles are safe even after upgrading to Gutenberg. In this article, we&#8217;ll show you how to update your old articles with Gutenberg, the new WordPress Block editor. </p>\n<p>You may also want to know what will happen to your existing content after upgrading your blog to Gutenberg. </p>\n<p><img title=\"update-your-old-articles-with-gutenberg\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/update-your-old-articles-with-gutenberg.png\" alt=\"update-your-old-articles-with-gutenberg\" width=\"550\" height=\"340\" class=\"alignnone size-full wp-image-58836\" /></p>\n<h4>What’s The Difference Between Classic Editor and Gutenberg Editor?</h4>\n<p>Before we get started, let’s first discuss the major differences between the old Classic Editor and the new Gutenberg Editor. </p>\n<p>The Classic Editor was a text editor that looked very similar to Microsoft Word. It had a single editing field with formatting options at the top. Here’s what the Classic Editor looks like: </p>\n<p><img title=\"Old WordPress editor\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/old-wp-editor.png\" alt=\"Old WordPress editor\" width=\"550\" height=\"325\" class=\"alignnone size-full wp-image-58700\" /></p>\n<p>On the other hand, the new Gutenberg editor is a fully block-based editor. You’ll add all the content in the form of blocks. Here’s how the Gutenberg Block Editor looks like: </p>\n<p><img title=\"New WordPress Block Editor also known as Gutenberg\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/newwpeditor.png\" alt=\"New WordPress Block Editor also known as Gutenberg\" width=\"550\" height=\"369\" class=\"alignnone size-full wp-image-58701\" /></p>\n<p>Blocks are content elements which are separate from each other with their own set of formatting options. There’re individual blocks for every piece of content including:</p>\n<ul>\n<li>Regular text or paragraph</li>\n<li>Image</li>\n<li>Button</li>\n<li>Gallery</li>\n<li>List</li>\n<li>Table</li>\n<li>Embeds, etc.</li>\n</ul>\n<p>Plus, you can find more blocks and widgets provided by your plugins and theme. </p>\n<p><img title=\"gutenberg-blocks\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/gutenberg-blocks.png\" alt=\"gutenberg-blocks\" width=\"550\" height=\"491\" class=\"alignnone size-full wp-image-58826\" /></p>\n<p>In order to create or edit a post in the new Gutenberg editor, you’ll need to use blocks. Here&#8217;s how to update your old blog posts and pages with Gutenberg block editor.</p>\n<h4>Editing Your Older WordPress Articles with Gutenberg</h4>\n<p>If you’ve updated your <a href=\"https://www.wpbeginner.com/start-a-wordpress-blog/\" title=\"Ultimate Guide: How to Start a WordPress Blog (Step by Step)\">WordPress blog</a> to 5.0 or the later version, then you’ll have the new Gutenberg block editor as your default editor. </p>\n<p>The good part about Gutenberg is that it doesn’t affect any of your old content, and you can easily edit them. </p>\n<p>To edit an older article, simply edit it as you would normally do in WordPress. </p>\n<p>On the post edit screen, you’ll see the entire content wrapped inside a single <strong>Classic</strong> block. </p>\n<p><img title=\"classic-block-guteberg-edit\" src=\"https://cdn.wpbeginner.com/wp-content/uploads/2018/12/classic-block-guteberg-edit.png\" alt=\"classic-block-guteberg-edit\" width=\"550\" height=\"277\" class=\"alignnone size-full wp-image-58827\" /></p>\n<p>The same post would look like the screenshot below in the old classic editor. </p>\n<p><img title=\"classic-wp-editor\" src=\"https://cdn4.wpbeginner.com/wp-content/uploads/2018/12/classic-wp-editor.png\" alt=\"classic-wp-editor\" width=\"549\" height=\"340\" class=\"alignnone size-full wp-image-58828\" /></p>\n<p>As you can notice, the content is same however the way it&#8217;s organized looks slightly different. </p>\n<p>Yes, that’s the only change you’ll see. </p>\n<p>The new WordPress block editor will not make any changes to the content, and it would still look the same on your website.  </p>\n<p>Now, you have two options to edit your old blog posts and pages: </p>\n<ol>\n<li><strong>Continue editing inside the Classic block</strong></li>\n<li><strong>Convert your old content to new Gutenberg blocks</strong></li>\n</ul>\n<p>The first option is to continue editing your old article inside the Classic block. </p>\n<p>The Classic block offers you the same Classic editor interface with formatting options at the top. This should be fairly straight forward.</p>\n<p>The second option is converting your old content into new Gutenberg blocks. </p>\n<p>You can do this by clicking on the three-dot menu option on the top right corner of Classic block.</p>\n<p>From the menu dropdown, you need to select <strong>Convert to Blocks</strong> option. </p>\n<p><img title=\"convert-to-blocks-wp-block-editor\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/convert-to-blocks-wp-block-editor.png\" alt=\"convert-to-blocks-wp-block-editor\" width=\"549\" height=\"340\" class=\"alignnone size-full wp-image-58829\" /></p>\n<p>That’s it! </p>\n<p>Your old content will be automatically converted into appropriate blocks. The content inside the Classic block will be split into several different blocks. </p>\n<p><img title=\"wp-block-editor-classic-block-converted\" src=\"https://cdn.wpbeginner.com/wp-content/uploads/2018/12/wp-block-editor-classic-block-converted.png\" alt=\"wp-block-editor-classic-block-converted\" width=\"549\" height=\"335\" class=\"alignnone size-full wp-image-58830\" /></p>\n<p>Now, you can edit your old article using the new Gutenberg editor blocks. Each block is a separate entity with its own formatting options, styles, and design options. </p>\n<p>For example, in our screenshot above, there&#8217;s an image block and a paragraph block. </p>\n<p>If you want to make changes to how the image appears, then you can simply click the image to select the block, and the editing options will appear at the top. </p>\n<p>You will also see more options under the <strong>Block</strong> tab in the right column of the screen. </p>\n<p><img title=\"image-block-edit-options\" src=\"https://cdn3.wpbeginner.com/wp-content/uploads/2018/12/image-block-edit-options.png\" alt=\"image-block-edit-options\" width=\"549\" height=\"404\" class=\"alignnone size-full wp-image-58833\" /></p>\n<p>You can realign the image, make it full width, add Alt text, change image dimensions, add a link, and more. </p>\n<p>Following the same process, you can edit all of the blocks and make your article look visually impressive. </p>\n<p>Once you’re done making all the necessary edits, you can simply click the <strong>Update</strong> button at the top right of the screen to save your changes.  </p>\n<p><strong>Note</strong>: Although Gutenberg works fine with most themes and plugins, some may still not have Gutenberg support. It’s better to test your theme and plugins for Gutenberg compatibility before switching to it. </p>\n<p>The new WordPress Gutenberg editor offers an easy and flexible way of creating content in WordPress. However if you are not ready to use it yet, then you can <a href=\"https://www.wpbeginner.com/plugins/how-to-disable-gutenberg-and-keep-the-classic-editor-in-wordpress/\" />disable Gutenberg and keep using the classic editor</a>. </p>\n<p>You can keep using the Classic editor until 2022 which should be enough time for getting familiar with the new WordPress block editor. We have a <a href=\"https://www.wpbeginner.com/beginners-guide/how-to-use-the-new-wordpress-block-editor/\" />complete Gutenberg Block Editor tutorial</a> for beginners that you should check out.</p>\n<p>We hope this article helped you learn how to update your old articles with Gutenberg Block Editor. You may also want to see our list of the <a href=\"https://www.wpbeginner.com/showcase/24-must-have-wordpress-plugins-for-business-websites/\" title=\"24 Must Have WordPress Plugins for Business Websites in 2019\">must have WordPress plugins for professional websites</a>. </p>\n<p>If you liked this article, then please subscribe to our <a href=\"http://youtube.com/wpbeginner?sub_confirmation=1\" title=\"WPBeginner on YouTube\" target=\"_blank\" rel=\"nofollow\">YouTube Channel</a> for WordPress video tutorials. You can also find us on <a href=\"http://twitter.com/wpbeginner\" title=\"WPBeginner on Twitter\" target=\"_blank\" rel=\"nofollow\">Twitter</a> and <a href=\"https://www.facebook.com/wpbeginner\" title=\"WPBeginner on Facebook\" target=\"_blank\" rel=\"nofollow\">Facebook</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.wpbeginner.com/beginners-guide/how-to-update-your-old-wordpress-posts-with-gutenberg-block-editor/\">How to Update Your Old WordPress Posts with Gutenberg Block Editor</a> appeared first on <a rel=\"nofollow\" href=\"https://www.wpbeginner.com\">WPBeginner</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"https://www.wpbeginner.com/beginners-guide/how-to-update-your-old-wordpress-posts-with-gutenberg-block-editor/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://www.wpbeginner.com/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:22:{s:6:\"server\";s:17:\"Sucuri/Cloudproxy\";s:4:\"date\";s:29:\"Wed, 09 Jan 2019 19:14:42 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:11:\"x-sucuri-id\";s:5:\"14016\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:25:\"strict-transport-security\";a:2:{i:0;s:16:\"max-age=31536000\";i:1;s:16:\"max-age=31536000\";}s:23:\"content-security-policy\";a:2:{i:0;s:26:\"upgrade-insecure-requests;\";i:1;s:26:\"upgrade-insecure-requests;\";}s:12:\"x-robots-tag\";s:15:\"noindex, follow\";s:4:\"link\";s:41:\"<https://wpbeg.in/2sm2Aop>; rel=shortlink\";s:7:\"expires\";s:29:\"Fri, 11 Jan 2019 19:00:14 GMT\";s:6:\"pragma\";s:6:\"public\";s:13:\"cache-control\";s:41:\"public, must-revalidate, proxy-revalidate\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"vary\";s:33:\"Accept-Encoding,X-Forwarded-Proto\";s:10:\"set-cookie\";a:2:{i:0;s:64:\"w3tc_referrer=https%3A%2F%2Fwww.wpbeginner.com%2Ffeed%2F; path=/\";i:1;s:64:\"w3tc_referrer=https%3A%2F%2Fwww.wpbeginner.com%2Ffeed%2F; path=/\";}s:13:\"last-modified\";s:29:\"Wed, 09 Jan 2019 19:00:14 GMT\";s:4:\"etag\";s:34:\"\"5ec484de0e99cfef71dbbe4e8a9640e4\"\";s:27:\"access-control-allow-origin\";s:1:\"*\";s:15:\"referrer-policy\";s:26:\"no-referrer-when-downgrade\";s:14:\"x-sucuri-cache\";s:3:\"HIT\";}}s:5:\"build\";s:14:\"20130911133210\";}','no'),(1118,'_transient_timeout_feed_mod_4cf2927c306176c13771b3ef386d2f5e','1547104482','no'),(1119,'_transient_feed_mod_4cf2927c306176c13771b3ef386d2f5e','1547061282','no'),(1120,'_transient_timeout_feed_29f7869e391c2a2c562f0042f814b9de','1547104482','no'),(1121,'_transient_feed_29f7869e391c2a2c562f0042f814b9de','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"IsItWP – WordPress Technology Lookup Tool\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://www.isitwp.com\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Jan 2019 19:12:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wordpress.org/?v=4.9.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:54:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"How to Properly Upgrade WordPress (Step by Step)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://www.isitwp.com/upgrading-wordpress-is-easier-than-you-think/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://www.isitwp.com/upgrading-wordpress-is-easier-than-you-think/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Jan 2019 11:43:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:19:\"WordPress Tutorials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"update core\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:14:\"update plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:16:\"update wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:17:\"upgrade wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://www.themelab.com/?p=245\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:636:\"<p>Do you want to update your website with the latest version of WordPress? The new version releases help maintain the security, speed, and compatibility of your WordPress website. They also offer new, exciting features for your site as well. In this article, we&#8217;ll show you how to properly upgrade WordPress both from your admin dashboard [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/upgrading-wordpress-is-easier-than-you-think/\">How to Properly Upgrade WordPress (Step by Step)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Editorial Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:12038:\"<p>Do you want to update your website with the latest version of WordPress? The new version releases help maintain the security, speed, and compatibility of your WordPress website. They also offer new, exciting features for your site as well.</p>\n<p>In this article, we&#8217;ll show you how to properly upgrade WordPress both from your admin dashboard and manually, in 3-4 simple steps.</p>\n<h3>Why Should You Upgrade Your WordPress Website?</h3>\n<p>Upgrading to the latest WordPress version will keep your website secure from any malicious code or content. It also makes your website faster. The newest version of WordPress always comes with additional features and it usually fixes any issues from the previous versions.</p>\n<p>You&#8217;ll get a notification to update your website on the admin dashboard whenever there&#8217;s a new update available. The notification has a link to update to the latest WordPress version. It also sends an email to the site administrator about the newest version release.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/updatewordpress.jpg\" alt=\"Update WordPress\" width=\"775\" height=\"118\" class=\"alignnone size-full wp-image-226321\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/updatewordpress.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/updatewordpress-300x46.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/updatewordpress-768x117.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Apart from updating your website from the admin dashboard, you can also manually upgrade WordPress by downloading the latest version from the official WordPress.org website. To do this, you&#8217;ll need to upload the WordPress files on your hosting server using an FTP client. If you don&#8217;t have an access to FTP, then you can simply stick to the admin dashboard method.</p>\n<p>That being said, let&#8217;s take a look on how to properly upgrade WordPress, step-by-step.</p>\n<h3>Step 1: Make a Full Backup of Your Website</h3>\n<p>Before you begin upgrading WordPress, it&#8217;s important to make a full backup of your website. If your website crashes after the update for any reason, then you&#8217;ll have a backup to restore your site back to normal. The full backup includes your content, images, database, and other useful WordPress files.</p>\n<p>To make a full backup, including your database, you can use a third-party WordPress plugin. There&#8217;re many <a href=\"https://www.isitwp.com/best-wordpress-backup-plugins-compared/\" title=\"9 Best WordPress Backup Plugins Compared (2018)\">WordPress backup plugins</a> on the market. We recommend you use <a href=\"https://www.isitwp.com/wordpress-plugins/updraftplus-review/\" title=\"UpdraftPlus Review: Is It the Best WordPress Backup Plugin?\">UpdraftPlus</a> or <a href=\"https://www.isitwp.com/wordpress-plugins/backupbuddy/\" title=\"BackupBuddy Review 2018: Is It the Best Premium Backup Plugin?\">BackupBuddy</a>. These backup plugins will not only help you create the backup, but you can also use them to restore your WordPress website should anything go wrong.</p>\n<p>You can follow our step-by-step guide on <a href=\"https://www.isitwp.com/easily-backup-wordpress-site-step-step/\" title=\"How to Easily Back Up Your WordPress Site (Step by Step)\">how to easily backup your WordPress website</a> for more information.</p>\n<h3>Step 2: Update Your WordPress Themes and Plugins</h3>\n<p>Next, you&#8217;ll need to update all your themes and plugins. Sometimes the older version of a theme or plugin may not be compatible with the newest WordPress release. In this case, your website may crash or show errors upon updating to the latest WordPress version.</p>\n<p>To update your themes and plugins, you can go to <strong>Dashboard &raquo; Updates</strong> in your WordPress admin area.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/updatespage.jpg\" alt=\"Updates page on WordPress dashboard\" width=\"775\" height=\"484\" class=\"alignnone size-full wp-image-226323\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/updatespage.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/updatespage-300x187.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/updatespage-768x480.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>You can also update your themes or plugins separately. For themes, you can go to <strong>Appearance &raquo; Themes</strong> and update your themes one-by-one.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/updatethemes.jpg\" alt=\"Update themes\" width=\"775\" height=\"382\" class=\"alignnone size-full wp-image-226324\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/updatethemes.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/updatethemes-300x148.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/updatethemes-768x379.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Similar to your themes, you can go to the <strong>Plugins &raquo; Installed Plugins</strong> page in your WordPress admin area to update your plugins one-by-one.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/updateplugins.jpg\" alt=\"Update plugins\" width=\"775\" height=\"355\" class=\"alignnone size-full wp-image-226325\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/updateplugins.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/updateplugins-300x137.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/updateplugins-768x352.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>After updating your themes and plugins, you&#8217;re ready to start the process of upgrading WordPress.</p>\n<h3>Step 3 (A): Upgrading WordPress from Admin Dashboard (Easy Way)</h3>\n<p>This is the simple way to update your WordPress website. You can click on the &#8216;Update Now&#8217; link in your admin dashboard. It&#8217;ll show you the WordPress Updates page. Since you already created a complete backup of your WordPress site, you can simply click on the &#8216;Update Now&#8217; button.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/updatewpnow.jpg\" alt=\"Update WordPress now\" width=\"775\" height=\"270\" class=\"alignnone size-full wp-image-226518\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/updatewpnow.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/updatewpnow-300x105.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/updatewpnow-768x268.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p><strong>Note:</strong> If you&#8217;re not the site administrator, then the notification will ask you to inform the admin about the new version release.</p>\n<p>Once the update is done, you&#8217;ll see a welcome page to the new and latest WordPress dashboard. You can visit your website to enjoy the new and latest WordPress version.</p>\n<h3>Step 3 (B): Manually Upgrade WordPress by Uploading Files</h3>\n<p>To manually upgrade WordPress by uploading files on your hosting server, you&#8217;ll need to follow the steps below:</p>\n<p><strong>Download the Latest Version of WordPress</strong></p>\n<p>The first thing you need to do is to download the <a href=\"https://wordpress.org/download/\" target=\"_blank\" title=\"WordPress.org Website\" rel=\"nofollow\">latest version of WordPress</a>. The official website will always show the most recent version available. You can click on the &#8216;Download WordPress&#8217; button to get it for free.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/downloadwplatest.jpg\" alt=\"Download the latest WordPress version\" width=\"775\" height=\"410\" class=\"alignnone size-full wp-image-226503\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/downloadwplatest.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/downloadwplatest-300x159.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/downloadwplatest-768x406.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>A zip file will be downloaded. You can extract the files on a folder to upload them to your server manually. Simply log into an FTP client like FileZilla or SmartFTP with your username and password to connect to your website.</p>\n<p>After that you can upload and overwrite the WordPress core files to upgrade your website to the latest version.</p>\n<p><strong>Upload and Overwrite WordPress Core Files</strong></p>\n<p>You&#8217;ll need to upload all of WordPress&#8217; core files from the folder that you extracted previously to your WordPress hosting server. Once you upload the files, it&#8217;ll open up a window that asks if you want to overwrite files. Simply select the overwrite option and click on the &#8216;OK&#8217; button.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/uploadfiles.jpg\" alt=\"Upload WordPress files\" width=\"775\" height=\"400\" class=\"alignnone size-full wp-image-226529\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/uploadfiles.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/uploadfiles-300x155.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/uploadfiles-768x396.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Make sure to skip the &#8216;wp-content&#8217; folder. This folder contains your themes, plugins, uploads, and other useful files. Since you manually updated your themes and plugins, this folder can remain as-is.</p>\n<p>Once all the files are uploaded, you can go ahead and visit your website to see if everything&#8217;s working as it has to be.</p>\n<h3>Step 4: Run the Database Upgrade Script (Optional)</h3>\n<p>If you&#8217;re upgrading from a much older version of WordPress, then there&#8217;s a slight chance you&#8217;ll see a screen like this:</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/wordpressdatabaseupgrade.jpg\" alt=\"WordPress database upgrade\" width=\"775\" height=\"224\" class=\"alignnone size-full wp-image-226539\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/wordpressdatabaseupgrade.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/wordpressdatabaseupgrade-300x87.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/wordpressdatabaseupgrade-768x222.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>It happens when you try to access your WordPress admin panel. This looks a lot scarier than it actually is. It&#8217;s a very quick process and your database upgrade will be successful in few minutes.</p>\n<p><strong>Note:</strong> It may or may not be necessary depending on which versions you&#8217;re updating between.</p>\n<h4>Things You Should Do After Upgrading WordPress</h3>\n<p>If everything&#8217;s working as it should be, then you&#8217;re done with properly upgrading WordPress to the latest version. </p>\n<p>In case, you see an error with your database, you can check our guide on <a href=\"https://www.isitwp.com/fix-error-establishing-database-connection-wordpress-step-step/\" title=\"How to Fix the Error Establishing a Database Connection in WordPress (Step by Step)\">how to fix the error establishing database connection in WordPress</a>. You should also not miss our handpicked list of <a href=\"https://www.isitwp.com/must-have-wordpress-plugins-for-business-websites/\" title=\"25 Must Have WordPress Plugins for Business Websites (Expert Pick)\">must-have WordPress plugins</a>.</p>\n<p>That&#8217;s all. We hope this guide helped you learn how to properly upgrade WordPress. If you found this post useful, you may also want to check out our guide on the <a href=\"https://www.isitwp.com/best-content-marketing-tools-plugins-wordpress/\" title=\"15 Best Content Marketing Tools and Plugins for WordPress\">best content marketing tools and plugins for WordPress websites</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/upgrading-wordpress-is-easier-than-you-think/\">How to Properly Upgrade WordPress (Step by Step)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://www.isitwp.com/upgrading-wordpress-is-easier-than-you-think/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"25\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:51:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"SurveyMonkey Alternative: WPForms vs SurveyMonkey (Compared)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://www.isitwp.com/surveymonkey-alternative-wpforms-vs-surveymonkey/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://www.isitwp.com/surveymonkey-alternative-wpforms-vs-surveymonkey/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 07 Jan 2019 10:59:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:24:\"best online form builder\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:43:\"comparison between wpforms and surveymonkey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:23:\"wpforms vs surveymonkey\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://www.isitwp.com/?p=225774\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:650:\"<p>Are you looking for a SurveyMonkey alternative? If you&#8217;re trying to find the best WordPress survey plugin for your website, you&#8217;ll need to give WPForms a try. In this article, we&#8217;ll compare WPForms and SurveyMonkey so that you can decide which online survey tool is the best option for you. Since we&#8217;re going to give [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/surveymonkey-alternative-wpforms-vs-surveymonkey/\">SurveyMonkey Alternative: WPForms vs SurveyMonkey (Compared)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Editorial Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:19836:\"<p>Are you looking for a SurveyMonkey alternative? If you&#8217;re trying to find the best WordPress survey plugin for your website, you&#8217;ll need to give WPForms a try. </p>\n<p>In this article, we&#8217;ll compare WPForms and SurveyMonkey so that you can decide which online survey tool is the best option for you. </p>\n<p>Since we&#8217;re going to give you a detailed comparison of WPForms vs. SurveyMonkey, here&#8217;s a quick table of contents to guide you through the article:</p>\n<ul>\n<li><a href=\"#general-overview\">General Details: WPForms vs SurveyMonkey</a></li>\n<li><a href=\"#ease-of-use\">Ease of Use Comparison</a></li>\n<li><a href=\"#features\">Features Comparison</a></li>\n<li><a href=\"#support\">Support Comparison</a></li>\n<li><a href=\"#price\">Price Comparison</a></li>\n<li><a href=\"#conclusion\">Conclusion: Who Should Purchase it? WPForms vs SurveyMonkey</a></li>\n</ul>\n<h3 id=\"general-overview\">General Details: WPForms vs SurveyMonkey</h3>\n<p>Before we dive into our comparison of <a href=\"https://wpforms.com/\" target=\"_blank\">WPForms</a> and <a href=\"https://www.surveymonkey.com/\" target=\"_blank\" rel=\"nofollow\">SurveyMonkey</a>, let&#8217;s first take a look at the basics of each survey tool. </p>\n<p><a href=\"https://wpforms.com/\" target=\"_blank\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-home.png\" alt=\"wpforms-overview-contact-form-plugin\" width=\"740\" height=\"336\" class=\"alignnone size-full wp-image-225788\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-home.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-home-300x136.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\n<a href=\"https://wpforms.com/\" target=\"_blank\">WPForms</a> is one of the <a href=\"https://www.isitwp.com/best-wordpress-contact-form-plugins/\">best contact form plugins</a> available and one of the most beginner-friendly. In minutes, you can create a powerful form for your website without having to know a thing about code using their drag and drop builder. </p>\n<p>Aside from basic contact form, WPForms lets you build highly engaging surveys and polls on your website. Unlike most contact form plugins, WPForms gives you beautiful survey reports with best visualization. This means you can easily analyze your survey results in real-time. And you can export and share individual charts as PDF or JPEG with just 1 click. </p>\n<p>Not only can you see your survey results in a visually stunning way but so can your website users. After they submit a form, you have the option to display real-time results to them too. WPForms also makes it super easy to turn any existing form on your website into a powerful survey or poll with just the click of a button. </p>\n<p><a href=\"https://www.surveymonkey.com/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/surveymonkey.png\" alt=\"surveymonkey-form-builder-comparison\" width=\"740\" height=\"294\" class=\"alignnone size-full wp-image-225807\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/surveymonkey.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/surveymonkey-300x119.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nSurveyMonkey on the other hand, is a popular online survey tool used to collect opinions from people like your website visitors for instance. </p>\n<p>SurveyMonkey comes with a number of pre-made templates and pre-written survey questions written by experts to help you build a survey for the web, email or social. They offer a partial drag and drop feature so you can customize templates to fit your brand and to rearrange and add different form fields. </p>\n<p>Other features of SurveyMonkey include metrics reporting to analyze the results of your survey and the ability to collect survey responses and credit card payments at the same time.</p>\n<p>Now that you know the basics of each survey tool, let&#8217;s take a look at the specifics of each to find out if WPForms is a good SurveyMonkey alternative. </p>\n<h3 id=\"ease-of-use\">Ease of Use</h3>\n<p><a href=\"https://wpforms.com/\" target=\"_blank\">WPForms</a> is one of the most user-friendly form plugins on the market and there&#8217;s no coding involved at all.  </p>\n<p>The simple drag and drop editor makes it easy for beginners to create a powerful form including survey. Even if you&#8217;ve never created a survey for your website before, you&#8217;ll be able to in minutes with this plugin. </p>\n<p>With WPForms, you can use their pre-designed templates for surveys or polls that have all the form fields you need to get started. You can easily add fields such as dropdowns, Likert scales, radio buttons, check boxes, star ratings and more. It&#8217;s also very simple to delete, edit and rearrange the order of fields using the drag and drop functionality. </p>\n<p>WPForms also shows a live preview of what your form will look like as you&#8217;re building it so you don&#8217;t need to keep switching between the editor and preview. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-simple.png\" alt=\"wpforms vs surveymonkey ease of use\" width=\"740\" height=\"357\" class=\"alignnone size-full wp-image-225812\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-simple.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-simple-300x145.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-simple-330x160.png 330w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>Plus, since WPForms is a WordPress plugin, users can quickly build a survey right from the WordPress dashboard, which makes the entire process easier. You can also collect the info from your surveys on your own website, instead of having to log in elsewhere like with SurveyMonkey.</p>\n<p>Embedding your finished form or survey onto your website is also very simple with WPForms. In just 2 clicks you can add your form to any page or post of your website. It also comes with a WPForms widget that allows you to display your form in the sidebar, footer, or any other widget areas of a website. </p>\n<p>You can also enable survey reporting with 1 click and WPForms will automatically generate a beautiful-looking report. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-embed-form.png\" alt=\"wpforms embed form on site\" width=\"740\" height=\"348\" class=\"alignnone size-full wp-image-225813\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-embed-form.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-embed-form-300x141.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<h3>Ease of Use: SurveyMonkey</h3>\n<p>SurveyMonkey is an online form builder that lets you create only 1 type of form: an online survey. </p>\n<p>When creating a survey, you&#8217;re able to choose from a dropdown menu the field format of your choosing like multiple choice, comment box, star rating, and more. If you&#8217;re having trouble thinking of questions there&#8217;s a Question Bank in the panel on the left side to give you some ideas. Once you see a question you like, you can add it to your form with the click of a button. </p>\n<p>The interface of SurveyMonkey isn&#8217;t very user-friendly. At first glance it seems easy to use but it takes several clicks to figure out how to add a question, add a form field, and get it looking the way you want it to.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/surveymonkey-builder.png\" alt=\"surveymonkey-form-builder\" width=\"740\" height=\"335\" class=\"alignnone size-full wp-image-225814\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/surveymonkey-builder.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/surveymonkey-builder-300x136.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>You can&#8217;t rearrange questions in your form by dragging and dropping because their drag and drop functionality is only partial. You have to click several buttons to choose the arrangement of your fields which means creating a form will take you much longer compared to WPForms.</p>\n<p>When creating a form with SurveyMonkey, you need to type in a question before you can add any more fields to your form. This means you can&#8217;t design an online form without adding questions which is not helpful for creating contact forms.</p>\n<p>Plus, if you only want to create surveys, there are still more steps involved to do so with SurveyMonkey than there is with WPForms. Since SurveyMonkey is an online form builder, users have to log in to SurveyMonkey to build a survey and then embed it on WordPress, instead of being able to build it right in the WordPress dashboard.</p>\n<p><strong>Winner:</strong> WPForms</p>\n<h3 id=\"features\">Features</h3>\n<p><a href=\"https://wpforms.com/\" target=\"_blank\">WPForms</a> comes with a wide array of features right out of the box. These features allow you to take your simple surveys and contact forms and turn them into powerful forms for business. </p>\n<p>Like we mentioned earlier, the <a href=\"https://wpforms.com/addons/surveys-and-polls-addon/\" target=\"_blank\">Poll/Survey addon from WPForms</a> lets you easily create a poll or survey to add to your WordPress site. The Poll/Survey addon comes with all the features you need to create awesome polls/surveys for your website visitors. </p>\n<p>WPForms boasts a number of awesome survey and poll fields including multiple choice, check boxes, star ratings, Likert scale, Net Promoter Score and more. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-poll.png\" alt=\"wpforms-survey-poll-form\" width=\"740\" height=\"447\" class=\"alignnone size-full wp-image-225819\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-poll.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-poll-300x181.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>With WPForms&#8217; smart conditional logic, you can personalize the survey based on the responses from users. You also get interactive survey reports with real-time insights and the ability to display real-time results from polls on your website. </p>\n<p>You can access many other cool features in WPForms to further enhance your surveys, polls or contact forms like the user registration addon. This gives users the ability to sign up and login to your site. You can embed the user registration form in any page, post, or widget-area of your site. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/user-registration-form.png\" alt=\"user registration form\" width=\"740\" height=\"447\" class=\"alignnone size-full wp-image-228061\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/user-registration-form.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/user-registration-form-300x181.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>The user registration form is great for <a href=\"https://www.isitwp.com/best-wordpress-ecommerce-plugins-compared/\">eCommerce stores</a>, membership sites, forums, and more. </p>\n<p>You can also create multi-page forms. If you have a really long survey or form that you want users to fill out, with <a href=\"https://www.isitwp.com/create-multi-page-form-wordpress/\" title=\"How to Create a Multi-Page Form in WordPress (Step by Step)\">WPForms multi-page forms</a>, you can split it up into multiple pages. This helps improve the user experience, so instead of endless scrolling, users can go easily from one page to the next, ultimately reducing form abandonment. </p>\n<p>WPForms comes with other awesome features and addons including additional form templates, captcha, geolocation, automatic form confirmations,payment gateways, <a href=\"https://www.isitwp.com/tips-get-email-subscribers/\">email marketing</a> services and more. All of these features make WPForms a powerful form plugin.</p>\n<h3>Features: SurveyMonkey</h3>\n<p>SurveyMonkey offers a number of added features to spruce up your online forms including file upload, A/B testing, the ability to accept payments, quizzes with custom feedback, and more. But compared to WPForms, the feature set that SurveyMonkey offers is limited. </p>\n<p>For instance, SurveyMonkey doesn&#8217;t offer any specialty fields like Captcha, password fields, or WPForms&#8217; GDPR Agreement. Conditional logic questions also have to be on their own separate page, which makes surveys longer than necessary and brings down the user experience. </p>\n<p>While they do offer file upload like we mentioned, the file upload field is limited to the 2 highest priced plans. Same with payment integrations; you can only accept payments with your forms on the 2 highest priced plans. And you can only <a href=\"https://www.isitwp.com/best-wordpress-translation-plugins-compared/\">translate your form into multiple languages</a> if you purchase the highest priced plan. </p>\n<p>The template designs that SurveyMonkey offers are quite basic as well. Plus, branding and customization capabilities are limited. One of the biggest downsides is that all plans except the most expensive one have the SurveyMonkey logo in the footer. You&#8217;re also unable to preview what your survey will look like without typing in an answer to each question. </p>\n<p>In addition to all that, with SurveyMonkey you can only create 1 type of form, an online survey. Whereas WPForms has many more features available for users who want to create a survey or many other types of online forms. </p>\n<p><strong>Winner:</strong>WPForms</p>\n<h3>Support</h3>\n<p><a href=\"https://wpforms.com/\" target=\"_blank\">WPForms</a> offers a wide array of support for its users in a number of different formats. So, no matter how you prefer to find solutions to your issues, WPForms has you covered. </p>\n<p>You can access their support ticket system right from your account and receive assistance from their knowledgeable and friendly support team. The support team is fast and has great ratings from their users. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-support.png\" alt=\"wpforms-support\" width=\"740\" height=\"405\" class=\"alignnone size-full wp-image-225836\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-support.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-support-300x164.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>You can also read through their extensive documentation that&#8217;s organized into categories like Getting Started, Functionality, Styling, Addons, and more. Finally, you can also refer to the WPForms blog where you&#8217;ll find tutorials and how-to&#8217;s that include screenshots and video to help you any time you run into a problem.</p>\n<h3>Support: SurveyMonkey</h3>\n<p>SurveyMonkey offers 24/7 email customer support, but to get prioritized email support you have to upgrade to a pricier plan. You upgrade your plan if you want to get access to phone support as well. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/surveymonkey-support.png\" alt=\"surveymonkey-support\" width=\"740\" height=\"431\" class=\"alignnone size-full wp-image-225837\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/surveymonkey-support.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/surveymonkey-support-300x175.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>SurveyMonkey also offers support through the Help section on their website, but that means having to browse through questions and hope you find one that matches your issue. They don&#8217;t offer any blog posts or tutorials for users to follow. </p>\n<p><strong>Winner:</strong>WPForms</p>\n<h3 id=\"price\">Price</h3>\n<p><a href=\"https://wpforms.com/\" target=\"_blank\">WPForms</a> has multiple pricing plans which gives you the  opportunity to stay on budget if you&#8217;re just starting out or get access to all the features you need if you&#8217;re an established business. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-price.png\" alt=\"wpforms-pricing\" width=\"742\" height=\"369\" class=\"alignnone size-full wp-image-225838\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-price.png 742w, https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-price-300x149.png 300w\" sizes=\"(max-width: 742px) 100vw, 742px\" /></p>\n<p>Their Basic plan starts out at $39.50 per year which is a great option for most <a href=\"https://www.isitwp.com/how-to-start-a-blog-step-by-step/\">blogs and personal websites</a>. Plus with the Basic plan, you still get the ability to create and receive unlimited forms, conditional logic, advanced fields, and more. </p>\n<p>They also offer a Plus, Pro, and Elite plan if you need to upgrade at any time to get more robust features like email marketing service integration or payment integration with PayPal or Stripe for example. Whatever the size of your business or your budget, you&#8217;ll find a WPForms price plan to match your needs. </p>\n<h3>Price: SurveyMonkey</h3>\n<p>SurveyMonkey has 3 individual premium pricing plans to choose from and the prices range from $32 per month to $99 per month. When compared to WPForms, you get much less bang for your buck in terms of features with SurveyMonkey.  </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/surveymonkey-pricing.png\" alt=\"surveymonkey-price\" width=\"740\" height=\"416\" class=\"alignnone size-full wp-image-227894\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/surveymonkey-pricing.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/surveymonkey-pricing-300x169.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>You get an unlimited number of surveys, questions, and responses with each paid plan but most of the best features are only offered with the 2 most expensive plans like payment collection, file upload, advanced logic, and priority support. And with all of the plans except for the most expensive one, you&#8217;ll have to put up with the SurveyMonkey logo in the footer. </p>\n<p>While there&#8217;s a free version for SurveyMonkey, you can collect only 100 responses per survey. So, it gets quite expensive if you want to collect more responses and conduct a survey for a long duration of time. </p>\n<p><strong>Winner:</strong>WPForms</p>\n<h3 id=\"conclusion\">Who Should Purchase It? WPForms vs. SurveyMonkey</h3>\n<p>WPForms is the best choice for everyone who wants to conduct a survey from a WordPress site, regardless of their budget. Not only is it more affordable but it&#8217;s more user-friendly and it comes jam packed with features to help you create a number of different types of powerful forms for your website including contact forms. With WPForms you can create awesome surveys for your website visitors and so much more. </p>\n<p><a href=\"https://wpforms.com/\" target=\"_blank\">Get Started with WPForms Today!</a></p>\n<p>SurveyMonkey is best suited for users who want to collect advanced surveys from across multiple platforms like websites, social media platforms, and email. Before jumping in, double check whether you have the budget to afford it because you have to opt for the most expensive plan to get access to the best features.</p>\n<p>We hope you enjoyed this article on WPForms vs SurveyMonkey and that you now know which solution is the best choice for you. </p>\n<p>If you liked this post, you also might enjoy our in-depth <a href=\"https://www.isitwp.com/wordpress-plugins/wpforms/\">review of the WPForms plugin</a>.  </p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/surveymonkey-alternative-wpforms-vs-surveymonkey/\">SurveyMonkey Alternative: WPForms vs SurveyMonkey (Compared)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://www.isitwp.com/surveymonkey-alternative-wpforms-vs-surveymonkey/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:54:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"How to Choose the Best Domain Name Registrar in 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://www.isitwp.com/choose-best-domain-name-registrar/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://www.isitwp.com/choose-best-domain-name-registrar/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Jan 2019 11:27:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:9:\"Resources\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:23:\"choose your domain name\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:6:\"domain\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"domain name\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:16:\"domain registrar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://www.isitwp.com/?p=227741\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:597:\"<p>Looking for the best domain name registrar to purchase a domain name? To start a website, you&#8217;ll need to buy a domain name and web hosting. With the right domain name, you can summarize your complete business idea into a word or two. This is why it&#8217;s important to choose the perfect domain name and [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/choose-best-domain-name-registrar/\">How to Choose the Best Domain Name Registrar in 2019</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Editorial Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:22104:\"<p>Looking for the best domain name registrar to purchase a domain name? To start a website, you&#8217;ll need to buy a domain name and web hosting. With the right domain name, you can summarize your complete business idea into a word or two. This is why it&#8217;s important to choose the perfect domain name and buy it from the best domain provider on the market.</p>\n<p>In this article, we&#8217;ll share how to choose the best domain name registrar for your needs and compare the top domain sellers.</p>\n<p>Since this is a long article, we&#8217;ll provide a table of contents for your assistance:</p>\n<p><a href=\"#domainreg\">I. What&#8217;s a domain name registrar?</a></p>\n<p><a href=\"#choosereg\">II. How to choose a domain name registrar</a></p>\n<ol>\n<li><a href=\"#pricing\">Pricing</a></li>\n<li><a href=\"#regperiod\">Registration period</a></li>\n<li><a href=\"#expirationgrace\">Expiration grace period</a></li>\n<li><a href=\"#capitalizing\">Capitalizing on expired domains</a></li>\n<li><a href=\"#transfer\">Domain transfer and fees</a></li>\n<li><a href=\"#addonservices\">Addon services</a></li>\n<li><a href=\"#userexperience\">User experience</a></li>\n<li><a href=\"#hiddenfees\">Hidden fees</a></li>\n<li><a href=\"#customersupport\">Customer support</a></li>\n</ol>\n<p><a href=\"#bestdomainreg\">III. The best domain name registrars for 2019 (Compared)</a></p>\n<h3 id=\"domainreg\">What&#8217;s a Domain Name Registrar?</h3>\n<p>A domain name registrar is a service you can use to register a business name for your online representation. There&#8217;re hundreds of domain providers in the world with different prices and features.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/nameboy.jpg\" alt=\"Nameboy\" width=\"775\" height=\"400\" class=\"alignnone size-full wp-image-227760\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/nameboy.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/nameboy-300x155.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/nameboy-768x396.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Normally, you know the business name that you want to register. However, there&#8217;re services like <a href=\"https://www.nameboy.com/\" target=\"_blank\" title=\"Nameboy\">Nameboy</a> who also help users to <a href=\"https://www.isitwp.com/domain-name-generator/\" title=\"Best Free Domain Name Generator\">generate business name ideas and URLs</a>. Moreover, the domain name registrars are accredited by ICANN (Internet Corporation for Assigned Names and Numbers) and they allow these registrars to provide domain names to businesses and individuals.</p>\n<h3 id=\"choosereg\">How to Choose a Domain Name Registrar</h3>\n<p>Before choosing a domain name registrar, you&#8217;ll need to look into a few basic things, like top level domains (TLDs). The top level domains (.com, .net, .io, .biz, etc) are a part of the domain name system (DNS) and not all the registrars offer all TLDs. Let&#8217;s see an example of the domain structure for better understanding.</p>\n<p><strong>For example:</strong> www.mywebsite.com</p>\n<p>In this domain structure, &#8216;www&#8217; is the protocol, &#8216;mywebsite&#8217; is your business name or second level domain (SLD), and &#8216;.com&#8217; is the top level domain (TLD). You can choose any TLD that you need. Though you&#8217;ll need to check whether your domain registrar is selling it or not.</p>\n<p>Easy, right?</p>\n<p>The domain name search should be simple and intuitive. Sometimes you know what domain name you need to register. But, if you&#8217;re confused about it, then the smart search system should also give suggestions in the search results to help you select your business name.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/searchexamples.jpg\" alt=\"Search examples\" width=\"775\" height=\"450\" class=\"alignnone size-full wp-image-227795\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/searchexamples.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/searchexamples-300x174.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/searchexamples-768x446.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>There&#8217;re many other aspects we&#8217;ll be discussing below to help you choose the best domain name registrar for your domain name. </p>\n<h3 id=\"pricing\">1. Pricing</h3>\n<p>Pricing is the key feature that can aye or nay your decision to purchase a domain name from a specific registrar. The default process with most of the registrars includes searching a domain name, checking for domain availability, and purchasing it.</p>\n<p>However, there&#8217;re a few domain sellers who don&#8217;t keep this process as simple as it sounds. You may find addons, hidden service charges, additional renewal fees, etc. tacked on. It&#8217;s important to know when a domain registrar is not honest with pricing, and if there are any hidden aspects you&#8217;re not seeing.</p>\n<p>Make sure you check the total pricing of a domain name inclusive of all hidden charges before making your purchase.</p>\n<h3 id=\"regperiod\">2. Registration Period</h3>\n<p>You can register the domain names for as many years as you want. There&#8217;s no restriction forcing you to buy it for 1 year only. If you choose to purchase a domain name for more than 1 year, then you&#8217;ll save the additional renewal fees that you&#8217;d need to pay every year. However, you&#8217;ll need to renew the domain name before it expires for the continuation of service.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/domainregperiod.jpg\" alt=\"Domain registration period\" width=\"775\" height=\"322\" class=\"alignnone size-full wp-image-227801\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/domainregperiod.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/domainregperiod-300x125.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/domainregperiod-768x319.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>The registration period can be extended anytime during the year or at the time of expiration of your domain. Most domain registrars send emails and notify users about the expiration date. This helps in renewing your domain before expiration.</p>\n<h3 id=\"expirationgrace\">3. Expiration Grace Period</h3>\n<p>In case, you forget to renew the domain name in time and it expires, then your domain registrar should wait a month before deleting your domain name from their list. This is called the expiration grace period. Once your domain name is deleted, it&#8217;ll be available to public and you can lose it.</p>\n<p>The expiration grace period is an opportunity for users to renew their domain name after the expiration date. Some of the domain sellers may not offer the expiration grace period and delete your domain right away at the time of expiration. In that case, you&#8217;ll need to be careful and renew the domain name before the expiry date.</p>\n<p>We recommend you choose a domain provider who offers a grace period. That way you&#8217;ll have enough time to renew your domain name. Another easy way is to set your domain name on auto-renewal. It&#8217;ll save you time and give you peace of mind.</p>\n<h3 id=\"capitalizing\">4. Capitalizing on Expired Domains</h3>\n<p>This is a common practice among domain registrars. Once your domain expires and isn&#8217;t renewed within the grace time, the registrar puts it up for auction. This auction or capitalization is based on the popularity of the domain name. If your domain name is common, then the registrars ask for a hefty amount on the bid.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/domainauction.jpg\" alt=\"Domain bids\" width=\"775\" height=\"486\" class=\"alignnone size-full wp-image-227798\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/domainauction.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/domainauction-300x188.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/domainauction-768x482.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>With unique and unwanted domain names, the registrar sticks to an amount more than the actual price to capitalize on the expired domains. If you want to continue with your domain name, then make sure to renew it in time to avoid paying more later on.</p>\n<h3 id=\"transfer\">5. Domain Transfer and Fees</h3>\n<p>It&#8217;s not as difficult as it sounds to move your domain from one registrar to another. In the beginning, you might buy domains from any registrar, but you&#8217;ll need a reliable domain seller for long-term business. A domain name is eligible to transfer after 60 days from the date of purchase.</p>\n<p>We&#8217;ll share the best domain name registrars below in this article, so you can choose smartly. But, before that, you should know about the transferring fees.</p>\n<p>Domain registrars charge a fee to transfer your domain name to other registrars. This transfer fees can come with hidden service charges that you should know before processing it. If you have multiple domain names registered with one seller, then you can also make a deal to save some money on bulk transfers.</p>\n<h3 id=\"addonservices\">6. Addon Services</h3>\n<p>Generally the domain name registrars have other products like web hosting, SSL certificates, email services, etc. As long as they don&#8217;t make it mandatory for you to buy the addons with your domain, it&#8217;s absolutely fine. You can remove the checks from the addons and pay for your domain name only.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/domainaddons.jpg\" alt=\"Domain addons\" width=\"775\" height=\"257\" class=\"alignnone size-full wp-image-227799\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/domainaddons.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/domainaddons-300x99.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/domainaddons-768x255.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>However, there&#8217;re a few domain registrars who force you to purchase addon services with your domain name. In that case, you should look for a better provider when registering your domain name and don&#8217;t pay for the services that have little or no value to you.</p>\n<h3 id=\"userexperience\">7. User Experience</h3>\n<p>As shared previously, the domain industry has hundreds of registrars who&#8217;re accredited by ICANN. Each registrar comes with their own services, features, and pricing. You can search for reviews and read what their users have to say about their service.</p>\n<p>User experiences always help in choosing the best domain name registrar. They show the pros and cons of a registrar clearly, so you can decide about a domain provider before purchasing your online business name.</p>\n<h3 id=\"hiddenfees\">8. Hidden fees</h3>\n<p>When starting your business, you may look for a domain registrar that offers low cost domain names and has no hidden fees. However, the hidden fees can affect you at any stage. In the pricing section above, we talked about the confirmation of total pricing with the domain provider. But hidden fees are important to discuss separately too.</p>\n<p>Some of the domain registrars consider it unnecessary to display honest pricing. The best way to discover the hidden fees is by observing the * sign with the domain price. It indicates that the information isn&#8217;t complete.</p>\n<p>You should follow the * sign to see the notice mentioned with it. If you&#8217;re not sure, then talk to a representative of the domain registrar. Sometimes the hidden fees are so much that they can affect your budget extremely badly. Be 100% sure about the pricing before hitting the pay button.</p>\n<h3 id=\"customersupport\">9. Live Chat Support</h3>\n<p>Customer support is common with the web hosting services. Most of the domain registrars prefer email support or ticket-based support. They add FAQs / knowledgebases on their websites to answer the general questions from users. However, there&#8217;re few providers who also offer live chat support for domain purchase.</p>\n<p>Live chat support helps beginners to get solutions quickly. For example, if you need help with the nameservers to place against your domain and you&#8217;re new to the domain registrar dashboard, then you can simply talk to a representative on live chat support to get it done.</p>\n<h3 id=\"bestdomainreg\">The Best Domain Name registrars for 2019 Compared</h3>\n<p>We shared how to choose the best domain provider for your domain name. Now, it&#8217;s the time to tell you our expert picks for the best domain name registrars. These registrars are known for different features and pricing. You can choose the one that best fulfills your requirements.</p>\n<h3><a href=\"https://www.isitwp.com/refer/namecheap/\" target=\"_blank\" title=\"NameCheap\" rel=\"nofollow\">Namecheap</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/namecheap/\" target=\"_blank\" title=\"NameCheap\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/namecheap.jpg\" alt=\"NameCheap\" width=\"775\" height=\"400\" class=\"alignnone size-full wp-image-227752\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/namecheap.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/namecheap-300x155.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/namecheap-768x396.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Namecheap is a popular domain name provider. They offer reasonable pricing and are trusted by millions of users for their domain name registrations. Namecheap has other services like web hosting, SSL certificates, WHOIS protection, free DNS, and more.</p>\n<p>They have amazing live chat support and an extensive knowledgebase that can help users with their questions. Besides that, they also host video tutorials for their users to help with purchasing and managing domain names. Their payment method is fast and secure. They allow users to make payments using credit cards, funds, or PayPal.</p>\n<p>The auto-renewal option enables users to stick with <a href=\"https://www.isitwp.com/refer/namecheap/\" target=\"_blank\" title=\"NameCheap\" rel=\"nofollow\">Namecheap</a> for a longer period. Their renewal fees are affordable, and they also offer discounts on new domain name registrations.</p>\n<h3><a href=\"https://www.isitwp.com/refer/bluehost/\" target=\"_blank\" title=\"Bluehost\" rel=\"nofollow\">Bluehost</a></h3>\n<p>Bluehost is one of the most popular <a href=\"https://www.isitwp.com/difference-between-domain-name-and-web-hosting-revealed/\" title=\"What’s the Difference Between Domain Name and Web Hosting? (REVEALED)\">domain name and web hosting</a> providers in the world. They offer the cheapest rates for beginners to get started. Bluehost is also officially recommended by the WordPress core.</p>\n<p>Their support is powerful and they&#8217;ve options from beginner-level to enterprise users. For IsItWP users, they offer a free domain name, free SSL certificate, and a good discount on web hosting.</p>\n<p><a href=\"https://www.isitwp.com/refer/bluehost/\" target=\"_blank\" title=\"Bluehost\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/bluehost-wordpress.png\" alt=\"start-a-website-bluehost\" width=\"740\" height=\"419\" class=\"alignnone size-full wp-image-225328\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/bluehost-wordpress.png 740w, https://www.isitwp.com/wp-content/uploads/2018/11/bluehost-wordpress-300x170.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a></p>\n<p>If you&#8217;re looking for a complete package to start over, then Bluehost is the right choice for you. They offer easy scaling options and you can always talk to their friendly support team as your business grows.</p>\n<p>Bluehost provides <a href=\"https://www.isitwp.com/refer/bluehost-dedicated/\" target=\"_blank\" title=\"Bluehost Dedicated\" rel=\"nofollow\">dedicated hosting</a>, <a href=\"https://www.isitwp.com/refer/bluehost-woocommerce/\" target=\"_blank\" title=\"Bluehost WooCommerce\" rel=\"nofollow\">WooCommerce hosting</a>, <a href=\"https://www.isitwp.com/refer/bluehost-vps/\" target=\"_blank\" title=\"Bluehost VPS\" rel=\"nofollow\">VPS hosting</a>, <a href=\"https://www.isitwp.com/refer/bluehost-cloud/\" target=\"_blank\" title=\"Bluehost Cloud\" rel=\"nofollow\">cloud hosting</a>, and <a href=\"https://www.isitwp.com/refer/bluehost-managed/\" target=\"_blank\" title=\"Bluehost Managed Hosting\" rel=\"nofollow\">managed web hosting</a>. They also have custom plans for the large scale websites.</p>\n<p><a href=\"https://www.isitwp.com/refer/bluehost/\" target=\"_blank\" rel=\"nofollow\" class=\"btn ltgreen light\">Get a Free Domain Name with Bluehost Hosting&raquo;</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/hostgator/\" target=\"_blank\" title=\"Hostgator\" rel=\"nofollow\">Hostgator</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/hostgator/\" target=\"_blank\" title=\"Hostgator\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/hostgator.jpg\" alt=\"Hostgator\" width=\"775\" height=\"400\" class=\"alignnone size-full wp-image-227754\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/hostgator.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/hostgator-300x155.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/hostgator-768x396.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Hostgator is a reliable domain name registrar and web hosting provider. They provide complete packages / bundles to buy domain names and web hosting together. If you plan to buy hosting with them, then they offer a free domain name, email, and web hosting for up to $3 / month.</p>\n<p>Commonly known for the web hosting, Hostgator is trusted by over 10 million users which lists them among the <a href=\"https://www.isitwp.com/hosting-reviews/\" title=\"The Best Web Hosting Companies of 2018 (Real Reviews, No B.S)\">top web hosting providers</a> in the world. They&#8217;re the right choice for beginners to advanced users.</p>\n<p>Hostgator has reseller plans which means you can start your own web hosting business. They also offer <a href=\"https://www.isitwp.com/refer/hostgator-wp-cloud/\" target=\"_blank\" title=\"Hostgator Cloud\" rel=\"nofollow\">cloud hosting</a>, WordPress hosting, <a href=\"https://www.isitwp.com/refer/hostgator-vps/\" target=\"_blank\" title=\"VPS hosting\" rel=\"nofollow\">VPS hosting</a>, and <a href=\"https://www.isitwp.com/refer/hostgator-dedicated-server/\" target=\"_blank\" title=\"Hostgator Dedicated\" rel=\"nofollow\">dedicated hosting</a>.</p>\n<h3><a href=\"https://www.isitwp.com/refer/godaddy/\" target=\"_blank\" title=\"GoDaddy\" rel=\"nofollow\">GoDaddy</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/godaddy/\" target=\"_blank\" title=\"GoDaddy\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/godaddy.jpg\" alt=\"GoDaddy\" width=\"775\" height=\"400\" class=\"alignnone size-full wp-image-227758\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/godaddy.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/godaddy-300x155.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/godaddy-768x396.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>GoDaddy is one of the most popular domain registrars in the world. They offer low-cost domain names with many other tools and services. GoDaddy is the first choice for many users looking to start on a low budget. However, their renewal charges are more than usual, so be prepared to spend less to start and pay more later.</p>\n<p>They&#8217;re a step ahead when it comes to customer support. You can directly call them to talk to one of their representatives and discuss about your requirements. GoDaddy is well-known for their quality service and reliability.</p>\n<p>If you choose to buy their hosting bundles, then they also offer a free domain name with each hosting plan. They provide the largest collection of web applications like WordPress, Joomla, Magento, Drupal, and more with easy 1-click installation.</p>\n<h3><a href=\"https://www.isitwp.com/refer/domain-com/\" target=\"_blank\" title=\"Domain.com\" rel=\"nofollow\">Domain.com</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/domain-com/\" target=\"_blank\" title=\"Domain.com\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/domaincom.jpg\" alt=\"Domain.com\" width=\"775\" height=\"400\" class=\"alignnone size-full wp-image-227756\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/domaincom.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/domaincom-300x155.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/domaincom-768x396.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>As the name suggests, Domain.com is a popular domain name provider. They offer affordable pricing with several tools for beginners and advanced users. Like the other popular domain registrars, they also provide bundles for domain name and web hosting. On buying their hosting plan, you&#8217;ll get a free domain name to <a href=\"https://www.isitwp.com/simple-wordpress-themes-easily-start-website/\" title=\"43 Simple WordPress Themes to Easily Start a Website\">start your website</a>.</p>\n<p>They offer a simple domain transfer facility, web designing service, <a href=\"https://www.isitwp.com/best-email-marketing-services-compared/\" title=\"9 Best Email Marketing Services Compared (2018)\">email service</a>, and more. Domain.com also offers good discounts to new domain name registrants.</p>\n<p>We hope this article helped you learn how to choose the best domain name registrar to purchase your domain.</p>\n<p>If you enjoyed this post, you might also like our step-by-step guide on <a href=\"https://www.isitwp.com/how-to-start-a-blog-step-by-step/\" title=\"How to Start a Blog (and Make Extra Income on the Side) in 2018\">how to start a blog</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/choose-best-domain-name-registrar/\">How to Choose the Best Domain Name Registrar in 2019</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://www.isitwp.com/choose-best-domain-name-registrar/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:51:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"100+ Amazing Blogging Stats &amp; Facts (Ultimate List)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://www.isitwp.com/amazing-blogging-stats-facts/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://www.isitwp.com/amazing-blogging-stats-facts/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Jan 2019 12:59:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:9:\"Resources\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:14:\"blogging facts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:19:\"blogging statistics\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:19:\"blogging stats 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://www.isitwp.com/?p=227773\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:626:\"<p>Do you want to stay up-to-date on the latest blogging stats and facts? Whether you&#8217;re blogging for your business or starting your own blog this year, knowing the ins and outs of the blogging universe is important. Knowing the most essential blogging statistics will help you create content that gets results. But you can&#8217;t spend [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/amazing-blogging-stats-facts/\">100+ Amazing Blogging Stats &#038; Facts (Ultimate List)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Editorial Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:34148:\"<p>Do you want to stay up-to-date on the latest blogging stats and facts? Whether you&#8217;re blogging for your business or starting your own blog this year, knowing the ins and outs of the blogging universe is important. Knowing the most essential blogging statistics will help you create content that gets results. </p>\n<p>But you can&#8217;t spend all day scouring the internet trying to find accurate blogging stats. Well, don&#8217;t worry, we&#8217;ve done all the work for you! We&#8217;ve compiled this ultimate list of 100+ amazing blogging stats and facts so you can stay on top of the latest trends and make sure your blog is successful this year. </p>\n<p>Since we&#8217;ve collected such a huge number of blogging stats, here&#8217;s a quick table of contents to guide you through the article. </p>\n<ul>\n<li><a href=\"#general-blogging-statistics\">General Blogging Statistics</a></li>\n<li><a href=\"#benefits\">Blogging Benefits</a></li>\n<li><a href=\"#interaction\">Reader Engagement</a></li>\n<li><a href=\"#time\">Writing Duration</a></li>\n<li><a href=\"#length\">Optimum Blog Post Length</a></li>\n<li><a href=\"#headline\">Blogging Headlines</a></li>\n<li><a href=\"#publish\">Blogging Frequency</a></li>\n<li><a href=\"#success\">Secret to Blogging Success</a></li>\n<li><a href=\"#evolve\">Blogging Evolution</a></li>\n<li><a href=\"#promote\">Blog Promotions</a></li>\n<li><a href=\"#seo\">SEO and Analytics</a></li>\n<li><a href=\"#invest\">Business Blogging</a></li>\n</ul>\n<p>Now, let&#8217;s dive into to these awesome blogging statistics and facts!</p>\n<h3 id=\"general-blogging-statistics\">General Blogging Statistics</h3>\n<p>Blogging is becoming more popular every year and new people are searching for &#8220;<a href=\"https://www.isitwp.com/how-to-start-a-blog-step-by-step/\">how to start a blog</a>&#8221; on Google every day. Take a look at some general statistics that show the huge growth of blogging.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/blogstats4.png\" alt=\"wordpress-blogging-stats\" width=\"740\" height=\"382\" class=\"alignnone size-full wp-image-227815\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/blogstats4.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/blogstats4-300x155.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>1. In 2018, there were 30.6 million bloggers in the United States. By 2020, the number of bloggers in the U.S. is set to reach 31.7 million. (<a href=\"https://www.statista.com/statistics/187267/number-of-bloggers-in-usa/\" target=\"_blank\" rel=\"nofollow\">Statista</a>)</p>\n<p>2. There are more than 20 billion blog post views each month on the <a href=\"https://www.isitwp.com/best-website-builders-for-beginners-compared-2018/\">WordPress platform</a>. (<a href=\"https://en.wordpress.com/activity/traffic/\" target=\"_blank\" rel=\"nofollow\">WordPress</a>)</p>\n<p>3. More than 2 billion blog posts were written in 2018 and more than 3 million were written so far today.(<a href=\"http://www.internetlivestats.com/\" target=\"_blank\" rel=\"nofollow\">Internet Live Stats</a>)</p>\n<p>4. WordPress users produce about 69.3 million new blog posts and 72.0 million new comments each month. (<a href=\"https://wordpress.com/activity/\" target=\"_blank\" rel=\"nofollow\">WordPress</a>)</p>\n<p>4. The content marketing industry is set to be worth $300 billion in 2019. (<a href=\"https://www.socialmediatoday.com/marketing/content-marketing-statistics-trends-2017-edition-infographic\" target=\"_blank\" rel=\"nofollow\">Social Media Today)</a></p>\n<p>5. 89% of B2B marketers are using content marketing and 86% of B2C marketers are using content marketing. (<a href=\"https://www.socialmediatoday.com/marketing/content-marketing-statistics-trends-2017-edition-infographic\" target=\"_blank\" rel=\"nofollow\">Social Media Today</a>)</p>\n<p>6. 77% of Internet users read blog articles. (<a href=\"https://www.impactbnd.com/blogging-statistics-55-reasons-blogging-creates-55-more-traffic\" target=\"_blank\" rel=\"nofollow\">Impact</a>)</p>\n<p>7. Tumblr hosts 441.4 million blog accounts. (<a href=\"https://www.statista.com/statistics/256235/total-cumulative-number-of-tumblr-blogs/\" target=\"_blank\" rel=\"nofollow\">Statista</a>) </p>\n<h3 id=\"benefits\">Blogging Benefits &#8211; Statistics, Facts &#038; Figures</h3>\n<p>Blogging is a great way to present yourself as a thought leader in your industry, but what else can it do for your business? Here&#8217;s a run-down of some  blogging stats that prove the huge benefits of blogging, from increased traffic to boosting sales. </p>\n<p>1. Companies who blog receive 97% more links to their website. (<a href=\"https://blog.hubspot.com/marketing/business-blogging-in-2015\" target=\"_blank\" rel=\"nofollow\">Hubspot</a>)</p>\n<p>2. Marketers who have prioritized blogging are 13X more likely to enjoy positive ROI.</p>\n<p>3. B2B marketers that use blogs receive 67% more leads than those that do not. </p>\n<p>4. Businesses that blog generate 2X more email traffic than those who don&#8217;t. </p>\n<p>5. 57% of the respondents in HubSpot&#8217;s State of Inbound Marketing study reported that they have acquired a customer through their company blog. </p>\n<p>6. Blogging businesses experience 126% higher lead growth than non-blogging businesses. </p>\n<p>7. Once you write 21-54 blog posts, blog traffic generation increases by up to 30%. (<a href=\"https://trafficgenerationcafe.com/how-blogging-increases-lead-generation/\" target=\"_blank\" rel=\"nofollow\">Traffic Generation Cafe)</a></p>\n<p>8. On average, companies that blog receive 434% more indexed pages and 55% more website visitors. </p>\n<p>9. Better content can drive traffic to a blog by up to 2,000%. (<a href=\"https://www.omnicoreagency.com/digital-marketing-statistics-2018/\" target=\"_blank\" rel=\"nofollow\">Omnicore</a>)</p>\n<p>10. Content marketing gets 3X more leads than paid search advertising. (<a href=\"https://contentmarketinginstitute.com/2017/10/stats-invest-content-marketing/\" target=\"_blank\" rel=\"nofollow\">Content Marketing Institute</a>)</p>\n<h3 id=\"interaction\">Reader Engagement &#8211; Stats &#038; Facts</h3>\n<p>Bloggers write content for their readers, so how do internet users feel about blogs and how do they typically interact with them? Below are some statistics about blog engagement. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/shutterstock_691519156.jpg\" alt=\"readers-of-blogs\" width=\"740\" height=\"425\" class=\"alignnone size-full wp-image-227789\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/shutterstock_691519156.jpg 740w, https://www.isitwp.com/wp-content/uploads/2018/12/shutterstock_691519156-300x172.jpg 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>1. Blogs have been rated as the 5th most trusted source for accurate online information. (<a href=\"https://blog.hubspot.com/marketing/business-blogging-in-2015\" target=\"_blank\" rel=\"nofollow\">Hubspot</a>)</p>\n<p>2. Blog posts are among the most shared content online. (<a href=\"https://optinmonster.com/content-marketing-statistics/\" target=\"_blank\">OptinMonster</a>)</p>\n<p>3. The average reader only spends 37 seconds reading an article or blog post. (<a href=\"https://www.socialmediatoday.com/marketing/content-marketing-statistics-trends-2017-edition-infographic\" target=\"_blank\" rel=\"nofollow\">Social Media Today)</a></p>\n<p>4. 73% of visitors skim rather than read the blog post thoroughly. (<a href=\"https://blog.hubspot.com/news-trends/content-trends-preferences\" target=\"_blank\" rel=\"nofollow\">Hubspot</a>)</p>\n<p>5. 47% of internet users between the age of 19-29 read blogs on a computer regularly. (<a href=\"https://www.statista.com/statistics/479180/internet-users-who-engaged-with-blogs-on-computer-within-the-last-month-usa/\" target=\"_blank\" rel=\"nofollow\">Statista</a>)</p>\n<p>6. 94% of people who share posts do so because they think it might be helpful to others. (<a href=\"https://www.impactbnd.com/\" target=\"_blank\" rel=\"nofollow\">Impact</a>)</p>\n<p>7. 47% of buyers consume three to five pieces of content before making a purchase decision. (<a href=\"https://www.hubspot.com/marketing-statistics\" target=\"_blank\" rel=\"nofollow\">Hubspot</a>)</p>\n<p>8. 70% of consumers prefer getting to know a company via articles rather than ads. (<a href=\"https://teamworkscom.com/2013/01/24/what-data-tells-you-about-the-need-for-content-marketing/\" target=\"_blank\" rel=\"nofollow\">TeamWorks Communication</a>)</p>\n<p>9. Brand engagement rises by 28% when consumers are exposed to both professional content and user-generated product video. (<a href=\"https://www.comscore.com/Insights/Press-Releases/2012/3/comScore-Study-Finds-Professionally-Produced-Video-Content-And-User-Generated-Product-Videos-Exhibit-Strong-Synergy-in-Driving-Sales-Effectiveness?cs_edgescape_cc=CA\" target=\"_blank\" rel=\"nofollow\">Comscore</a>)</p>\n<p>10. 68% of consumers are likely to spend time reading content from a brand they are interested in. (<a href=\"http://www.the-cma.com/uploads/documents/cma-01.jpg\" target=\"_blank\" rel=\"nofollow\">CMA</a>)</p>\n<p>11. 61% of U.S. online consumers have made a purchase based on recommendations from a blog. (<a href=\"https://www.socialmediatoday.com/news/the-benefits-of-blogging-20-stats-business-owners-need-to-know-infograph/511816/\" target=\"_blank\" rel=\"nofollow\">Social Media Today</a>)</p>\n<p>12. Internet users in the U.S. spend 3X more time on blogs than they do email. (<a href=\"https://www.socialmediatoday.com/news/the-benefits-of-blogging-20-stats-business-owners-need-to-know-infograph/511816/\" target=\"_blank\" rel=\"nofollow\">Social Media Today</a>)</p>\n<p>13. 80% of all the daily traffic on a blog consists of new visitors. (<a href=\"https://www.convinceandconvert.com/wp-content/uploads/2010/03/Corporate-Blogging-and-Social-Media-Trends-Survey-2010.pdf\" target=\"_blank\" rel=\"nofollow\">Convince and Convert</a>) </p>\n<h3 id=\"time\">Writing Duration &#8211; Stats &#038; Facts</h3>\n<p>All blogging costs you is your time, so how much does the average blogger spend writing their blog posts? Check out the following stats to find out. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/blogstats1.png\" alt=\"blogging-statistics-facts\" width=\"740\" height=\"414\" class=\"alignnone size-full wp-image-227781\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/blogstats1.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/blogstats1-300x168.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>1. The average blog post takes 3.5 hours to write. In 2014, the average blog post took 2.5 hours to write, which shows that bloggers are spending more time crafting a typical article today. (<a href=\"https://www.orbitmedia.com/blog/blogging-statistics/\" target=\"_blank\" rel=\"nofollow\">Orbit Media</a>)</p>\n<p>2. Bloggers who spend 6 or more hours per blog post are 56% more likely to report &#8220;strong results&#8221; than those who don&#8217;t. (<a href=\"https://www.orbitmedia.com/blog/blogging-statistics/\" target=\"_blank\" rel=\"nofollow\">Orbit Media</a>)</p>\n<p>3. On the other hand, 46.8% of bloggers spend less than 5 hours per week working on their blogs. (<a href=\"https://www.blogtyrant.com/new-blogging-statistics/\" target=\"_blank\" rel=\"nofollow\">Blog Tyrant</a>)</p>\n<p>4. 47.6% of bloggers edit their own work. (<a href=\"https://www.socialmediatoday.com/news/the-benefits-of-blogging-20-stats-business-owners-need-to-know-infograph/511816/\" target=\"_blank\" rel=\"nofollow\">Social Media Today</a>)</p>\n<h3 id=\"length\">Optimum Blog Post Length &#8211; Stats &#038; Facts</h3>\n<p>Writing blog posts that are the perfect length is important; too short and it might not rank in Google search results or have enough information that makes users want to share it. Too long and it might have been a waste of your time to write because no one is reading it. Here are some blogging stats to demonstrate the perfect length for articles. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/blogstats3.png\" alt=\"blog-post-length-stats\" width=\"740\" height=\"506\" class=\"alignnone size-full wp-image-227792\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/blogstats3.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/blogstats3-300x205.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>1. The average word count of a top-ranked post in Google is between 1,890 words. (<a href=\"https://backlinko.com/search-engine-ranking\" target=\"_blank\" rel=\"nofollow\">BackLinko</a>)</p>\n<p>2. Average post length has increased around 42% between 2014 and 2018, from 800 words to 1,151 words. (<a href=\"https://www.orbitmedia.com/blog/blogging-statistics/\" target=\"_blank\" rel=\"nofollow\">Orbit Media</a>)</p>\n<p>3. Long-form blog posts generate 9X more leads than short-form blog posts. (<a href=\"https://www.socialmediatoday.com/marketing/content-marketing-statistics-trends-2017-edition-infographic\" target=\"_blank\" rel=\"nofollow\">Social Media Today)</a></p>\n<p>4. Most bloggers (55%) write less than 1000 words per post. Only one in five bloggers write 1500+ words per post. (<a href=\"https://www.orbitmedia.com/blog/blogging-statistics/\" target=\"_blank\" rel=\"nofollow\">Orbit Media</a>)</p>\n<p>5. Bloggers who write longer posts are far more likely to see better results. 50% of bloggers who write long-form content reporting strong results. (<a href=\"https://www.orbitmedia.com/blog/blogging-statistics/\" target=\"_blank\" rel=\"nofollow\">Orbit Media</a>)</p>\n<p>6. Blog posts that get the most shares online are more than 3000 words long. (<a href=\"https://optinmonster.com/content-marketing-statistics/\" target=\"_blank\">OptinMonster</a>) </p>\n<h3 id=\"headline\">Blogging Headlines &#8211; Facts &#038; Statistics</h3>\n<p>Your blog headline is what&#8217;s going to get users to click on your post, so you need to make it good. Here are some blog headline statistics that will help you write better blog titles. </p>\n<p>1. Titles with 6-13 words attract the highest and most consistent amount of traffic. (<a href=\"https://www.hubspot.com/marketing-statistics\" target=\"_blank\" rel=\"nofollow\">Hubspot</a>)</p>\n<p>2. 36% of people prefer list-based headlines. (<a href=\"https://conversionxl.com/blog/5-characteristics-high-converting-headlines/\" target=\"_blank\" rel=\"nofollow\">ConversionXL</a>)</p>\n<p>3. Odd numbered listicle headlines outperform even ones by 20%. (<a href=\"https://contentmarketinginstitute.com/2015/08/headlines-tips-tools/\" target=\"_blank\" rel=\"nofollow\">Content Marketing Institute</a>)</p>\n<p>4. Headlines with eight words received a 21% higher click-through rate than average. (<a href=\"https://contentmarketinginstitute.com/2015/08/headlines-tips-tools/\" target=\"_blank\" rel=\"nofollow\">Content Marketing Institute</a>)</p>\n<p>5. Emotional headlines get shared more. (<a href=\"https://okdork.com/we-analyzed-nearly-1-million-headlines-heres-what-we-learned/\" target=\"_blank\" rel=\"nofollow\">OkDork</a>)</p>\n<p>6. Headlines featuring the word &#8220;photo(s)&#8221; performed 37% better than headlines without this word. (<a href=\"https://blog.hubspot.com/marketing/a-simple-formula-for-writing-kick-ass-titles-ht\" target=\"_blank\" rel=\"nofollow\">Hubspot</a>)</p>\n<p>7. Headlines with negative terms like “never” and “worst” perform 30% better than average and 60% better than ones with positive terms like “always”, “most” and “best”. (<a href=\"https://growthbadger.com/blog-statistics/\" target=\"_blank\" rel=\"nofollow\">Growth Badger</a>) </p>\n<h3 id=\"publish\">Blogging Frequency &#8211; Facts &#038; Statistics</h3>\n<p>How often should I blog? It&#8217;s a common question many new bloggers have. Check out these blogging statistics that will tell you how often to blog and when to publish posts to get maximum results. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/blogstats2.png\" alt=\"how-often-should-you-blog\" width=\"740\" height=\"371\" class=\"alignnone size-full wp-image-227791\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/blogstats2.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/blogstats2-300x150.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>1. Blogging frequency has been on the decline in the last few years. In 2014, bloggers published content several times per week but today &#8220;several times per month&#8221; is more common. (<a href=\"https://www.orbitmedia.com/blog/blogging-statistics/\" target=\"_blank\" rel=\"nofollow\">Orbit Media</a>)</p>\n<p>2. B2B companies that blogged 11 times or more per month got 3X more traffic than those blogging only once or less per month. (<a href=\"https://blog.hubspot.com/marketing/blogging-frequency-benchmarks?__hstc=181308536.8bfd9b30ad20dce6eba3bd5f92815a9a.1545938396309.1545938396309.1545938396309.1&#038;__hssc=181308536.1.1545938396312&#038;__hsfp=863313940\" target=\"_blank\" rel=\"nofollow\">Hubspot</a>)</p>\n<p>3. B2C companies that blogged 11 times or more got more than 4X as many leads than those that publish only 4-5 posts per month. (<a href=\"https://blog.hubspot.com/marketing/blogging-frequency-benchmarks?__hstc=181308536.8bfd9b30ad20dce6eba3bd5f92815a9a.1545938396309.1545938396309.1545938396309.1&#038;__hssc=181308536.1.1545938396312&#038;__hsfp=863313940\" target=\"_blank\" rel=\"nofollow\">Hubspot</a>)</p>\n<p>4. Companies that publish 16+ blog posts per month get nearly 3.5x more traffic than those that publish 0-4 monthly. (<a href=\"https://blog.hubspot.com/marketing/blogging-frequency-benchmarks?__hstc=181308536.8bfd9b30ad20dce6eba3bd5f92815a9a.1545938396309.1545938396309.1545938396309.1&#038;__hssc=181308536.1.1545938396312&#038;__hsfp=863313940\" target=\"_blank\" rel=\"nofollow\">Hubspot</a>)</p>\n<p>5. Blogs that post daily get 5X more traffic compared to those that don’t. (<a href=\"https://www.socialmediaexaminer.com/how-to-grow-social-media-leads-new-research/\" target=\"_blank\" rel=\"nofollow\">Social Media Examiner</a>)</p>\n<p>6. 69% of bloggers create their content during business hours and 76% do so from their home/home office. (<a href=\"https://www.orbitmedia.com/blog/blogging-statistics/\" target=\"_blank\" rel=\"nofollow\">Orbit Media</a>)</p>\n<p>7. The best day&#8217;s of the week to publish blog posts are Tuesdays and Wednesdays. The best time to publish most blog posts is between 9:30am and 11:00am USA East Coast time. (<a href=\"https://www.blogtyrant.com/best-time-to-publish-blog-articles/\" target=\"_blank\" rel=\"nofollow\">Blog Tyrant</a>)</p>\n<p>8. Blog reading peaks around 10:00am. (<a href=\"https://blog.hubspot.com/blog/tabid/6307/bid/32985/20-Revealing-Stats-Charts-and-Graphs-Every-Marketer-Should-Know.aspx?__hstc=181308536.8bfd9b30ad20dce6eba3bd5f92815a9a.1545938396309.1545938396309.1545938396309.1&#038;__hssc=181308536.1.1545938396312&#038;__hsfp=863313940\" target=\"_blank\" rel=\"nofollow\">Hubspot</a>)</p>\n<h3 id=\"success\">Secret to Blogging Success &#8211; Statistics &#038; Facts</h3>\n<p>Blogging is more than just putting down words on a screen. If you want your blog post to be successful, you need to include a number of different elements to delight readers and increase traffic to your website. Check out these blogging stats that will ensure your posts are huge successes. </p>\n<p>1. Blog articles with images get 94% more views than ones without. (<a href=\"https://www.jeffbullas.com/6-powerful-reasons-why-you-should-include-images-in-your-marketing-infographic/\" target=\"_blank\" rel=\"nofollow\">Jeff Bullas</a>)</p>\n<p>2. 54% of bloggers include more than one image in their posts, 49% are incorporating lists in their posts and video is still on the rise with just 19% of bloggers including them in their content. Bloggers who add these engaging media formats to their posts are more likely to see strong results. (<a href=\"https://www.orbitmedia.com/blog/blogging-statistics/\" target=\"_blank\" rel=\"nofollow\">Orbit Media</a>)</p>\n<p>3. Using photos of real people, instead of stock photos of people, can result in a 35% conversion increase. (<a href=\"https://marketingexperiments.com/digital-advertising/stock-images-tested\" target=\"_blank\" rel=\"nofollow\">Marketing Experiments)</a></p>\n<p>4. Written articles, like “how to” posts and case studies, are the types of content that lend blogs the most credibility. (<a href=\"http://socialmarketingwriting.com/how-to-build-a-credible-blog-infographic/\" target=\"_blank\" rel=\"nofollow\">Social Marketing Writing</a>)</p>\n<p>5. 45% of marketers rate their interactive content, such as assessments, quizzes, calculators, or contests, as either extremely or very effective. (<a href=\"https://contentmarketinginstitute.com/wp-content/uploads/2016/06/Ion_CMI_InteractiveContent_Report_Final.pdf\" target=\"_blank\" rel=\"nofollow\">Content Marketing Institute</a>)</p>\n<p>6. Bloggers who have a strategy of updating older content are twice as likely to report strong results. (<a href=\"https://www.orbitmedia.com/blog/blogging-statistics/\" target=\"_blank\" rel=\"nofollow\">Orbit Media</a>)</p>\n<p>7. One in ten blog posts are compounding, meaning organic search increases their traffic over time. (<a href=\"https://www.hubspot.com/marketing-statistics?__hstc=191390709.906f05e4a1256e11d63ac32bc3ce976f.1528483311536.1544195905055.1545953547051.26&#038;__hssc=191390709.1.1545953547051&#038;__hsfp=863313940\" target=\"_blank\" rel=\"nofollow\">Hubspot</a>)</p>\n<p>8. Compounding blog posts make up 10% of all blog posts and generate 38% of overall traffic.  (<a href=\"https://www.hubspot.com/marketing-statistics?__hstc=191390709.906f05e4a1256e11d63ac32bc3ce976f.1528483311536.1544195905055.1545953547051.26&#038;__hssc=191390709.1.1545953547051&#038;__hsfp=863313940\" target=\"_blank\" rel=\"nofollow\">Hubspot</a>)</p>\n<p>9. Over its lifetime, one compounding blog post creates as much traffic as six decaying posts (<a href=\"https://www.hubspot.com/marketing-statistics?__hstc=191390709.906f05e4a1256e11d63ac32bc3ce976f.1528483311536.1544195905055.1545953547051.26&#038;__hssc=191390709.1.1545953547051&#038;__hsfp=863313940\" target=\"_blank\" rel=\"nofollow\">Hubspot</a>)</p>\n<p>10. Almost 60% of marketers repurpose their content 2-5 times. (<a href=\"https://contently.com/2014/11/24/35-content-marketing-stats-you-need-to-know/\" target=\"_blank\" rel=\"nofollow\">Contently</a>)</p>\n<p>11. The top three things that make content effective are audience relevance (58%), engaging and compelling storytelling (57%) and triggers a response/action (54%). (<a href=\"http://www.curata.com/blog/content-marketing-statistics-the-ultimate-list/\" target=\"_blank\" rel=\"nofollow\">Curata</a>)</p>\n<p>12. 97% of marketers are using prescriptive content, meaning they’re laying out a foundation of rules and strategies to follow when it comes to creation. (<a href=\"http://www.curata.com/blog/content-marketing-statistics-the-ultimate-list/\" target=\"_blank\" rel=\"nofollow\">Curata</a>)</p>\n<p>13. 63% of marketers <a href=\"https://www.isitwp.com/how-to-start-a-blog-step-by-step/\">create blog content</a> by buyer persona; 38 percent by vertical; 30 percent by geography; and 30 percent by account or customer. (<a href=\"http://www.curata.com/blog/content-marketing-statistics-the-ultimate-list/\" target=\"_blank\" rel=\"nofollow\">Curata</a>)</p>\n<h3 id=\"evolve\">Blogging Evolution &#8211; Statistics &#038; Facts</h3>\n<p>Today, users want more than plain text. It&#8217;s difficult to grab the attention of internet users and keep it, that&#8217;s why blogging is evolving. Check out these blogging statistics that prove it. </p>\n<p>1. 43% of consumers increasingly want video content from marketers. (<a href=\"https://blog.hubspot.com/news-trends/the-future-of-content-marketing\" target=\"_blank\" rel=\"nofollow\">Hubspot</a>)</p>\n<p>2. Video content is 50 times more likely to drive organic search results than plain text. (<a href=\"https://www.hubspot.com/marketing-statistics?__hstc=191390709.906f05e4a1256e11d63ac32bc3ce976f.1528483311536.1544195905055.1545953547051.26&#038;__hssc=191390709.1.1545953547051&#038;__hsfp=863313940\" target=\"_blank\" rel=\"nofollow\">Hubspot</a>) </p>\n<p>3. 45% of marketers plan to add YouTube as a content distribution channel in 2018-2019, while 41% say they will add Facebook video. (<a href=\"https://growthbadger.com/blog-statistics/\" target=\"_blank\" rel=\"nofollow\">Growth Badger</a>) </p>\n<p>4. 19% of bloggers now including video in their typical post. </p>\n<p>5. 45% of bloggers who add audio (such as podcasts) to their blog posts report getting strong results. </p>\n<h3 id=\"promote\">Blogging Promotions &#8211; Statistics &#038; Facts</h3>\n<p>You can&#8217;t just publish your blog post and expect people to show up. If you want to get your blog posts in front of a ton of users, you need to promote them. Take a look at these blogging facts and stats about blog promotion. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/shutterstock_626812421.jpg\" alt=\"blog-promotion-stats\" width=\"740\" height=\"493\" class=\"alignnone size-full wp-image-227814\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/shutterstock_626812421.jpg 740w, https://www.isitwp.com/wp-content/uploads/2018/12/shutterstock_626812421-300x200.jpg 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>1. 61% of B2B content marketers have increased their use of social media for content marketing purposes compared with one year ago. (<a href=\"https://searchenginewatch.com/2018/11/21/7-content-marketing-stats-2019/\" target=\"_blank\" rel=\"nofollow\">Search Engine Watch</a>)</p>\n<p>2. 96% of bloggers are using social media to drive traffic to their blog posts. 68% are using SEO and 61% are <a href=\"https://www.wpbeginner.com/showcase/best-email-marketing-services/\" target=\"_blank\">using email marketing</a>. (<a href=\"https://www.orbitmedia.com/blog/blogging-statistics/\" target=\"_blank\" rel=\"nofollow\">Orbit Media</a>)</p>\n<p>3. 87% say that social media helps them boost their exposure. (<a href=\"https://www.socialmediaexaminer.com/wp-content/uploads/2018/05/Industry-Report-2018.pdf\" target=\"_blank\" rel=\"nofollow\">Social Media Examiner</a>) </p>\n<p>4. Over 81%  of marketers found that increased traffic occurred with as little as 6 hours per week invested in social media marketing. (<a href=\"https://www.socialmediaexaminer.com/social-media-marketing-industry-report-2015/\" target=\"_blank\" rel=\"nofollow\">Social Media Examiner</a>) </p>\n<p>5. 72% of marketers have used Facebook paid advertising. (<a href=\"https://www.socialmediaexaminer.com/wp-content/uploads/2018/05/Industry-Report-2018.pdf\" target=\"_blank\" rel=\"nofollow\">Social Media Examiner</a>) </p>\n<p>6. Bloggers who use influencer outreach and paid promotion to promote their posts are more likely to report &#8220;stronger results&#8221;. (<a href=\"https://www.orbitmedia.com/blog/blogging-statistics/\" target=\"_blank\" rel=\"nofollow\">Orbit Media</a>)</p>\n<p>7. 66% of B2B content marketers use paid methods to distribute content. (<a href=\"https://searchenginewatch.com/2018/11/21/7-content-marketing-stats-2019/\" target=\"_blank\" rel=\"nofollow\">Search Engine Watch</a>)</p>\n<p>8. The most common objectives for paid methods are to attract a new audience (80%), generate traffic when organic search isn’t producing the desired results (65%) and reach a niche audience (52%). (<a href=\"https://searchenginewatch.com/2018/11/21/7-content-marketing-stats-2019/\" target=\"_blank\" rel=\"nofollow\">Search Engine Watch</a>)</p>\n<p>9. 70-80% of users ignore paid ads and only focus on organic results. (<a href=\"https://www.searchenginejournal.com/seo-101/seo-statistics/\" target=\"_blank\" rel=\"nofollow\">Search Engine Journal</a>)</p>\n<p>10. 70% of B2B marketing companies use Facebook to distribute content. (<a href=\"https://contentmarketinginstitute.com/2011/12/2012-b2b-content-marketing-research/\" target=\"_blank\" rel=\"nofollow\">Content Marketing Institute</a>)</p>\n<p>11. Only 9% of marketers plan to add Medium publishing to their content strategy. (<a href=\"https://www.hubspot.com/marketing-statistics?__hstc=191390709.906f05e4a1256e11d63ac32bc3ce976f.1528483311536.1544195905055.1545953547051.26&#038;__hssc=191390709.1.1545953547051&#038;__hsfp=863313940\" target=\"_blank\" rel=\"nofollow\">Hubspot</a>)</p>\n<p>12. LinkedIn is the most effective social media platform for delivering content and securing audience engagement. (<a href=\"https://www.hubspot.com/marketing-statistics?__hstc=191390709.906f05e4a1256e11d63ac32bc3ce976f.1528483311536.1544195905055.1545953547051.26&#038;__hssc=191390709.1.1545953547051&#038;__hsfp=863313940\" target=\"_blank\" rel=\"nofollow\">Hubspot</a>)</p>\n<p>13. 21% of all business bloggers send posts through an email newsletter to <a href=\"https://optinmonster.com/9-lead-magnets-to-increase-subscribers/\" target=\"_blank\">their subscriber base</a> at least weekly; 39% of best practitioners do this weekly. (<a href=\"http://www.curata.com/blog/content-marketing-statistics-the-ultimate-list/\" target=\"_blank\" rel=\"nofollow\">Curata</a>)</p>\n<p>14. 59.8% of bloggers guest-post at least occasionally. (<a href=\"https://growthbadger.com/blog-statistics/\" target=\"_blank\" rel=\"nofollow\">Growth Badger</a>)</p>\n<h3 id=\"seo\">SEO and Analytics &#8211; Statistics, Facts &#038; Figures</h3>\n<p><a href=\"https://optinmonster.com/ultimate-seo-guide/\" target=\"_blank\">Optimizing your blog posts for SEO</a> is important to getting your content found by users on the web. And monitoring your analytics is key to understanding how your blog can increase visitors to your website. Here are some blogging statistics regarding SEO and analytics. </p>\n<p>1.  72% of online marketers describe content creation as their most effective SEO tactic. (<a href=\"https://junto.digital/blog/seo-stats-2017/\" target=\"_blank\" rel=\"nofollow\">Junto</a>)</p>\n<p>2. “Long-tail” keywords are extremely important for SEO: more than half (55%) of all searches on Google occur outside the 10 million most popular keywords.  </p>\n<p>3. 34% of bloggers &#8220;always&#8221; check their analytics, which is an increase from previous years. (<a href=\"https://www.orbitmedia.com/blog/blogging-statistics/\" target=\"_blank\" rel=\"nofollow\">Orbit Media</a>)</p>\n<p>4. 5% of bloggers don&#8217;t have access to <a href=\"https://www.isitwp.com/best-wordpress-analytics-solutions-compared/\">analytics tools</a> at all. (<a href=\"https://www.orbitmedia.com/blog/blogging-statistics/\" target=\"_blank\" rel=\"nofollow\">Orbit Media</a>) </p>\n<p>5. Bloggers who always measure the performance of their content are twice as likely to report &#8220;strong results&#8221;. (<a href=\"https://www.orbitmedia.com/blog/blogging-statistics/\" target=\"_blank\" rel=\"nofollow\">Orbit Media</a>)</p>\n<h3 id=\"invest\">Business Blogging &#8211; Statistics, Facts &#038; Figures</h3>\n<p>Many businesses have realized the power of blogging. So how are businesses investing in blogging and making it a top priority? Check out these statistics to find out. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/shutterstock_1204705804.jpg\" alt=\"companies-investing-blogging-statistics\" width=\"740\" height=\"521\" class=\"alignnone size-full wp-image-227813\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/shutterstock_1204705804.jpg 740w, https://www.isitwp.com/wp-content/uploads/2018/12/shutterstock_1204705804-300x211.jpg 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>1. 53% of marketers say blogging is their top content marketing priority. (<a href=\"https://www.hubspot.com/marketing-statistics\" target=\"_blank\" rel=\"nofollow\">Hubspot</a>)</p>\n<p>2. 89% of marketers are maintaining or increasing their inbound marketing budgets. (<a href=\"https://blog.hubspot.com/blog/tabid/6307/bid/32985/20-Revealing-Stats-Charts-and-Graphs-Every-Marketer-Should-Know.aspx\" target=\"_blank\" rel=\"nofollow\">Hubspot</a>)</p>\n<p>3. 64% of B2B marketers outsource blog copywriting. (<a href=\"https://www.toprankblog.com/2014/05/b2b-content-marketing-statistics-2014/\" target=\"_blank\" rel=\"nofollow\">TopRank</a>)</p>\n<p>4. The top two most outsourced content marketing activities are writing (44%) and design (41%). (<a href=\"http://www.curata.com/blog/content-marketing-statistics-the-ultimate-list/\" target=\"_blank\" rel=\"nofollow\">Curata</a>)</p>\n<p>5. 57% of business bloggers’ outsourced blog posts originate from non-paid contributed or guest posts. (<a href=\"http://www.curata.com/blog/content-marketing-statistics-the-ultimate-list/\" target=\"_blank\" rel=\"nofollow\">Curata</a>)</p>\n<p>6. 42% of companies have hired a designated content strategist executive. (Hubspot)</p>\n<p>7. 24% of bloggers work with editors, that percentage has doubled since 2014. (<a href=\"https://www.orbitmedia.com/blog/blogging-statistics/\" target=\"_blank\" rel=\"nofollow\">Orbit Media</a>)</p>\n<p>8. 41% of B2B marketers have daily or weekly content marketing meetings. (<a href=\"https://contentmarketinginstitute.com/wp-content/uploads/2015/09/2016_B2B_Report_Final.pdf\" target=\"_blank\" rel=\"nofollow\">Content Marketing Institute</a>)</p>\n<p>9. Companies with fewer than 10 employees typically allocate 42% of their marketing budget to content. (<a href=\"https://contentmarketinginstitute.com/2012/10/2013-b2b-content-marketing-research/\" target=\"_blank\" rel=\"nofollow\">Content Marketing Institute</a>) </p>\n<p>10. The most sophisticated B2B marketers allocate 42% of their total marketing budget to creating content. (<a href=\"https://contentmarketinginstitute.com/wp-content/uploads/2015/09/2016_B2B_Report_Final.pdf\" target=\"_blank\" rel=\"nofollow\">Content Marketing Institute</a>)</p>\n<p>We hope this article helped you learn some new blogging statistics and facts. Now you can take this information and start a successful blog that gets lots of readers, increases leads for your business and boosts your sales. </p>\n<p>If you enjoyed this post, check out our article on <a href=\"https://www.isitwp.com/legit-ways-to-make-money-online-blogging/\">30 Ways to Make Money Online Blogging (On the Side)</a>. </p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/amazing-blogging-stats-facts/\">100+ Amazing Blogging Stats &#038; Facts (Ultimate List)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://www.isitwp.com/amazing-blogging-stats-facts/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:51:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"How to Move One Web Host to Another in 2019 (No Downtime!)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://www.isitwp.com/switch-one-web-host-another-without-downtime-step-by-step/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://www.isitwp.com/switch-one-web-host-another-without-downtime-step-by-step/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Jan 2019 10:48:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:19:\"WordPress Tutorials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"move site\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:14:\"move wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:14:\"site migration\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://www.isitwp.com/?p=220758\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:627:\"<p>Are you wondering how to switch your WordPress site from one web host to another without downtime? Just like moving to a new house in the physical world, migrating to a new &#8220;home&#8221; (web host) on the internet comes with a unique set of challenges. One of the most prevalent concerns is whether or not [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/switch-one-web-host-another-without-downtime-step-by-step/\">How to Move One Web Host to Another in 2019 (No Downtime!)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Editorial Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:26279:\"<p>Are you wondering how to switch your WordPress site from one web host to another without downtime? Just like moving to a new house in the physical world, migrating to a new &#8220;home&#8221; (web host) on the internet comes with a unique set of challenges. One of the most prevalent concerns is whether or not your site will go down during the move. </p>\n<p>In this step-by-step guide, we&#8217;ll show you how to move your WordPress site to a new host or server without downtime. </p>\n<p><strong>Important</strong>: Before you begin, we want to remind you that some <a href=\"https://www.isitwp.com/hosting-reviews/\">web hosting providers</a> offer a free migration service. If you’re not sure whether your hosting provider offers free migration, then ask them first before doing it yourself. If they don&#8217;t offer it, then you can go ahead with the tutorial.</p>\n<h3>When and Why You Should Move Your WordPress Site to a New Host</h3>\n<p>You may have started with a <a href=\"https://www.isitwp.com/hosting-reviews/\" title=\"The Best Web Hosting Companies of 2018 (Real Reviews, No B.S)\">web hosting provider</a> that you found via a short internet search. But, as your website traffic grows, you&#8217;re starting to look for a reliable solution that can offer uptime guarantee, speed, and performance. In this case, you&#8217;d move your WordPress site to a new host to improve your website&#8217;s status.</p>\n<p>In other cases, you might find a new host with more attractive features and better price options. Those are great reasons to migrate your WordPress site as well. But you always need to make sure your website is up and running while the migration takes place from one host to another.</p>\n<p>As you can&#8217;t afford the loss of traffic or to leave a bad impression with your users, it&#8217;s important to find a host that offers reliable service.</p>\n<p>Those are just a few points, and there may be many other reasons you wish to move to a new host. What&#8217;s your reason? We&#8217;re curious to hear it in the comments!</p>\n<h3>Why You Should Avoid Downtime? (Important)</h3>\n<p>Beginners with <a href=\"https://www.isitwp.com/create-small-business-website-simple-steps/\" title=\"How to Create a Small Business Website in 5 Simple Steps (2018)\">small WordPress sites</a> that have little or no traffic tend to ask why they&#8217;d need to worry about a little downtime. On the other hand, it&#8217;s more obvious why large websites with more traffic and great <a href=\"https://www.isitwp.com/seo-friendly/\" title=\"How to Make Your WordPress Site SEO Friendly\">search engine rankings</a> would need to be careful when changing hosts. Larger websites can&#8217;t risk any downtime as it can affect their status. However, small websites need to be aware of issues as well.</p>\n<p>Website downtime isn&#8217;t good for either small or big websites. Let&#8217;s talk about a few ways a downtime can affect your WordPress site:</p>\n<ul>\n<li>When users visit your website, they want to see it working. If your website is facing downtime, then new visitors may believe it doesn&#8217;t exist and the old users may think you&#8217;ve shutdown.</li>\n<li>Downtime can occur due to many reasons. A technical user may understand it, but not all your users are developers. It&#8217;ll create a bad impression of your brand or business with the average visitor.</li>\n<li>Your website may rank well in search engines. When your website is down and search engines send their bots to crawl your site, it&#8217;ll damage your rankings.</li>\n</ul>\n<p>After reading the above, hopefully you have an idea of why it&#8217;s important to have a 24/7/365 website uptime. When moving your website to a new host, you can follow the steps below to avoid downtime and successfully migrate your WordPress website.</p>\n<p><strong>Bonus Tip:</strong> You can always use our <a href=\"https://www.isitwp.com/uptime-checker/\" title=\"Free Website Uptime Status Checker\">free website uptime checker tool</a> to analyze your website status.</p>\n<p>Ready to get started? Let&#8217;s go!</p>\n<h3>Step 1: Choose a New Web Host</h3>\n<p>Changing your web host is a big decision in itself, so you&#8217;ll need to make sure you’ve put enough effort into optimizing your site on your current host before moving to a new one. If it still fails to deliver on speed, security, performance, etc. even after optimizing, then you do indeed need to switch your web hosting. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/06/web-hosting.png\" alt=\"web hosting\" width=\"652\" height=\"350\" class=\"alignnone size-full wp-image-219819\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/06/web-hosting.png 652w, https://www.isitwp.com/wp-content/uploads/2018/06/web-hosting-300x161.png 300w\" sizes=\"(max-width: 652px) 100vw, 652px\" /></p>\n<p>When choosing a new web host, be aware of the specific features your site needs in its current position and in the future, so you don’t need to change hosts again down the line.  </p>\n<p>There&#8217;re a lot of different types of web hosting such as <a href=\"https://www.isitwp.com/hosting-reviews/cheap-hosting-reviews/\">shared hosting</a>, <a href=\"https://www.isitwp.com/hosting-reviews/dedicated/\">dedicated server hosting</a>, and <a href=\"https://www.isitwp.com/hosting-reviews/managed-wordpress-hosting-reviews/\">managed WordPress hosting</a>. </p>\n<p>When choosing a web host, here’s what we recommend:</p>\n<p><strong>Shared hosting</strong>: </p>\n<p>Perfect for those who’re just starting out with a new website and need an affordable hosting solution. <a href=\"https://www.isitwp.com/refer/bluehost/\" target=\"_blank\" rel=\"nofollow\">Bluehost</a> is the best provider for shared hosting. They’re officially recommended by WordPress.org. IsItWP users get 60% discount along with a free domain name when purchasing a new hosting account.</p>\n<p><a href=\"https://www.isitwp.com/refer/bluehost/\" target=\"_blank\" rel=\"nofollow\">Get started with Bluehost today!</a></p>\n<p><strong>Dedicated server</strong>: </p>\n<p>It’s the best solution for users who want to lease the entire server for their sole use and need full control over the server. We recommend <a href=\"https://www.isitwp.com/refer/inmotion-hosting/\" target=\"_blank\" rel=\"nofollow\">InMotion Hosting</a> for dedicated servers. They let you choose the ideal data center for your site and provide free launch assist for 2 hours.</p>\n<p><a href=\"https://www.isitwp.com/refer/inmotion-hosting/\" target=\"_blank\" rel=\"nofollow\">Get started with InMotion Hosting today!</a></p>\n<p><strong>Managed WordPress hosting</strong>: The best choice for WordPress websites that attract high traffic volume. With managed WordPress hosting, you can operate your site on a server that’s uniquely optimized for the security configuration of WordPress. We recommend <a href=\"https://www.isitwp.com/refer/wpengine/\" target=\"_blank\" rel=\"nofollow\">WPEngine</a> for managed WordPress hosting.</p>\n<p><a href=\"https://www.isitwp.com/refer/wpengine/\" target=\"_blank\" rel=\"nofollow\">Get started with WPEngine today!</a></p>\n<p>After you buy a hosting plan, don&#8217;t install WordPress as you usually would when creating a new site. Just keep it empty and let’s move onto step 2. </p>\n<h3>Step 2: Create Your Site Backup for Migration Using Duplicator</h3>\n<p>Go to the admin area of the site you want to move, and install the <a href=\"https://www.isitwp.com/refer/duplicator-pro/\" target=\"_blank\" rel=\"nofollow\">Duplicator</a> plugin. It&#8217;s one of the <a href=\"https://www.isitwp.com/best-wordpress-backup-plugins-compared/\">best WordPress plugins for migrations and backups</a>. If you don’t know how to install a plugin, please refer to our step-by-step guide on <a href=\"https://www.isitwp.com/install-wordpress-plugin/\">installing a WordPress plugin</a>.</p>\n<p>Once you&#8217;ve installed the Duplicator plugin, go to <strong>Duplicator &raquo; Packages</strong> in your WordPress dashboard. </p>\n<p>Then, click the <strong>Create New</strong> button in the right-hand corner of the page.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/07/create-new-package-duplicator-plugin.jpg\" alt=\"create-new-package-duplicator-plugin\" width=\"775\" height=\"430\" class=\"alignnone size-full wp-image-220761\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/07/create-new-package-duplicator-plugin.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/07/create-new-package-duplicator-plugin-300x166.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/07/create-new-package-duplicator-plugin-768x426.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Next, you&#8217;ll see a page like the one pictured below. Click the <strong>Next</strong> button to start the package building process. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/07/click-next-to-create-package.jpg\" alt=\"click-next-to-create-package\" width=\"775\" height=\"368\" class=\"alignnone size-full wp-image-220762\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/07/click-next-to-create-package.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/07/click-next-to-create-package-300x142.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/07/click-next-to-create-package-768x365.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>From there, it&#8217;ll take you to the second step in the package building process. Make sure that your scan is complete and all the results are <strong>Good</strong>. Then, click the <strong>Build</strong> button. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/07/complete-scan.jpg\" alt=\"complete-scan\" width=\"775\" height=\"526\" class=\"alignnone size-full wp-image-220783\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/07/complete-scan.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/07/complete-scan-300x204.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/07/complete-scan-768x521.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Wait until the process is complete. This may take a while, depending on how large your site is.</p>\n<p>Once the process is complete, you&#8217;ll see download options for <strong>Installer</strong>, <strong>Archive</strong>, and <strong>One-Click Download</strong>. You&#8217;ll need to click on <strong>One-Click Download</strong> because you&#8217;ll need both your Installer and Archive files.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/07/one-click-download-duplicator.jpg\" alt=\"one-click-download-duplicator\" width=\"775\" height=\"417\" class=\"alignnone size-full wp-image-220763\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/07/one-click-download-duplicator.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/07/one-click-download-duplicator-300x161.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/07/one-click-download-duplicator-768x413.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>The Archive file is a copy of your site, and the Installer file will help you automatically download the installation process. </p>\n<h3>Step 3: Import Your WordPress Site to Your New Host</h3>\n<p>Next, you&#8217;ll have to upload the downloaded files (Installer and Archive) to your new web host. In order to do so, you can use an FTP client to connect to your new web host. If you&#8217;re new to this, you can follow the instructions given in this step-by-step guide to <a href=\"https://www.wpbeginner.com/beginners-guide/how-to-use-ftp-to-upload-files-to-wordpress-for-beginners/\" target=\"_blank\">upload files via FTP to WordPress</a>. </p>\n<p>Using your FTP client, upload both the Installer and Archive files to the root directory (usually /username/public_html/ folder) of your website. </p>\n<p>Before uploading, you&#8217;ll need to ensure that the folder is completely empty. Some hosting companies automatically install WordPress when you sign up. You&#8217;ll need to delete it if it’s already been installed by your host. </p>\n<h3>Step 4: Change the Host&#8217;s File to Prevent Downtime</h3>\n<p>You&#8217;ve already uploaded both the installer.php file and archive.zip file to your new web host in step 3, so try to open the installer.php file in your browser. </p>\n<p>You can access the file using a URL like this: </p>\n<p>http://www.example.com/installer.php</p>\n<p>But, when you try to access the file, you&#8217;ll get a <a href=\"https://www.wpbeginner.com/wp-tutorials/how-to-fix-wordpress-posts-returning-404-error/\" target=\"_blank\">404 error page</a> because your domain is still pointing to the old host. </p>\n<p>This implies that you need to change your domain name servers and point to your new host, but we don’t suggest you do so. If you do, it&#8217;ll show your users a broken website as you proceed migration. </p>\n<p>That’s why we suggest using an alternative method so users can access your site fully, even during migration.</p>\n<p>With this technique, you&#8217;ll be able to access your new site using your new domain temporarily on your computer. It&#8217;s done with a host&#8217;s file on your computer which you can use to map domain names to specific IP addresses. </p>\n<p>Now, you&#8217;ll add an entry for your domain name in the host&#8217;s file so that it points to your new host, but only using your computer. Therefore, you can access your files on your new web host while your users will still be accessing your site from the old host. Hence, there&#8217;s zero downtime. </p>\n<p>First, you&#8217;ll need to find out the IP address of your new web hosting server. To find this, open your cPanel dashboard and navigate to <strong>Server Information</strong>. There, you&#8217;ll see it as <strong>Shared IP Address</strong>.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/07/host-ip-address.jpg\" alt=\"host-ip-address\" width=\"775\" height=\"529\" class=\"alignnone size-full wp-image-220764\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/07/host-ip-address.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/07/host-ip-address-300x205.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/07/host-ip-address-768x524.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Keep this page open as you&#8217;ll need to copy the IP address in a later step. </p>\n<p>If you&#8217;re using Windows, go to <strong>Programs &raquo; All Programs &raquo; Accessories</strong>, right-click on Notepad, and select Run as Administrator. Then, a Windows UAC prompt will appear with 2 options: <strong>Yes</strong> and <strong>No</strong>. Click on <strong>Yes</strong> to launch Notepad with Administrator privileges. </p>\n<p>Now on the Notepad screen, go to <strong>File &raquo; Open</strong> and then go to</p>\n<p>C:\\Windows\\System32\\drivers\\etc. Select the host&#8217;s file and open it.</p>\n<p>If you&#8217;re using Mac, you&#8217;ll need to open the Terminal app and enter this command to edit the host&#8217;s file:</p>\n<p>sudo nano /private/etc/hosts</p>\n<p>Then, both Windows and Mac users need to enter the IP address you copied and your domain name at the bottom of the host&#8217;s file like this:</p>\n<p>192.168.1.22 www.example.com</p>\n<p>Then, save your changes. Now you can now access your site files on the new host using your domain name on your computer.</p>\n<p><strong>Note:</strong> You&#8217;ll need to undo the changes you made to the host&#8217;s file after you complete the site migration in step 6. </p>\n<h3>Step 5: Create a MySQL Database on Your New Web Host</h3>\n<p>Now, you&#8217;re ready to run the <strong>installer.php</strong> file on your new host but you need to make sure a MySQL database is created before doing so. </p>\n<p>In order to create a MySQL database, go to your cPanel’s dashboard and navigate to the <strong>Databases</strong> section. Then, you&#8217;ll need to click on the <strong>MySQL Databases</strong> section. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/07/mysql-databases.jpg\" alt=\"mysql-databases\" width=\"775\" height=\"256\" class=\"alignnone size-full wp-image-220765\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/07/mysql-databases.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/07/mysql-databases-300x99.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/07/mysql-databases-768x254.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Now, you&#8217;ll see a field to create a new database. Type in your database name and click the <strong>Create Database</strong> button. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/07/create-new-mysql-database-bluehost.jpg\" alt=\"create-new-mysql-database-bluehost\" width=\"775\" height=\"330\" class=\"alignnone size-full wp-image-220794\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/07/create-new-mysql-database-bluehost.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/07/create-new-mysql-database-bluehost-300x128.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/07/create-new-mysql-database-bluehost-768x327.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>After you&#8217;ve created a database, scroll down the page to the <strong>MySQL Users</strong> section. From there, provide a username and password for your new user and then click the <strong>Create User</strong> button. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/07/create-mysql-user.jpg\" alt=\"create-mysql-user\" width=\"775\" height=\"459\" class=\"alignnone size-full wp-image-220767\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/07/create-mysql-user.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/07/create-mysql-user-300x178.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/07/create-mysql-user-768x455.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Please take note of the database username and password you just created because you&#8217;ll need it in later step. </p>\n<p>Now, you have to add your user to the database. In order to do this, scroll down to the <strong>Add User To Database</strong> section and choose the MySQL database and user you just created. Then, click the <strong>Add</strong> button. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/07/add-user-to-database-bluehost.jpg\" alt=\"add-user-to-database-bluehost\" width=\"775\" height=\"385\" class=\"alignnone size-full wp-image-220796\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/07/add-user-to-database-bluehost.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/07/add-user-to-database-bluehost-300x149.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/07/add-user-to-database-bluehost-768x382.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Now, your database is all set to use in your WordPress site. </p>\n<h3>Step 6: Start the Duplicator Migration Process</h3>\n<p>Finally, you&#8217;re all set to run the Installer file. </p>\n<p>So, go to your browser’s address bar and enter the URL as shown below to run the installer.php. </p>\n<p>http://www.example.com/installer.php</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/07/duplicator-installer-step1.png\" alt=\"duplicator-installer-step1\" width=\"550\" height=\"315\" class=\"alignnone size-full wp-image-220769\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/07/duplicator-installer-step1.png 550w, https://www.isitwp.com/wp-content/uploads/2018/07/duplicator-installer-step1-300x172.png 300w\" sizes=\"(max-width: 550px) 100vw, 550px\" /></p>\n<p>The installer will run a few tests and will show <strong>Pass</strong> next to archive and validation tests as shown in the screenshot above. </p>\n<p>Check the terms and conditions box and then click the <strong>Next</strong> button. </p>\n<p>From there, you&#8217;ll see Duplicator’s Step 2 open. You&#8217;ll need to enter your MySQL host, database name, username, and password. Insert <strong>localhost</strong> in the host field and fill in the database details you used in step 5. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/07/duplicator-installer-step2.png\" alt=\"duplicator-installer-step2\" width=\"550\" height=\"336\" class=\"alignnone size-full wp-image-220770\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/07/duplicator-installer-step2.png 550w, https://www.isitwp.com/wp-content/uploads/2018/07/duplicator-installer-step2-300x183.png 300w\" sizes=\"(max-width: 550px) 100vw, 550px\" /></p>\n<p>Now, you can click the <strong>Next</strong> button to continue. But, we recommend you first click the <strong>Test Database</strong> button to ensure that there&#8217;re no database connection errors. </p>\n<p>Then, Duplicator will import your WordPress database from the archive.zip file into your new host.  </p>\n<p>Next, Duplicator’s step 3 will ask you to update the site URL or path, but you don’t need to change anything here as you&#8217;re not actually changing it. So, click the <strong>Next</strong> button to continue. </p>\n<p>Duplicator will run the final steps and show the login button in its 4th and final step. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/07/duplicator-installer-last-step.png\" alt=\"duplicator-installer-last-step\" width=\"550\" height=\"209\" class=\"alignnone size-full wp-image-220771\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/07/duplicator-installer-last-step.png 550w, https://www.isitwp.com/wp-content/uploads/2018/07/duplicator-installer-last-step-300x114.png 300w\" sizes=\"(max-width: 550px) 100vw, 550px\" /></p>\n<p>Now, you&#8217;ve moved your WordPress site to a new web host completely. So, you can simply log in and check if everything is okay. </p>\n<h3>Step 7: Update Your Domain</h3>\n<p>We&#8217;ve come to the final step of switching your WordPress site from one web host to a new one. </p>\n<p>In the previous step, you added a copy of all your site files to your new host but your domain still points to your old host, so you&#8217;ll need to update your domain as well. </p>\n<p>In order to do so, you&#8217;ll need to switch your <a href=\"https://www.wpbeginner.com/glossary/dns/\" target=\"_blank\">DNS nameservers</a>. If your domain was registered with your hosting company, then it’s best to move the domain to the new web host. If it was registered in a domain registrar company like <a href=\"https://www.isitwp.com/refer/namecheap/\" target=\"_blank\" rel=\"nofollow\">NameCheap</a>, <a href=\"https://www.isitwp.com/refer/godaddy/\" target=\"_blank\" rel=\"nofollow\">GoDaddy</a> etc., then you&#8217;ll need to update your domain nameservers. </p>\n<p>Domain nameservers are usually a couple of URLs, like the ones below, that you&#8217;ll get from your new web host. </p>\n<p>ns1.hostname.com<br />\nns2.hostname.com</p>\n<p>The steps to changing domain nameservers differ from one domain provider to another; however, the basic concept is the same. So, we&#8217;ll show you how to change DNS nameservers with <a href=\"https://www.isitwp.com/refer/godaddy/\" target=\"_blank\" rel=\"nofollow\">GoDaddy</a> in this tutorial. </p>\n<p>First, log into your GoDaddy account and navigate to <strong>Domains</strong>. Then, click on the <strong>Manage</strong> button next to the domain name you want to update. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/07/manage-domains-godaddy.png\" alt=\"manage-domains-godaddy\" width=\"550\" height=\"218\" class=\"alignnone size-full wp-image-220772\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/07/manage-domains-godaddy.png 550w, https://www.isitwp.com/wp-content/uploads/2018/07/manage-domains-godaddy-300x119.png 300w\" sizes=\"(max-width: 550px) 100vw, 550px\" /></p>\n<p>Then, go to <strong>Additional Settings</strong> and click on <strong>Manage DNS</strong>. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/07/additional-settings-manage-dns.png\" alt=\"additional-settings-manage-dns\" width=\"550\" height=\"288\" class=\"alignnone size-full wp-image-220773\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/07/additional-settings-manage-dns.png 550w, https://www.isitwp.com/wp-content/uploads/2018/07/additional-settings-manage-dns-300x157.png 300w\" sizes=\"(max-width: 550px) 100vw, 550px\" /></p>\n<p>Now, you&#8217;ll need to scroll down to the <strong>Nameservers</strong> section and click on the </strong>Change</strong> button. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/07/change-nameservers.png\" alt=\"change-nameservers\" width=\"550\" height=\"279\" class=\"alignnone size-full wp-image-220774\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/07/change-nameservers.png 550w, https://www.isitwp.com/wp-content/uploads/2018/07/change-nameservers-300x152.png 300w\" sizes=\"(max-width: 550px) 100vw, 550px\" /></p>\n<p>Next, click the dowpdown and switch the nameserver type from <strong>Default</strong> to <strong>Custom</strong>. Then, fill in your new nameservers provided by your new web host, and click the <strong>Save</strong> button. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/07/update-dns.png\" alt=\"update-dns\" width=\"550\" height=\"297\" class=\"alignnone size-full wp-image-220775\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/07/update-dns.png 550w, https://www.isitwp.com/wp-content/uploads/2018/07/update-dns-300x162.png 300w\" sizes=\"(max-width: 550px) 100vw, 550px\" /></p>\n<p>Now you&#8217;ve successfully updated your domain nameservers. Unfortunately, it may take 4 to 48 hours to execute these DNS changes. </p>\n<p>In the meantime, you&#8217;ll now have the same content on both your old host and new host so users will see no difference and the site migration will be seamless without any downtime. </p>\n<p>We hope this guide helped you switch your WordPress site from one web host to another with zero downtime. You may also want to check out our step-by-step tutorial on <a href=\"https://www.isitwp.com/how-to-create-a-free-business-email/\">creating a free business email using Bluehost</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/switch-one-web-host-another-without-downtime-step-by-step/\">How to Move One Web Host to Another in 2019 (No Downtime!)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"https://www.isitwp.com/switch-one-web-host-another-without-downtime-step-by-step/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:51:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"MonsterInsights vs Jetpack Stats – Which is Better?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://www.isitwp.com/monsterinsights-vs-jetpack-stats/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://www.isitwp.com/monsterinsights-vs-jetpack-stats/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 31 Dec 2018 10:04:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:30:\"alternatives to jetpack plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:13:\"jetpack stats\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:15:\"monsterinsights\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://www.isitwp.com/?p=222232\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:653:\"<p>MonsterInsights vs Jetpack Stats: who would win? If you’re asking that, then you’re probably looking for the best plugin to track your website visitors and discover stats about their interactions on your website. WordPress offers several analytics plugins to perform those functions, but MonsterInsights and Jetpack Stats are by far the most popular; and for [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/monsterinsights-vs-jetpack-stats/\">MonsterInsights vs Jetpack Stats &#8211; Which is Better?</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Editorial Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:12163:\"<p>MonsterInsights vs Jetpack Stats: who would win? If you’re asking that, then you’re probably looking for the best plugin to track your website visitors and discover stats about their interactions on your website.</p>\n<p>WordPress offers <a href=\"https://www.isitwp.com/best-wordpress-analytics-solutions-compared/\" title=\"7 Best WordPress Analytics Solutions Compared (2018)\">several analytics plugins</a> to perform those functions, but MonsterInsights and Jetpack Stats are by far the most popular; and for good reason. But which one is truly the best for YOUR needs?</p>\n<p>In this article, we’ll compare MonsterInsights vs Jetpack stats, in-depth, so you can make your final decision.</p>\n<h3>General Overview: MonsterInsights vs Jetpack Stats</h3>\n<h4>What’s MonsterInsights?</h4>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/08/MonsterInsights.png\" alt=\"\" width=\"620\" height=\"310\" class=\"alignnone size-full wp-image-222233\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/08/MonsterInsights.png 620w, https://www.isitwp.com/wp-content/uploads/2018/08/MonsterInsights-300x150.png 300w\" sizes=\"(max-width: 620px) 100vw, 620px\" /></p>\n<p>The <a href=\"https://www.monsterinsights.com/\" target=\"_blank\" rel=\"noopener\">MonsterInsights</a> plugin works on your WordPress site to make integration with Google Analytics effortless. As the most powerful, and most popular, website analytics tool available, harnessing the power of Google Analytics on your website can provide you with detailed information and stats about your website’s visitors and how they interact with your content.</p>\n<p>While Google Analytics can be tricky to set up on its own, MonsterInsights makes it all-too-simple, even for absolute beginners. The setup process becomes a hassle-free experience, taking mere minutes out of your day rather than hours; zero coding skills required.</p>\n<p>Plus, not only see all of the default stats that Google Analytics has to offer, but sophisticated metrics as well. Events, eCommerce stats, and so much more will be at your fingertips and ready for viewing.</p>\n<p>Far superior to using Google Analytics on its own, MonsterInsights puts user experience as its top priority. Beginner-friendly and easy-to-use, MonsterInsights is a rising star that won’t stop climbing.</p>\n<h4>What’s Jetpack Stats?</h4>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/08/JetpackStats.jpg\" alt=\"\" width=\"560\" height=\"270\" class=\"alignnone size-full wp-image-222234\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/08/JetpackStats.jpg 560w, https://www.isitwp.com/wp-content/uploads/2018/08/JetpackStats-300x145.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/08/JetpackStats-330x160.jpg 330w\" sizes=\"(max-width: 560px) 100vw, 560px\" /></p>\n<p><a href=\"https://www.isitwp.com/refer/jetpack/\" rel=\"nofollow\" target=\"_blank\" data-nojs=\"true\">Jetpack</a> is a composite plugin that includes a number of features you might find handy for your website; including security, spam protection, and site backups. <a href=\"https://www.isitwp.com/refer/jetpack-wordpress-com-stats/\" rel=\"nofollow\" target=\"_blank\" data-nojs=\"true\" >Jetpack Stats</a> is one of the modules you can add to the Jetpack plugin as an additional feature.</p>\n<p>When you activate Jetpack Stats, after installing and activating the Jetpack plugin, you can use it to view reports on your website visitors and how they interact with your WordPress website.</p>\n<p>So far so good? At this point in the analysis, MonsterInsights vs Jetpack Stats seem almost the same, right? Well, all that’s about to change in the next section…</p>\n<h3>How It Works: MonsterInsights vs Jetpack Stats</h3>\n<h4>MonsterInsights</h4>\n<p>MonsterInsights is first and foremost a Google Analytics integration plugin. All you need to do for it to work is connect your Google Analytics account with MonsterInsights. Provided you’ve been using <a href=\"https://www.isitwp.com/how-to-track-affiliate-links-google-analytics/\" title=\"How to Track Affiliate Links in Google Analytics (Easy Way)\">Google Analytics to track your website data</a> for a while, you’ll get results pretty much instantly. Your dashboard will look something like this:</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/08/MonsterInsights-Dashboard.png\" alt=\"MonsterInsights Dashboard\" width=\"750\" height=\"372\" class=\"alignnone size-full wp-image-227830\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/08/MonsterInsights-Dashboard.png 750w, https://www.isitwp.com/wp-content/uploads/2018/08/MonsterInsights-Dashboard-300x149.png 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" /></p>\n<p>If you’re new to Google Analytics, it can take up to 48 hours for results to show up on your MonsterInsights dashboard. </p>\n<p>If you were to use Google Analytics (GA) without MonsterInsights, you’d have to manually insert GA’s code into your theme files. This is an especially daunting task for beginners or anyone without coding skills; and comes with numerous risks. The slightest coding error can skew your Analytics data or, worse, break your website.</p>\n<p>With MonsterInsights, you can set up even the most advanced Google Analytics tracking with just a few clicks of your mouse. It’s incredibly easy to set up, and is conveniently located on your <a href=\"https://www.isitwp.com/how-to-make-a-website-step-by-step/\">WordPress website</a>. There’s no need to go off your site to a third-party platform to view your reports.</p>\n<p>Best of all, you’ll be utilizing the power of Google Analytics – the strongest, most accurate website analytics tool available today.</p>\n<h4>Jetpack</h4>\n<p>Jetpack Stats is a part of the Jetpack plugin. Meaning, Jetpack Stats is just a footnote on a long list of other features included with the overall Jetpack plugin. Whereas MonsterInsights was built solely with analytics in mind, Jetpack Stats’ analytics features are just side thought.</p>\n<p>To enable Jetpack on your website, you’ll need to create a WordPress.com account and connect your site to that account. Since Jetpack uses its own brand of analytics tool, rather than integrating with Google Analytics, it can take a while for information to start showing up. Your dashboard will look something like this:</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/08/Jetpack-Stats-Dashboard.png\" alt=\"Jetpack Stats Dashboard\" width=\"500\" height=\"370\" class=\"alignnone size-full wp-image-227831\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/08/Jetpack-Stats-Dashboard.png 500w, https://www.isitwp.com/wp-content/uploads/2018/08/Jetpack-Stats-Dashboard-300x222.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" /></p>\n<p>Unfortunately, only a small fraction of your website’s stats are available on your WordPress dashboard. To view your “full” analytics, you’ll have to login and hop over to your WordPress.com account. Even then, the reports won’t be as complete or comprehensive as they would be had you used Google Analytics or MonsterInsights.</p>\n<h3>Tracking Features: MonsterInsights vs Jetpack Stats</h3>\n<h4>MonsterInsights</h4>\n<p>With MonsterInsights, you’ll have access to every type of advanced tracking feature you can imagine. The menu bar, conveniently located in your WordPress website, looks like this:</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/08/MonsterInsights-Menu-Bar.png\" alt=\"MonsterInsights Menu Bar\" width=\"775\" height=\"97\" class=\"alignnone size-full wp-image-227832\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/08/MonsterInsights-Menu-Bar.png 775w, https://www.isitwp.com/wp-content/uploads/2018/08/MonsterInsights-Menu-Bar-300x38.png 300w, https://www.isitwp.com/wp-content/uploads/2018/08/MonsterInsights-Menu-Bar-768x96.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>From that menu bar, you can access:</p>\n<ul>\n<li>Download tracking</li>\n<li>eCommerce tracking</li>\n<li>Custom dimensions</li>\n<li>Ads tracking</li>\n<li>Referral tracking</li>\n<li>Real-time stats</li>\n<li>Forms tracking</li>\n<li>And a whole lot more…</li>\n</ul>\n<p>Since MonsterInsights was built with analytics in mind, tracking is its one function; and it does it with excellence. </p>\n<h4>Jetpack Stats</h4>\n<p>The menu bar for Jetpack Stats pretty much tells you everything you need to know about its features:</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/08/Jetpack-Stats-Menu-Bar.png\" alt=\"Jetpack Stats Menu Bar\" width=\"775\" height=\"65\" class=\"alignnone size-full wp-image-227833\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/08/Jetpack-Stats-Menu-Bar.png 775w, https://www.isitwp.com/wp-content/uploads/2018/08/Jetpack-Stats-Menu-Bar-300x25.png 300w, https://www.isitwp.com/wp-content/uploads/2018/08/Jetpack-Stats-Menu-Bar-768x64.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Since Jetpack Stats is just a small piece of the overall Jetpack plugin, it only provides the most basic tracking reports. You can view your total visits, total comments, and a few other basic statistics; however, no advanced tracking features are available. </p>\n<h3>Bloat: MonsterInsights vs Jetpack Stats</h3>\n<h4>MonsterInsights</h4>\n<p>MonsterInsights comes with all the essential features you’ll want to get the website analytics you need. It has one purpose: to get you the data you need, in a way that’s convenient for you.</p>\n<p>It’s lightweight and free from bloat. And although you can implement additional features by installing addons, you can rest-assured that those features all work together towards one common goal. Even with every addon installed, MonsterInsights’ sole focus is on gathering data and relaying it to you in an easy-to-comprehend manner.</p>\n<h4>Jetpack Stats</h4>\n<p>Since Jetpack Stats is just a side feature of the main Jetpack plugin, there’s no way for you to access Jetpack Stats without installing Jetpack, and all its features.</p>\n<p>Jetpack comes loaded with 100+ themes, security features, backup options, image hosting, and a plethora of other features. All of which are decent, for what they are; but, if you’re looking for an analytics tracking tool exclusively, you’re going to be disappointed.</p>\n<p>Jetpack can feel extremely bloated, especially if the only feature you’re interested in is Jetpack Stats. </p>\n<h3>Pricing</h3>\n<p>Both MonsterInsights and Jetpack have their basic versions available for free in the WordPress plugin repository.</p>\n<p>For additional features, you can purchase MonsterInsights starting at $99.50 per year. Or, you can get Jetpack starting at $39.00 per year.</p>\n<h3>Customer Support</h3>\n<p>For the free versions of the plugins, both MonsterInsights and Jetpack offer support via the WordPress forums.</p>\n<p>For any paid version of MonsterInsights, you’ll be given priority support and professional setup options. It doesn’t matter if you buy the least expensive option or the most, you’ll be given the same attention and care.</p>\n<p>With Jetpack, only those who fork over the most money get the most support. Lower tier customers are regulated to solely email support, while the highest-paying customers receive email support, priority support, and setup services.</p>\n<h3>Conclusion</h3>\n<p>When it comes to ease of use, accuracy, and features; MonsterInsights is the clear winner in the battle between MonsterInsights vs Jetpack Stats.</p>\n<p>You can download MonsterInsights and start using it immediately by visiting <a href=\"https://www.monsterinsights.com/\" target=\"_blank\" rel=\"noopener\">their website</a>.</p>\n<p>We hope this article helped you choose between MonsterInsights vs Jetpack Stats. If you liked this post, you might also enjoy our in-depth <a href=\"https://www.isitwp.com/wordpress-plugins/monsterinsights/\">review of the MonsterInsights plugin</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/monsterinsights-vs-jetpack-stats/\">MonsterInsights vs Jetpack Stats &#8211; Which is Better?</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://www.isitwp.com/monsterinsights-vs-jetpack-stats/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:51:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"18 Best WordPress Comments Plugins to Boost Engagement\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://www.isitwp.com/best-wordpress-comment-plugins/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://www.isitwp.com/best-wordpress-comment-plugins/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 28 Dec 2018 10:49:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:29:\"best wordpress comment plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:31:\"best wordpress comments plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:18:\"wordpress comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://www.isitwp.com/?p=226336\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:628:\"<p>Are you looking for the best WordPress comments plugins for your website? Creating an active comment section on your WordPress blog is important to building a strong relationship with your readers and driving traffic to your site. A comment section that&#8217;s bustling with conversation will make your blog a place that users want to return [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/best-wordpress-comment-plugins/\">18 Best WordPress Comments Plugins to Boost Engagement</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Editorial Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:26145:\"<p>Are you looking for the best WordPress comments plugins for your website? Creating an active comment section on your WordPress blog is important to building a strong relationship with your readers and driving traffic to your site. A comment section that&#8217;s bustling with conversation will make your blog a place that users want to return to again and again. But it can be difficult to generate valuable comments on your blog.</p>\n<p>That&#8217;s why, in this article, we&#8217;re going to share with you the 18 best WordPress comment plugins to help you generate more comments, manage your comments, and grow your blog. Let&#8217;s jump in! </p>\n<h3><a href=\"https://www.isitwp.com/refer/decomments/\" target=\"_blank\" rel=\"nofollow\">1.De:comments</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/decomments/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/decomments.png\" alt=\"decomments-best-wordpress-comment-plugins\" width=\"740\" height=\"278\" class=\"alignnone size-full wp-image-226356\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/decomments.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/decomments-300x113.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nDe:comments is the most powerful WordPress plugin for comments. This premium plugin offers a range of tools to help you increase engagement on your blog. </p>\n<p>You can totally revamp your comment section and allow your readers to do a variety of things like vote on comments to like and dislike them, use a social login feature and sign in with their existing accounts, share comments on social media, and more. Users can even add images, GIFs, videos, tweets, and more to their comments. </p>\n<p>One of their stand-out features is their Badge System which rewards and encourages the most active users by adding gamification to the commenting process. All of this helps turn your comment section into a more entertaining place to be. </p>\n<p><a href=\"https://www.isitwp.com/refer/decomments/\" target=\"_blank\" rel=\"nofollow\">Get Started with De:comments Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/akismet/\" target=\"_blank\" rel=\"nofollow\">2. Akismet</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/akismet/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/akismet.jpg\" alt=\"akismet-best-wordpress-comment-plugins\" width=\"740\" height=\"239\" class=\"alignnone size-full wp-image-226357\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/akismet.jpg 740w, https://www.isitwp.com/wp-content/uploads/2018/12/akismet-300x97.jpg 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nAkismet is one of the most used WordPress comment plugins on the market. This plugin will filter spam comments for you so your website can keep it&#8217;s credibility. </p>\n<p>Instead of wasting time moderating comments from bots and deleting comments containing links to suspicious sites, this plugin does it all for you. You&#8217;ll never have to deal with annoying spam comments again &#8211; which makes Akismet a must-have for your comment section. </p>\n<p>You can get Akismet&#8217;s Personal plan for free which is great for bloggers and personal websites. But if you&#8217;re running a commercial website, you&#8217;ll need to upgrade to their Plus plan for $5 per month, per site.</p>\n<p>Want more information about Akismet? Check out our full <a href=\"https://www.isitwp.com/wordpress-plugins/akismet/\">Akismet review</a>.    </p>\n<p><a href=\"https://www.isitwp.com/refer/akismet/\" target=\"_blank\" rel=\"nofollow\">Get Started with Akismet Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/jetpack-comments/\" target=\"_blank\" rel=\"nofollow\">3. Jetpack Comments</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/jetpack-comments/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/jetpack.png\" alt=\"jetpack-comments-wordpress-comment-plugins\" width=\"740\" height=\"463\" class=\"alignnone size-full wp-image-226359\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/jetpack.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/jetpack-300x188.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nJetpack Comments is a great WordPress plugin that makes it easier for your readers to comment on your blog. The Jetpack Comments plugin replaces your default comment section with a new comment system that has social media login integration.</p>\n<p>Instead of having to make an all new account just to comment on your blog, users can sign in with their existing WordPress, Facebook, or Twitter account. Visitors also have the choice of leaving a comment as a guest or using their social networking username. </p>\n<p>This sleek-looking, easy-to-use comment system is simple to install and you also have the option to customize the color scheme to match your brand.  </p>\n<p>For a more detailed review of Jetpack, check out our <a href=\"https://www.isitwp.com/wordpress-plugins/jetpack/\">complete JetPack review</a>.</p>\n<p><a href=\"https://www.isitwp.com/refer/jetpack-comments/\" target=\"_blank\" rel=\"nofollow\">Get Started with Jetpack Comments Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/thrive-comments/\" target=\"_blank\" rel=\"nofollow\">4. Thrive Comments</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/thrive-comments/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/thrive-comments.png\" alt=\"thrive-comments-comment-plugin\" width=\"740\" height=\"225\" class=\"alignnone size-full wp-image-226360\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/thrive-comments.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/thrive-comments-300x91.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nThrive Comments is another option we consider to be one of the best WordPress comments plugins. This powerful plugin collects all of the most addictive elements of social media and community forums and adds them to your WordPress comments. </p>\n<p>Your visitors get the satisfaction of seeing other users &#8220;like&#8221; their comments and they get to earn achievement badges by commenting. The plugin also includes features that allow users to feel validated by receiving &#8220;up-votes&#8221; and getting their comments featured. </p>\n<p>With Thrive Comments you get extensive reporting on visitor activity over time too. You can see stats about your most active commenters, find out which of your posts are most popular for commenting, and track your engagement progress. </p>\n<p><a href=\"https://www.isitwp.com/refer/thrive-comments/\" target=\"_blank\" rel=\"nofollow\">Get Started with Thrive Comments Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/wordpress-comment-rating-plugin/\" target=\"_blank\" rel=\"nofollow\">5. WordPress Comment Rating Plugin</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/wordpress-comment-rating-plugin/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wordpress-comment-rating-plugin.png\" alt=\"wordpress-comment-rating-plugin\" width=\"740\" height=\"367\" class=\"alignnone size-full wp-image-226361\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wordpress-comment-rating-plugin.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wordpress-comment-rating-plugin-300x149.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nThe WordPress Comment Rating Plugin is a simple and easy-to-use plugin that allows users to rate the comments in a post. The plugin can also sort comments by most popular. </p>\n<p>Users will be encouraged to engage more in the comment section when their comments get great ratings and rise to the top of the pack. </p>\n<p>You can purchase a regular license for the WordPress Comment Rating Plugin for only $22 which comes with future updates and 6 months of support from wpbuddy. </p>\n<p><a href=\"https://www.isitwp.com/refer/wordpress-comment-rating-plugin/\" target=\"_blank\" rel=\"nofollow\">Get Started with WordPress Comment Rating Plugin Today!</a></p>\n<h3><a href=\"https://wordpress.org/plugins/disqus-comment-system/\" target=\"_blank\" rel=\"nofollow\">6. Disqus Comment System</a></h3>\n<p><a href=\"https://wordpress.org/plugins/disqus-comment-system/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/disqus.png\" alt=\"disqus-comment-system-wordpress-plugin\" width=\"740\" height=\"251\" class=\"alignnone size-full wp-image-226362\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/disqus.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/disqus-300x102.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nDisqus Comment System is one of the most popular commenting systems for WordPress sites. With the Disqus Comment System you can replace the default WordPress comment section with theirs. Their interactive comment section will help you increase engagement, grow relationships with your visitors, and retain readers. And their 1-click installation seamlessly integrates with WordPress which means you don&#8217;t have to know a thing about code. </p>\n<p>With Disqus you can bring users back to your website with email and browser notifications, users can vote for comments, as well as add fun elements to their comments like photos, videos, mentions, and more. </p>\n<p>Users also get flexible social login options and you can sort discussions by oldest, newest, and best comments. </p>\n<p><a href=\"https://wordpress.org/plugins/disqus-comment-system/\" target=\"_blank\" rel=\"nofollow\">Get Started with Disqus Comment System Today!</a></p>\n<h3><a href=\"https://wordpress.org/plugins/disable-comments/\" target=\"_blank\" rel=\"nofollow\">7. Disable Comments</a></h3>\n<p><a href=\"https://wordpress.org/plugins/disable-comments/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/disablecomments.png\" alt=\"disable-comments-wordpress-plugin\" width=\"740\" height=\"256\" class=\"alignnone size-full wp-image-226363\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/disablecomments.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/disablecomments-300x104.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nWhile <a href=\"https://optinmonster.com/to-allow-blog-comments-or-not-heres-what-the-data-shows/\">data shows that you should allow comments on your blog</a>, you may occasionally want to disable comments on your WordPress posts. You can easily do it with the Disable Comments plugin. </p>\n<p>This free plugin allows WordPress administrators to disable comments on any post type like <a href=\"https://optinmonster.com/50-blog-post-ideas-that-you-can-write-about-today/\" target=\"_blank\">blog posts</a>, pages, and attachments. If you want to disable comments on specific individual posts you can or you can disable comments on your entire <a href=\"https://www.isitwp.com/how-to-make-a-website-step-by-step/\" target=\"_blank\">WordPress website</a>. </p>\n<p><a href=\"https://wordpress.org/plugins/disable-comments/\" target=\"_blank\" rel=\"nofollow\">Get Started with Disable Comments Today!</a></p>\n<h3><a href=\"https://wordpress.org/plugins/commentluv/\" target=\"_blank\" rel=\"nofollow\">8. CommentLuv</a></h3>\n<p><a href=\"https://wordpress.org/plugins/commentluv/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/commentluv.png\" alt=\"comment-luv-wordpress-comments-plugin\" width=\"740\" height=\"258\" class=\"alignnone size-full wp-image-226364\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/commentluv.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/commentluv-300x105.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nCommentLuv is another WordPress comments plugin that comes with a variety of features for your comment section to grow traffic to your site and increase engagement.</p>\n<p>With CommentLuv, users can add their Twitter link to their comments, add keywords, and you can add a top commenter widget. The plugin also fights off spam comments and readers have the opportunity to register for your site to unlock advanced CommentLuv features like dofollow links and more.  </p>\n<p><a href=\"https://wordpress.org/plugins/commentluv/\" target=\"_blank\" rel=\"nofollow\">Get Started with CommentLuv Today!</a></p>\n<h3><a href=\"https://www.isitwp.com/refer/facebook-plugins/\" target=\"_blank\" rel=\"nofollow\">9. Facebook Plugins, Comments &#038; Dialogs for WordPress</a></h3>\n<p><a href=\"https://www.isitwp.com/refer/facebook-plugins/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/facebookplugins.png\" alt=\"facebook-plugin-best-wordpress-comment-plugins\" width=\"740\" height=\"378\" class=\"alignnone size-full wp-image-226366\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/facebookplugins.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/facebookplugins-300x153.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nFacebook Plugins, Comments &#038; Dialogs for WordPress is a comment plugin that enables you to integrate many Facebook features with the comment section on your website. </p>\n<p>They offer 11 different Facebook plugins that can be added to your site with only 1 line of code. Facebook plugins  include: Facebook comments, like button, share button, send button, and more. </p>\n<p>With this comment and <a href=\"https://www.isitwp.com/best-wordpress-social-media-plugins/\">social media plugin</a>, the users on your site who also use Facebook will have everything they need to interact with your posts in one place. </p>\n<p><a href=\"https://www.isitwp.com/refer/facebook-plugins/\" target=\"_blank\" rel=\"nofollow\">Get Started with Facebook Plugins, Comments &#038; Dialogs for WordPress Today!</a></p>\n<h3><a href=\"https://wordpress.org/plugins/comments-from-facebook/\" target=\"_blank\" rel=\"nofollow\">10. WpDevArt Facebook Comments</a></h3>\n<p><a href=\"https://wordpress.org/plugins/comments-from-facebook/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpdevart.png\" alt=\"wpdevart-best-comment-plugins-wordpress\" width=\"740\" height=\"337\" class=\"alignnone size-full wp-image-226369\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpdevart.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wpdevart-300x137.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nWpDevArt Facebook Comments is another great plugin to integrate Facebook with your comment section on WordPress. The WpDevArt Facebook Comments plugin is a tool that allows you to show Facebook comments to visitors on your website.</p>\n<p>This user-friendly plugin is available for free. You can upgrade to the pro version to get access to features like the ability to choose the color scheme, set the background color, and 39 awesome animation effects.</p>\n<p><a href=\"https://wordpress.org/plugins/comments-from-facebook/\" target=\"_blank\" rel=\"nofollow\">Get Started with WpDevArt Facebook Comments Today!</a></p>\n<h3><a href=\"https://wordpress.org/plugins/comment-approved/\" target=\"_blank\" rel=\"nofollow\">11. Comment Approved</a></h3>\n<p><a href=\"https://wordpress.org/plugins/comment-approved/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/commentapproved.png\" alt=\"comment-approved-wordpress-plugin\" width=\"740\" height=\"313\" class=\"alignnone size-full wp-image-226375\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/commentapproved.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/commentapproved-300x127.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nComment Approved is a simple WordPress plugin that will send out a customizable notification to a user who has left a comment on your website once the comment has been approved by you. </p>\n<p>This plugin is free to download and it&#8217;s a great way to encourage users to return to your site. </p>\n<p><a href=\"https://wordpress.org/plugins/comment-approved/\" target=\"_blank\" rel=\"nofollow\">Get Started with Comment Approved Today!</a></p>\n<h3><a href=\"https://wordpress.org/plugins/subscribe-to-comments-reloaded/\" target=\"_blank\" rel=\"nofollow\">12. Subscribe To Comments Reloaded</a></h3>\n<p><a href=\"https://wordpress.org/plugins/subscribe-to-comments-reloaded/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/subscribe-to-comments-reloaded.png\" alt=\"subscribe-to-comments-reloaded-plugin\" width=\"740\" height=\"255\" class=\"alignnone size-full wp-image-226381\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/subscribe-to-comments-reloaded.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/subscribe-to-comments-reloaded-300x103.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nSubscribe to Comments Reloaded is another popular WordPress plugin that gets users to return to your website again and again. </p>\n<p>This plugin enables users to sign up to receive email notifications any time a user replies or comments on a post that they&#8217;ve already commented on. </p>\n<p>Subscribe to Comments Reloaded also comes with a subscription manager that commenters can use to unsubscribe from certain posts or suspend all notifications when they don&#8217;t want to be updated on conversations any longer. </p>\n<p><a href=\"https://wordpress.org/plugins/subscribe-to-comments-reloaded/\" target=\"_blank\" rel=\"nofollow\">Get Started with Subscribe To Comments Reloaded Today!</a></p>\n<h3><a href=\"https://wordpress.org/plugins/yoast-comment-hacks/\" target=\"_blank\" rel=\"nofollow\">13. Yoast Comment Hacks</a></h3>\n<p><a href=\"https://wordpress.org/plugins/yoast-comment-hacks/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/yoast-comment-hacks.png\" alt=\"yoast-comment-hacks-plugins\" width=\"740\" height=\"258\" class=\"alignnone size-full wp-image-226384\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/yoast-comment-hacks.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/yoast-comment-hacks-300x105.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nYou might already be aware of Yoast SEO, one of the most popular <a href=\"https://www.isitwp.com/best-seo-tools-to-grow-your-site-traffic/\">SEO plugins</a>. But Yoast has another amazing plugin for comments called Yoast Comment Hacks.</p>\n<p>Yoast Comment Hacks adds small hacks to the default WordPress comment section to make it easier to manage. For instance, it adds cleaner comment notification emails. It also adds a button in the WordPress toolbar to email all of the commenters on your post at once. </p>\n<p>Another awesome feature is the ability to redirect first-time commenters to a thank you page that encourages them to sign up for your email list. </p>\n<p><a href=\"https://wordpress.org/plugins/yoast-comment-hacks/\" target=\"_blank\" rel=\"nofollow\">Get Started with Yoast Comment Hacks Today!</a></p>\n<h3><a href=\"https://wordpress.org/plugins/simple-comment-editing/\" target=\"_blank\" rel=\"nofollow\">14. Simple Comment Editing </a></h3>\n<p><a href=\"https://wordpress.org/plugins/simple-comment-editing/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/simplecommentediting.png\" alt=\"simple-comment-editing-wordpress-plugin\" width=\"740\" height=\"255\" class=\"alignnone size-full wp-image-226390\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/simplecommentediting.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/simplecommentediting-300x103.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nThe Simple Comment Editing plugin for WordPress is a tool that lets anonymous users edit and/or delete their comments for up to 5 minutes. </p>\n<p>Users can spend more time leaving you a thoughtful comment with the ability to edit and delete. </p>\n<p>All you have to do is install the plugin and the rest is done for you. </p>\n<p><a href=\"https://wordpress.org/plugins/simple-comment-editing/\" target=\"_blank\" rel=\"nofollow\">Get Started with Simple Comment Editing Today!</a></p>\n<h3><a href=\"https://wordpress.org/plugins/no-page-comment/\" target=\"_blank\" rel=\"nofollow\">15. No Page Comment </a></h3>\n<p><a href=\"https://wordpress.org/plugins/no-page-comment/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/nopagecomment.png\" alt=\"no-page-comment-wordpress-comment-plugin\" width=\"740\" height=\"342\" class=\"alignnone size-full wp-image-226397\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/nopagecomment.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/nopagecomment-300x139.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nNo Page Comment is a great WordPress plugin that gives you complete control over your comment section. This plugin lets you choose whether comments are enabled or disabled by default on all new posts, pages, and custom post types. At the same time, you also have the ability to individually enable comments on posts or pages. </p>\n<p>You can also quickly disable all comments for a specific post type. </p>\n<p><a href=\"https://wordpress.org/plugins/no-page-comment/\" target=\"_blank\" rel=\"nofollow\">Get Started with No Page Comment Today!</a></p>\n<h3><a href=\"https://wordpress.org/plugins/wpdiscuz/\" target=\"_blank\" rel=\"nofollow\">16. Comments &#8211; wpDiscuz</a></h3>\n<p><a href=\"https://wordpress.org/plugins/wpdiscuz/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpdiscuz.png\" alt=\"wpdiscuz-best-wordpress-comment-plugins\" width=\"740\" height=\"253\" class=\"alignnone size-full wp-image-226403\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpdiscuz.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wpdiscuz-300x103.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nThe wpDiscuz plugin for WordPress is another plugin that&#8217;s loaded with features to make your comment section more enjoyable for your readers. </p>\n<p>With wpDiscuz you can add an interactive comment box to posts and other content types. You also get access to notifier buttons that give you live updates of new comments. Other features include full integration with social network login plugins, a &#8220;Load More Comments&#8221; button, and more. </p>\n<p>This powerful WordPress comments plugin also claims to bring the fastest commenting experience due to it&#8217;s boosted core. </p>\n<p><a href=\"https://wordpress.org/plugins/wpdiscuz/\" target=\"_blank\" rel=\"nofollow\">Get Started with Comments &#8211; wpDiscuz Today!</a></p>\n<h3><a href=\"https://wordpress.org/plugins/postmatic/\" target=\"_blank\" rel=\"nofollow\">17. Replyable</a></h3>\n<p><a href=\"https://wordpress.org/plugins/postmatic/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/replyable.png\" alt=\"replyable-best-wordpress-comment-plugins\" width=\"740\" height=\"249\" class=\"alignnone size-full wp-image-226407\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/replyable.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/replyable-300x101.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nReplyable by Postmatic is a WordPress plugin that takes comment subscription to another level. </p>\n<p>Users can sign up to get email notifications anytime someone comments on your blog posts. But with Replyable&#8217;s machine-learning, no one will get annoyed by receiving too many emails. Replyable rates comments for relevance and only sends the best to subscribers. If users want to reply to a comment all they have to do is reply to the email.</p>\n<p>The plugin is free to download but if you want premium features like the ability to reply to comments right from your inbox, it costs $2.99 per month.  </p>\n<p><a href=\"https://wordpress.org/plugins/postmatic/\" target=\"_blank\" rel=\"nofollow\">Get Started with Replyable Today!</a></p>\n<h3><a href=\"https://wordpress.org/plugins/heyoya-voice-comments-reviews/\" target=\"_blank\" rel=\"nofollow\">18. Voice Comments &#038; Reviews &#8211; Heyoya</a></h3>\n<p><a href=\"https://wordpress.org/plugins/heyoya-voice-comments-reviews/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/heyoya.png\" alt=\"voice-comments-reviews-heyoya\" width=\"740\" height=\"257\" class=\"alignnone size-full wp-image-226415\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/heyoya.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/heyoya-300x104.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></a><br />\nVoice Comments &#038; Reviews by Heyoya is an awesome WordPress plugin that lets users leave voice comments on your posts. This fun and unique way to interact is a great way to keep users entertained and on your site for longer. </p>\n<p>You can install it by copying and pasting only 1 line of code and you can use the plugin in over 20 different languages. It also comes with Heyoya Mobile so you can record and track voice comments on the go.</p>\n<p>With voice commenting you can have more personal conversations with your readers and provide an experience they won&#8217;t get on other sites.     </p>\n<p><a href=\"https://wordpress.org/plugins/heyoya-voice-comments-reviews/\" target=\"_blank\" rel=\"nofollow\">Get Started with Voice Comments &#038; Reviews &#8211; Heyoya Today!</a></p>\n<p>We hope you enjoyed this article on the 18 best WordPress comments plugins. Now you have a bunch of great tools to increase the activity in your comment section and manage all the new comments you&#8217;ll receive. </p>\n<p>If you liked this post, check out our article on <a href=\"https://www.isitwp.com/legit-ways-to-make-money-online-blogging/\">30 ways to make money online</a>. </p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/best-wordpress-comment-plugins/\">18 Best WordPress Comments Plugins to Boost Engagement</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://www.isitwp.com/best-wordpress-comment-plugins/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:51:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"Wufoo Alternative – WPForms vs Wufoo (Which One is Better?)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://www.isitwp.com/wufoo-alternative-wpforms-vs-wufoo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://www.isitwp.com/wufoo-alternative-wpforms-vs-wufoo/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Dec 2018 12:48:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:25:\"best contact form plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:36:\"comparison between wpforms and wufoo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:16:\"wpforms vs wufoo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://www.isitwp.com/?p=227294\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:625:\"<p>Are you looking for a Wufoo alternative? If you want to add a contact form to your WordPress website, making sure you pick the contact form plugin that&#8217;s the best choice for you is important. So, if you&#8217;re curious about which is the better contact form builder, WPForms vs Wufoo, you&#8217;re in the right place. [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/wufoo-alternative-wpforms-vs-wufoo/\">Wufoo Alternative &#8211; WPForms vs Wufoo (Which One is Better?)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Editorial Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:19576:\"<p>Are you looking for a Wufoo alternative? If you want to add a contact form to your WordPress website, making sure you pick the contact form plugin that&#8217;s the best choice for you is important. So, if you&#8217;re curious about which is the better contact form builder, WPForms vs Wufoo, you&#8217;re in the right place. </p>\n<p>In this article, we&#8217;ll compare WPForms vs Wufoo so that you can determine which plugin is the best for your website. </p>\n<p>We&#8217;ll break down each contact form plugin and see how they measure up in each of the following categories:</p>\n<ul>\n<li>Ease of Use</li>\n<li>Features</li>\n<li>Support</li>\n<li>Price</li>\n</ul>\n<p>Ready to dive in to the comparison between WPForms and Wufoo? Ok, let&#8217;s get started!</p>\n<h3> Ease of Use: WPForms vs Wufoo</h3>\n<p>Being able to easily create forms with your contact form plugin of choice is important, especially for beginners. If you&#8217;re have difficulties creating a form, you&#8217;re wasting precious time and you&#8217;ll be missing out on connecting with customers and converting website visitors into leads and sales. After all, what good is a contact form plugin if you don&#8217;t even know how to use it. </p>\n<h3>Wufoo: Ease of Use</h3>\n<p><a href=\"https://www.wufoo.com/\" target=\"_blank\" rel=\"nofollow\">Wufoo</a> is an online contact form builder by SurveyMonkey that claims users can create a beautiful contact form in minutes with their drag and drop builder.  </p>\n<p>To add a form field to your contact form, you simply drag the form field from the list of choices on the left over to your contact form on the right. You can also use one of their pre-made templates to get you started. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-draganddrop.png\" alt=\"wufoo-comparison\" width=\"740\" height=\"450\" class=\"alignnone size-full wp-image-227307\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-draganddrop.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-draganddrop-300x182.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>While adding form fields to your contact form seems simple enough, the rest of the Wufoo interface looks dated and isn&#8217;t very user-friendly. The Field Settings and Form Settings are limited in what you can customize as well. </p>\n<p>Wufoo gives you the option of choosing a theme in the form builder too. But you can&#8217;t preview what each theme will look like. You have to pick a theme blindly and then hit the View Form button which will open up a new tab. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-themes.png\" alt=\"wufoo-vs-wpforms-themes\" width=\"740\" height=\"390\" class=\"alignnone size-full wp-image-227311\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-themes.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-themes-300x158.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>When you use their Theme Designer, the interface isn&#8217;t drag and drop like they implied it was. There are also a ton of options for customization which can be overwhelming. If chosen, some of these styles can really end up hurting your brand more than helping it. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-themedesigner.png\" alt=\"wufoo-vs-wpforms-drag-and-drop\" width=\"740\" height=\"469\" class=\"alignnone size-full wp-image-227309\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-themedesigner.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-themedesigner-300x190.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>Plus, there&#8217;s another issue when you embed a form onto your site. The background, header, and border style all disappear in order to make sure the form integrates on your website perfectly. This means if you want to keep everything you&#8217;ve just designed, you&#8217;ve got to go back and apply those elements with HTML or CSS. Which can be a complicated task for beginners. </p>\n<p>So, while Wufoo claims you can create a form in no time at all, it actually takes a lot of experimenting and clicking around to create a form. </p>\n<h3>WPForms: Ease of Use</h3>\n<p>On the other hand, <a href=\"https://wpforms.com/\" target=\"_blank\">WPForms</a> is the most user-friendly contact form builder available. WPForms focuses on usability and simplicity and it truly is a drag and drop contact form builder that requires no coding at all. </p>\n<p>WPForms comes with a number of pre-designed templates for any type of form that you want to create. While Wufoo offers more templates, they&#8217;re very difficult to locate in your account. But you can access all of WPForm&#8217;s templates right in the WPForms Form Editor. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-templates.png\" alt=\"wpforms vs wufoo- templates\" width=\"740\" height=\"355\" class=\"alignnone size-full wp-image-227322\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-templates.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-templates-300x144.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>Adding new form fields to your contact form is super easy with WPForms. Simply drag and drop the form field you want onto your contact form. You can click on the form fields to make changes and you can see your changes in real-time on your form with the preview panel.   </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-dragdrop.png\" alt=\"wpforms-drag-and-drop-vs-wufoo\" width=\"740\" height=\"367\" class=\"alignnone size-full wp-image-227324\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-dragdrop.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-dragdrop-300x149.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>Plus, WPForms offers a variety of form fields for your contact form right out of the box. For instance, some of their unique form fields include:</p>\n<ul>\n<li>File Upload</li>\n<li>Star Rating</li>\n<li>Checkboxes</li>\n<li>GDPR Agreement</li>\n<li>CAPTCHA</li>\n<li>Password</li>\n<li>Net Promoter Score</li>\n</ul>\n<p>WPForms also allows you to <a href=\"https://www.isitwp.com/legit-ways-to-make-money-online-blogging/\">make money online</a> easily with their built-in payment form fields like Single and Multiple Items, Dropdown Items, Credit Card, Total, and more so that you can accept online payments right from your WordPress website. </p>\n<p>On top of all of the awesome elements you can add to your contact form, once you&#8217;re finished designing, you can <a href=\"https://www.isitwp.com/add-contact-form-wordpress-website/\">embed your contact form on your website</a> with 1 click. </p>\n<p>So, if you want a <a href=\"https://www.isitwp.com/best-wordpress-contact-form-plugins/\">contact form plugin</a> that makes it easy to create a contact form right away and comes with a ton of extra built-in features, WPForms is the way to go. </p>\n<p><strong>Winner: WPForms</strong></p>\n<h3>Features: WPForms vs Wufoo</h3>\n<p>Not only does a contact form plugin need to be easy to use, but it should also come with all the features you need to create a powerful contact form for your website. If you choose a contact form plugin and find out you can only accomplish the basics with it, or have to fork over a bunch more money for the extra features you need, then it&#8217;s not a good choice. That&#8217;s why having a variety of features is so important.</p>\n<h3>Wufoo: Features</h3>\n<p>Compared to WPForms, Wufoo&#8217;s feature set is very limited. While Wufoo has a number of basic form fields like name, address, rating and file upload, they don&#8217;t offer as many unique form fields like WPForms does. </p>\n<p>In fact, here is a list of some of the features that Wufoo is missing compared to WPForms:</p>\n<ul>\n<li>No specialty form fields like WPForms GDPR Agreement, Net Promoter Score, and others</li>\n<li>Each Wufoo plan restricts the number of forms entries you can receive, even with the highest priced one</li>\n<li>Since Wufoo hosts your forms for you, there are upload storage limitations</li>\n<li>You can only <a href=\"https://www.isitwp.com/best-wordpress-analytics-solutions-compared/\">track your analytics</a> with the 2 most expensive plans</li>\n<li>You can only accept online payments with the 2 highest plans</li>\n<li>There are conditional logic limitations, even on paid accounts</li>\n</ul>\n<p>So, not only is it more difficult to create a form on Wufoo but they don&#8217;t offer many of the features you&#8217;ll need for your contact form as your business grows. And when the limitations outweigh the features, it&#8217;s time to consider a different contact form builder.</p>\n<h3>WPForms: Features</h3>\n<p>In comparison to the limited features of Wufoo, <a href=\"https://wpforms.com/\" target=\"_blank\">WPForms</a> is bursting at the seams with built-in features. You&#8217;ll have access to every element you need to make your contact form as powerful and unique as you need it to be. </p>\n<p>The following is a list of just some of the stand-out features that WPForms offers:</p>\n<ul>\n<li><strong>Smart Conditional Logic</strong> &#8211; You can create as many conditional rules as you want</li>\n<li><strong>Unlimited Forms</strong> &#8211; You can create an unlimited number of forms and receive an unlimited number of entries, on any plan</li>\n<li><strong>Unlimited File Storage</strong> &#8211; Upload an unlimited amount of files and easily save and locate them in your media library</li>\n<li><strong>Entry Management</strong> &#8211; Manage all your entries right from the WPForms dashboard in an organized way</li>\n<li><strong>Spam Protection</strong> &#8211; Protect your forms from spam with built-in honeypot spam protection, CAPTCHA, customize your own CAPTCHA, or use Google reCAPTCHA</li>\n<li><strong>Automatic Form Confirmations</strong> &#8211; Let users know that you&#8217;ve received their entry with 3 different form confirmation types &#8211; Message, Show Page, and Redirect</li>\n<li><strong>Survey and Polls</strong> &#8211; Create surveys and polls for your site and get reports that display your results for easy analysis of data</li>\n<li><strong>Partial Form Saving</strong> &#8211; Don&#8217;t miss out on leads with the ability to capture information partial form entries</li>\n<li><strong>Geolocation Tracking</strong> &#8211; Find out where your customers are located with geolocation tracking so you can send them messages that are relevant to them and their location</li>\n<li><strong>Post Submissions</strong> &#8211; Accept guest post submissions for <a href=\"https://www.isitwp.com/how-to-start-a-blog-step-by-step/\">your WordPress blog</a> through the front-end of your website with post submissions for forms</li>\n<li><strong>Online Signature Capability</strong> &#8211; Collect signatures right on your forms for agreements and contracts</li>\n<li><strong>Form Permissions and Access Controls</strong> &#8211; You can protect your forms with passwords, schedule start and stop dates for your forms, and limit the number of entries you&#8217;ll accept</li>\n<li><strong>Email Marketing Integration</strong> &#8211; Connect your form to <a href=\"https://www.isitwp.com/best-email-marketing-services-compared/\">email marketing services</a> like Mailchimp or Constant Contact</li>\n</ul>\n<p>With the outstanding number of WPForms features you get for almost any of their plans, your options for creating high-converting forms are limitless.</p>\n<p><strong>Winner: WPForms</strong></p>\n<h3>Support: WPForms vs Wufoo</h3>\n<p>Even if you&#8217;re experienced with form builders or websites, things can go wrong sometimes and you&#8217;ll want to know that you have help any time a problem arises. When choosing a new contact form builder, you need ample support in case you run into any issues when creating your forms or managing your account. </p>\n<h3>Wufoo: Support</h3>\n<p>With Wufoo, you only have 2 ways of accessing support: You can either send them a message through their generic contact form or you can search through articles in the Help Center. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-support.png\" alt=\"wufoo vs wpforms support\" width=\"740\" height=\"365\" class=\"alignnone size-full wp-image-227325\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-support.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-support-300x148.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>Wufoo gives no guarantees or assurances for when they&#8217;ll answer your message if you use their contact form for support. They could take a few hours to reply or a few days, you just don&#8217;t know.</p>\n<p>The Help Center isn&#8217;t always useful either. For example, when we typed in &#8220;not getting email notifications&#8221; into the keyword search bar, no articles came up for troubleshooting this issue. In a similar circumstance, customers would be forced to contact Wufoo via their contact form and hope for a speedy reply. </p>\n<h3>WPForms: Support</h3>\n<p>On the other hand, WPForms offers a variety of support channels for their customers. Not only does WPForms offer more support but you can rest-assured that your questions will be answered as soon as possible.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-support-2.png\" alt=\"wpforms-support\" width=\"740\" height=\"477\" class=\"alignnone size-full wp-image-227327\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-support-2.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-support-2-300x193.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>You can access the support ticket system to get your questions answered. The WPForms team lets customers know that they answer support tickets within 24 hours on weekdays. So, you won&#8217;t have to wonder when you&#8217;ll get a solution to your problem.  </p>\n<p>They also provide you with a Documentation section that includes documentation, reference materials, and tutorials in categories such as: </p>\n<ul>\n<li>Getting Started</li>\n<li>Functionality</li>\n<li>Styling</li>\n<li>Extending</li>\n<li>Addons</li>\n<li>Account Management</li>\n</ul>\n<p>WPForms also offers another amazing resource for support, their blog. You can find a ton of articles and tutorials,  with screenshots included, that will show you how to do pretty much anything with WPForms. Plus their blog gives you tips and tricks on how to create high-converting, beautiful forms. </p>\n<p>If you&#8217;re looking for more comprehensive support for a form builder, look no further than WPForms. </p>\n<p><strong>Winner: WPForms</strong></p>\n<h3>Price: WPForms vs Wufoo</h3>\n<p>The cost of the <a href=\"https://wpforms.com/\" target=\"_blank\">online form builder</a> you choose is typically one of the most important factors, especially if you&#8217;re just starting out and budget is an issue. You never want to pay too much and get too little in return, so remember to do your research to compare price vs. what you get. </p>\n<h3>Wufoo: Price</h3>\n<p>Wufoo has 5 different plans to choose from. They offer a free plan, but like we mentioned previously, you can only create 5 forms and receive 100 entries. Clearly, the free plan is not suited for any business. </p>\n<p>They offer 4 expensive premium plans, ranging from $14.08/month to $183.25/month. When billed yearly the Professional plan works out to be a whopping $349.00 (more if you pay monthly), and you&#8217;re still only allowed to receive 5000 entries. The Advanced plan costs a staggering $889/year for 25,000 entries and access to all the features they offer. And to be able to get 200,000 entries, you&#8217;ll have to fork over an astounding $2199/year. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-pricing.png\" alt=\"wufoo-pricing\" width=\"740\" height=\"313\" class=\"alignnone size-full wp-image-227332\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-pricing.png 740w, https://www.isitwp.com/wp-content/uploads/2018/12/wufoo-pricing-300x127.png 300w\" sizes=\"(max-width: 740px) 100vw, 740px\" /></p>\n<p>Wufoo also charges you if you exceed the amount of entries allowed for the month. You&#8217;ll get charged $0.05 for each entry you receive that&#8217;s over the limit, which can really put you in the red. </p>\n<p>So, with Wufoo, you&#8217;re paying a ton of money and not getting a lot to show for it. </p>\n<h3>WPForms: Price</h3>\n<p><a href=\"https://wpforms.com/pricing/\" target=\"_blank\">WPForms</a> on the other hand is much more affordable and you get a lot more bang for your buck. They offer a free version and 4 different premium plans ranging from $39.50/year for the Basic plan to $299.50/year for the Elite plan. </p>\n<p>As you can see, all of WPForm&#8217;s premium plans are far less costly than even Wufoo&#8217;s Basic plan with a ton of limitations. </p>\n<p>All of WPForms premium plans are unlimited. You can create as many different forms as you want and receive an unlimited number of form entries. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-price-1.png\" alt=\"wpforms-pricing\" width=\"742\" height=\"369\" class=\"alignnone size-full wp-image-227331\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-price-1.png 742w, https://www.isitwp.com/wp-content/uploads/2018/12/wpforms-price-1-300x149.png 300w\" sizes=\"(max-width: 742px) 100vw, 742px\" /></p>\n<p>With WPForms most popular plan, Pro, you only pay $199.50/year and you get access to almost every feature they offer including email marketing service integration. But with the equivalent Wufoo plan, you&#8217;ll be paying $349.00/year.  </p>\n<p>Overall, with WPForms you&#8217;ll be paying way less for an amazing, easy-to-use tool that&#8217;s chock full with a ton of features. And with Wufoo, you&#8217;ll be paying an arm and a leg for less than half of the features that WPForms offers. </p>\n<p><strong>Winner: WPForms</strong></p>\n<h3>Conclusion: WPForms vs Wufoo: Which is Better?</h3>\n<p>While Wufoo appears to be a user-friendly contact form builder, upon closer inspection it&#8217;s much more difficult to use. Not only is there issues with the interface but Wufoo just doesn&#8217;t have a feature set to write home about. You&#8217;ll also have to take a big handful out of your wallet every month to use it and you don&#8217;t even to receive as many form entries as you want. And who wants to put a limit on the leads and sales you could be getting?</p>\n<p>WPForms is the clear winner. You want a contact form builder that&#8217;s easy-to-use and comes with a ton of features that will make your contact form even mightier. You can get all that with WPForms, and for a reasonable price too. <a href=\"https://wpforms.com/\" target=\"_blank\">Get Started with WPForms Today!</a> </p>\n<p>We hope we&#8217;ve helped you find an awesome alternative to Wufoo in WPForms. If you liked this article and want to check out more of our contact form plugins comparisons, check out our article on the <a href=\"https://www.isitwp.com/best-wordpress-contact-form-plugins/\">7 Best Contact Form Plugins Compared</a>. </p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/wufoo-alternative-wpforms-vs-wufoo/\">Wufoo Alternative &#8211; WPForms vs Wufoo (Which One is Better?)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://www.isitwp.com/wufoo-alternative-wpforms-vs-wufoo/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:51:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"How to Create a Popup Form in WordPress (Step by Step)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://www.isitwp.com/create-popup-form/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://www.isitwp.com/create-popup-form/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 26 Dec 2018 12:05:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:19:\"WordPress Tutorials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:12:\"optinmonster\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"popup\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:20:\"wordpress optin form\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://www.isitwp.com/?p=225603\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:601:\"<p>Looking to create a popup form for your website? That’s a fantastic idea! Few things convert visitors to subscribers, followers, and customers than popup campaigns. That’s why, in this article, we’re going to show you how to create a popup form the easy way, step-by-step. Why Create a Popup Form? When it comes to growing [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/create-popup-form/\">How to Create a Popup Form in WordPress (Step by Step)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Editorial Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:15043:\"<p>Looking to create a popup form for your website? That’s a fantastic idea! Few things convert visitors to subscribers, followers, and customers than popup campaigns.</p>\n<p>That’s why, in this article, we’re going to show you how to create a popup form the easy way, step-by-step.</p>\n<h3>Why Create a Popup Form?</h3>\n<p>When it comes to growing your email list, popup stays way ahead of the curve compared to any other types of optin forms. With popups, users have seen their conversions increase by as much as 600%. </p>\n<p>However, some users don&#8217;t like popups because of its intrusive nature. People hate popups when they&#8217;re being shoved into reader’s faces whenever they visit your site.</p>\n<p>This is why you need a clever popup solution like OptinMonster. <a href=\"https://optinmonster.com\" target=\"_blank\">OptinMonster</a> lets you easily create any type of optin forms, including a popup form. Best of all, you can control every aspect of your popup campaign from how and when it triggers to who it’s shown to. That way, you can grow your email list without being intrusive.  </p>\n<p><a href=\"https://optinmonster.com\" target=\"_blank\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/11/optinmonster.jpg\" alt=\"OptinMonster\" width=\"775\" height=\"350\" class=\"alignnone size-full wp-image-224558\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/11/optinmonster.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/11/optinmonster-300x135.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/11/optinmonster-768x347.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>And, of course, it has seamless integration with all the most popular email marketing services.</p>\n<p>There are a vast number of templates available, so you can get started immediately, without having to build your popup from scratch (though you can if you want to!). </p>\n<p>To get it, head to <a href=\"https://optinmonster.com\" target=\"_blank\">OptinMonster’s official website</a> and sign up. Don’t forget to use our special code <strong>SAVE10</strong> at checkout to get 10% off just for being an IsItWP reader!</p>\n<h3>1. Build Your Campaign</h3>\n<p>Log into your OptinMonster account. From there, you’ll be taken to your dashboard. Get started by clicking the green <strong>Create Campaign</strong> button.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Create-Campaign.png\" alt=\"Create Campaign\" width=\"775\" height=\"137\" class=\"alignnone size-full wp-image-226022\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Create-Campaign.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/Create-Campaign-300x53.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/Create-Campaign-768x136.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Next, you’ll be asked to choose a campaign type. Click <strong>Popup</strong> since you want to create a popup form.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Choose-Popup.png\" alt=\"Choose Popup\" width=\"480\" height=\"360\" class=\"alignnone size-full wp-image-226023\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Choose-Popup.png 480w, https://www.isitwp.com/wp-content/uploads/2018/12/Choose-Popup-300x225.png 300w\" sizes=\"(max-width: 480px) 100vw, 480px\" /></p>\n<p>Select your favorite campaign template to get started. Simply hover over the design you like best and click <strong>Use Template</strong>. For this tutorial, we’re using the Balance template.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Choose-Template.png\" alt=\"Choose Template\" width=\"775\" height=\"337\" class=\"alignnone size-full wp-image-226024\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Choose-Template.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/Choose-Template-300x130.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/Choose-Template-768x334.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>From there, you’ll be asked to name your campaign and choose which of your websites you’d like your popup form to appear on. Once you’ve filled out the fields, click the <strong>Start Building</strong> button.</p>\n<p>Like magic, you’ll be taken to the campaign builder. You’ll see the default version of whatever template you chose. Since we chose Balance, this is what it looks like:</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Default-Campaign.png\" alt=\"Default Campaign\" width=\"748\" height=\"380\" class=\"alignnone size-full wp-image-226025\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Default-Campaign.png 748w, https://www.isitwp.com/wp-content/uploads/2018/12/Default-Campaign-300x152.png 300w\" sizes=\"(max-width: 748px) 100vw, 748px\" /></p>\n<p>Now you can begin tweaking the template to make it completely your own.</p>\n<h3>2. Customize Your Campaign</h3>\n<p>Every great popup has a great picture, so we’ll start there. Click on the default image to open the Editing Image Element section on the left. Then, click <strong>Select to Replace Image</strong>.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Replace-Image.png\" alt=\"Replace Image\" width=\"775\" height=\"338\" class=\"alignnone size-full wp-image-226026\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Replace-Image.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/Replace-Image-300x131.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/Replace-Image-768x335.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>You’ll be able to choose an image from your existing image library (if you’ve uploaded anything before), or you can choose to upload a new image from your computer.</p>\n<p>Once your image is looking fabulous, move onto the <strong>headline text</strong>. Simply click on it to select it. Once selected, an editing area will pop up on the left. Go ahead and write your own headline and fiddle with the text elements as needed. You can change the font, the size, the color, and anything else you want to make it perfect.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Edit-Headline.png\" alt=\"Edit Headline\" width=\"775\" height=\"356\" class=\"alignnone size-full wp-image-226027\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Edit-Headline.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/Edit-Headline-300x138.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/Edit-Headline-768x353.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Next, follow the same steps to customize the <strong>body text</strong>.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Edit-Body-Content.png\" alt=\"Edit Body Content\" width=\"775\" height=\"343\" class=\"alignnone size-full wp-image-226028\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Edit-Body-Content.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/Edit-Body-Content-300x133.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/Edit-Body-Content-768x340.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Don’t forget to click the green <strong>Save</strong> button in the top right. Save as often as you need to throughout the building process to make sure you retain all your changes.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Save-Campaign.png\" alt=\"Save Campaign\" width=\"775\" height=\"72\" class=\"alignnone size-full wp-image-226029\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Save-Campaign.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/Save-Campaign-300x28.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/Save-Campaign-768x71.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>If needed, you can also change the look and text for your <strong>email optin field</strong>. Simply click on it to edit it, the same as everything else. There will be options on the left to change the field’s text as well as the color and style of the submit button.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Edit-Email-Box.png\" alt=\"Edit Email Box\" width=\"775\" height=\"298\" class=\"alignnone size-full wp-image-226030\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Edit-Email-Box.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/Edit-Email-Box-300x115.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/Edit-Email-Box-768x295.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Speaking of submissions… Now it’s time to connect your email marketing service to your popup!</p>\n<h3>3. Enable Email Integration</h3>\n<p>Since most popup campaigns these days are used to gain leads and subscribers, this step is one of the most important.</p>\n<p>OptinMonster integrates with all the most popular email service providers; however, for this guide, we’ll be using MailChimp.<br />\nStart by clicking on the <strong>Integrations</strong> tab at the top of the screen, and then click <strong>Add New Integration</strong> on the left-hand side.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Add-New-Integration.png\" alt=\"Add New Integration\" width=\"775\" height=\"338\" class=\"alignnone size-full wp-image-226031\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Add-New-Integration.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/Add-New-Integration-300x131.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/Add-New-Integration-768x335.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Select MailChimp from the dropdown menu.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Select-EMS.png\" alt=\"Select EMS\" width=\"289\" height=\"380\" class=\"alignnone size-full wp-image-226032\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Select-EMS.png 289w, https://www.isitwp.com/wp-content/uploads/2018/12/Select-EMS-228x300.png 228w\" sizes=\"(max-width: 289px) 100vw, 289px\" /></p>\n<p>Fill out the fields for your MailChimp account label and API. You can get these from your MailChimp account. If you need help with this aspect, simply follow the documentation provided by OptinMonster.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Connect-to-MailChimp.png\" alt=\"Connect to MailChimp\" width=\"197\" height=\"380\" class=\"alignnone size-full wp-image-226033\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Connect-to-MailChimp.png 197w, https://www.isitwp.com/wp-content/uploads/2018/12/Connect-to-MailChimp-156x300.png 156w\" sizes=\"(max-width: 197px) 100vw, 197px\" /></p>\n<p>Then, click the green <strong>Connect to MailChimp</strong> button to continue.</p>\n<p>You’ll then be asked to choose which of your lists you want your form for connect to. Click the one you want.</p>\n<p>Bam! Email integration has now been completed. Onto the next step!</p>\n<h3>4. Configure the Display Rules</h3>\n<p>Click on <strong>Display Rules</strong> at the top of the page. From there, you’ll be shown a page that looks like this:</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Display-Rules.png\" alt=\"Display Rules\" width=\"775\" height=\"340\" class=\"alignnone size-full wp-image-226034\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Display-Rules.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/Display-Rules-300x132.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/Display-Rules-768x337.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Configure your display rules however you like. Simply click through each section and fiddle with it until you’re satisfied.</p>\n<h3>5. Hit Publish</h3>\n<p>Now, it’s time to make your campaign live! Hit the <strong>Publish</strong> tab at the top of the screen. Then, click the toggle so it turns green and says <strong>LIVE</strong>.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Publish.png\" alt=\"Publish\" width=\"775\" height=\"361\" class=\"alignnone size-full wp-image-226035\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Publish.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/Publish-300x140.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/Publish-768x358.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Don’t forget to hit the <strong>Save</strong> button one last time!</p>\n<p>From there, scroll down to the <strong>Platform</strong> option. Select <strong>WordPress</strong> and then follow the instructions provided.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Choose-Platform.png\" alt=\"Choose Platform\" width=\"775\" height=\"334\" class=\"alignnone size-full wp-image-226036\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Choose-Platform.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/Choose-Platform-300x129.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/Choose-Platform-768x331.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>You’re nearly there! One step to go.</p>\n<h3>6. Make Your Popup Form Live on WordPress</h3>\n<p>Log into your WordPress dashboard. There should now be an OptinMonster tab on the left-hand side. Click on it to see a list of all your campaigns. If you don’t see the campaign you made, hit the <strong>Refresh</strong> button.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Refresh-Campaigns.png\" alt=\"Refresh Campaigns\" width=\"775\" height=\"200\" class=\"alignnone size-full wp-image-226037\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Refresh-Campaigns.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/Refresh-Campaigns-300x77.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/Refresh-Campaigns-768x198.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>Once your campaign shows up, click the <strong>Go Live</strong> link.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/Go-Live.png\" alt=\"Go Live\" width=\"775\" height=\"200\" class=\"alignnone size-full wp-image-226038\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/Go-Live.png 775w, https://www.isitwp.com/wp-content/uploads/2018/12/Go-Live-300x77.png 300w, https://www.isitwp.com/wp-content/uploads/2018/12/Go-Live-768x198.png 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>That’s it! You’re done. Now, your popup form will show up on your website.</p>\n<p>We hope this tutorial helped you learn how to create a popup form for your WordPress website.</p>\n<p>If you found this guide useful, you might also like our list of the <a href=\"https://www.isitwp.com/best-wordpress-plugins-marketers/\" title=\"[Expert Pick] 18 Best WordPress Plugins for Marketers\">best plugins for marketers</a>.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/create-popup-form/\">How to Create a Popup Form in WordPress (Step by Step)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://www.isitwp.com/create-popup-form/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:51:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n		\n		\n				\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"Bloom Alternative: OptinMonster vs. Bloom (Compared)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://www.isitwp.com/optinmonster-vs-bloom/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://www.isitwp.com/optinmonster-vs-bloom/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Dec 2018 14:02:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:22:\"Bloom vs. OptinMonster\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:27:\"how to create an optin form\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:23:\"lead generation plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://www.isitwp.com/?p=226898\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:599:\"<p>Want to generate more leads, conversions, and sales from your website traffic? If so, then OptinMonster and Bloom are 2 of the most popular lead generation tools you can use. But if you’re wondering which one to choose, we’ll help you to make the right choice. In this article, we’ll compare OptinMonster vs. Bloom and [&#8230;]</p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/optinmonster-vs-bloom/\">Bloom Alternative: OptinMonster vs. Bloom (Compared)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Editorial Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:23842:\"<p>Want to generate more leads, conversions, and sales from your website traffic? If so, then <a href=\"https://optinmonster.com/\" target=\"_blank\">OptinMonster</a> and <a href=\"https://www.isitwp.com/refer/bloom/\" target=\"_blank\" rel=\"nofollow\">Bloom</a> are 2 of the most <a href=\"https://www.isitwp.com/best-wordpress-lead-generation-plugins-compared/\">popular lead generation tools</a> you can use. But if you’re wondering which one to choose, we’ll help you to make the right choice. </p>\n<p>In this article, we’ll compare OptinMonster vs. Bloom and show you the important differences between them so you can decide which tool you should use on your site for lead generation. </p>\n<p>We’ll compare the 2 plugins based on the following 6 points:</p>\n<ol>\n<li>General Overview</li>\n<li>Campaign Types and Templates</li>\n<li>Targeting and Triggers</li>\n<li>Campaign Creation and Customization – Ease of Use</li>\n<li>Pricing – Value for Money</li>\n<li>Documentation and Support</li>\n</ol>\n<h3>1. OptinMonster vs. Bloom – General Overview</h3>\n<p><strong>What&#8217;s OptinMonster?</strong></p>\n<p><a href=\"https://optinmonster.com/\" target=\"_blank\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-best-lead-generation-software.jpg\" alt=\"optinmonster-best-lead-generation-software\" width=\"775\" height=\"349\" class=\"alignnone size-full wp-image-226931\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-best-lead-generation-software.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-best-lead-generation-software-300x135.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-best-lead-generation-software-768x346.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p><a href=\"https://www.isitwp.com/wordpress-plugins/optinmonster/\">OptinMonster</a> is the best, most popular lead generation and conversion software available on the market. It comes with powerful features to help publishers, eCommerce sites, and agencies to grow their email lists, boost pageviews, reduce cart abandonment, and increase sales. It’s used by over 700,000 websites online today. </p>\n<p>OptinMonster is a Software as a Service (SaaS) solution that you can use on nearly every website platform including CMS platforms like WordPress, Drupal, and Magento; eCommerce platforms like Shopify and WooCommerce; and <a href=\"https://www.isitwp.com/best-website-builders-for-beginners-compared-2018/\">website builders</a> like Squarespace, Weebly, and Blogger. </p>\n<p>You can install OptinMonster on your website easily by adding a custom JavaScript code to your site’s pages. It’s even easier on WordPress with its free WordPress API plugin. </p>\n<p>OptinMonster has inbuilt integration for every major email marketing service. There’re over 30 <a href=\"https://www.isitwp.com/best-email-marketing-services-compared/\">email marketing services</a> you can connect with your OptinMonster campaigns to boost your marketing. </p>\n<p><strong>What&#8217;s Bloom?</strong></p>\n<p><a href=\"https://www.isitwp.com/refer/bloom/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/bloom-wordpress-email-optin-plugin.jpg\" alt=\"bloom-wordpress-email-optin-plugin\" width=\"775\" height=\"311\" class=\"alignnone size-full wp-image-226932\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/bloom-wordpress-email-optin-plugin.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/bloom-wordpress-email-optin-plugin-300x120.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/bloom-wordpress-email-optin-plugin-768x308.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p><a href=\"https://www.isitwp.com/wordpress-plugins/bloom/\">Bloom</a> is one of the most powerful email optin and lead generation plugins for WordPress. It was created by one of the leading WordPress theme companies, <a href=\"https://www.isitwp.com/refer/elegant-themes/\" target=\"_blank\" rel=\"nofollow\">Elegant Themes</a>; the company behind popular <a href=\"https://www.isitwp.com/wordpress-themes/divi-theme-review/\">Divi theme</a> and its power plugin Divi Builder. Elegant Themes’s themes and plugins, including Bloom, are used by over 500,000 <a href=\"https://www.isitwp.com/how-to-make-a-website-step-by-step/\">WordPress websites</a> online. </p>\n<p>Bloom brings to the table amazing features including highly effective optin types, elegant templates, targeting, and triggers to allow you to gain more subscribers. Using this plugin, you can create beautiful optin forms easily and display them in various locations on your site to grow your email list. It has integration with 16 of the best email marketing services.  </p>\n<p>Unlike OptinMonster, Bloom is exclusively a WordPress solution. It’s a plugin you’ll need to install on your WordPress site and host the plugin&#8217;s resources on your own server. Whereas OptinMonster is centrally hosted and you only link the resources with your site; meaning it tends to add less load time to your server. </p>\n<h3>2. Campaign Types and Templates</h3>\n<p><a href=\"https://www.isitwp.com/refer/bloom/\" target=\"_blank\" rel=\"nofollow\">Bloom</a> allows you to create 6 primary optin types:</p>\n<ol>\n<li>Pop up optin</li>\n<li>Fly in optin</li>\n<li>Inline optin</li>\n<li>Below content</li>\n<li>Widget area optin</li>\n<li>Locked content optin</li>\n</ol>\n<p>As you click <strong>New Optin</strong> to get started, you’ll see a new page with these 6 option types. You should choose one to proceed.  </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/06/bloom-optin-form-types.jpg\" alt=\"bloom-optin-form-types\" width=\"745\" height=\"431\" class=\"alignnone size-full wp-image-219870\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/06/bloom-optin-form-types.jpg 745w, https://www.isitwp.com/wp-content/uploads/2018/06/bloom-optin-form-types-300x174.jpg 300w\" sizes=\"(max-width: 745px) 100vw, 745px\" /></p>\n<p>Next, you can choose a template for your optin form. There’re more than 100 elegant, professional-looking pre-made templates available within Bloom. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/06/bloom-opt-in-form-templates.jpg\" alt=\"bloom-opt-in-form-templates\" width=\"745\" height=\"407\" class=\"alignnone size-full wp-image-219874\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/06/bloom-opt-in-form-templates.jpg 745w, https://www.isitwp.com/wp-content/uploads/2018/06/bloom-opt-in-form-templates-300x164.jpg 300w\" sizes=\"(max-width: 745px) 100vw, 745px\" /></p>\n<p>You can choose one of the templates, customize it, and add your new email optin to your site. Bloom is a great plugin for creating email optin forms. </p>\n<p><a href=\"https://optinmonster.com/\" target=\"_blank\">OptinMonster</a> lets you do more than just create optin forms or email signup forms. And that’s why OptinMonster uses <strong>Campaigns</strong> instead of optins. Besides generating more leads, campaigns help to increase engagement and sales directly on your site. For example, you can create campaigns with <a href=\"https://optinmonster.com/features/countdown-timer/\" target=\"_blank\">countdown timers</a> which create urgency and boost sales. </p>\n<p>With OptinMonster, you can create 5 main types of campaigns:</p>\n<ol>\n<li>Popup</li>\n<li>Fullscreen</li>\n<li>Slide-in</li>\n<li>Floating bar</li>\n<li>Inline</li>\n</ol>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-campaign-types.jpg\" alt=\"optinmonster-campaign-types\" width=\"775\" height=\"281\" class=\"alignnone size-full wp-image-226934\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-campaign-types.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-campaign-types-300x109.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-campaign-types-768x278.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>OptinMonster lets you create all the same types of optins Bloom can create and also adds 2 additional campaigns: Fullscreen campaigns and floating bar campaigns. Both of these campaigns are highly effective to grab more users attention.</p>\n<p>For example, <a href=\"https://optinmonster.com/features/fullscreen-welcome-gate/\" target=\"_blank\">fullscreen welcome mat</a> lets you grab your visitors’ attention the minute they land on your site. The fullscreen overlay helps to present a targeted offer for anything in a distraction-free way. Similarly, a <a href=\"https://optinmonster.com/features/floating-bar/\" target=\"_blank\">floating bar</a> is a highly effective campaign that lets you get users’ attention without annoying them, as it remains sticky at the top or bottom of the page. </p>\n<p>After you choose a campaign type in step 1, you can choose a template in step 2. OptinMonster features a separate collection of templates for each campaign type. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/choose-optinmonster-campaign-template.jpg\" alt=\"choose-optinmonster-campaign-template\" width=\"775\" height=\"499\" class=\"alignnone size-full wp-image-226933\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/choose-optinmonster-campaign-template.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/choose-optinmonster-campaign-template-300x193.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/choose-optinmonster-campaign-template-768x494.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>OptinMonster makes it easy with campaign-specific templates. For each campaign, it has a selection of tailor-made templates, each built for a specific purpose. Plus, the templates show a great diversity and uniqueness from each other. </p>\n<p><strong>Winner</strong>: OptinMonster. For its ability to create optin forms as well as campaigns for more conversions. The additional campaign types, Fullscreen Welcome Map and Floating Bar, also prove OptinMonster a winner. Regarding templates, Bloom’s large collection of templates certainly gives users plenty of design options; however, keeping them all in an unsorted bundle makes it hard for users to pick one with ease. </p>\n<h3>3. Targeting and Triggers</h3>\n<p>Targeting features and triggers are very important for optin campaigns. Now, let’s see OptinMonster vs. Bloom based on their features for targeting and triggers. </p>\n<p><a href=\"https://www.isitwp.com/refer/bloom/\" target=\"_blank\" rel=\"nofollow\">Bloom</a> features powerful display settings to allow you configure where and when your option appears. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/06/bloom-display-settings.jpg\" alt=\"bloom-display-settings\" width=\"745\" height=\"407\" class=\"alignnone size-full wp-image-219877\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/06/bloom-display-settings.jpg 745w, https://www.isitwp.com/wp-content/uploads/2018/06/bloom-display-settings-300x164.jpg 300w\" sizes=\"(max-width: 745px) 100vw, 745px\" /></p>\n<p>It allows to use 6 types of triggers for automatic popups and fly-in optins: </p>\n<ol>\n<li>Timed delay – optin triggers after a specific duration of time a user is on your site</li>\n<li>Bottom of post – optin appears when a user reaches the bottom of a post</li>\n<li>After scrolling – displays optin after a user scrolls a defined percentage of the way down your page</li>\n<li>After commenting – shows optin once a user comments on a post/ page</li>\n<li>After purchasing – optin appears right after a user completes the checkout process</li>\n<li>After inactivity – displays a popup or fly in optin if it detects a user is inactive on a page for long time</li>\n</ol>\n<p>With Bloom, you can choose specific locations to display your optins. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/bloom-targeting.png\" alt=\"bloom-targeting\" width=\"177\" height=\"330\" class=\"alignnone size-full wp-image-226936\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/bloom-targeting.png 177w, https://www.isitwp.com/wp-content/uploads/2018/12/bloom-targeting-161x300.png 161w\" sizes=\"(max-width: 177px) 100vw, 177px\" /></p>\n<p>Then, you can also refine optin targeting by defining particular pages and posts to display and not to display optin forms.</p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/06/bloom-display-specific-post-options.jpg\" alt=\"bloom-display-specific-post-options\" width=\"745\" height=\"407\" class=\"alignnone size-full wp-image-219878\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/06/bloom-display-specific-post-options.jpg 745w, https://www.isitwp.com/wp-content/uploads/2018/06/bloom-display-specific-post-options-300x164.jpg 300w\" sizes=\"(max-width: 745px) 100vw, 745px\" /></p>\n<p><a href=\"https://optinmonster.com/\" target=\"_blank\">OptinMonster</a> has much more powerful display rules than Bloom offers. You can add all the triggers Bloom allows you to use and a whole lot more. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-display-rules.jpg\" alt=\"optinmonster-display-rules\" width=\"775\" height=\"657\" class=\"alignnone size-full wp-image-226937\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-display-rules.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-display-rules-300x254.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-display-rules-768x651.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></p>\n<p>You can actually set up advanced targeting rules with OptinMonster. Here’re just a few of them: </p>\n<ul>\n<li><a href=\"https://optinmonster.com/features/geo-location-targeting/\" target=\"_blank\">Geo-location targeting</a> &#8211; You can show relevant campaigns based on your users’ locations. It’s great for retail stores and location-specific offers.</li>\n<li><a href=\"https://optinmonster.com/features/onsite-retargeting/\" target=\"_blank\">OnSite Retargeting</a> &#8211; It lets you target your repeat visitors with new campaigns based on their previous interactions on your site.</li>\n<li><a href=\"https://optinmonster.com/features/device-based-targeting/\" target=\"_blank\">Device-Based Targeting</a> &#8211; Lets you create campaigns for phones, tablets, and desktops. This enhances user-experience as well as site engagement.</li>\n<li><a href=\"https://optinmonster.com/features/adblock-detection/\" target=\"_blank\">AdBlock Detection</a> &#8211; You can display specific campaigns for visitors using AdBlock software.</li>\n</ol>\n<p>These advanced targeting features are available exclusively on OptinMonster. Similarly, it has powerful triggers.  </p>\n<p>One of the most powerful OptinMonster triggers is <a href=\"https://optinmonster.com/features/exit-intent/\" target=\"_blank\">Exit Intent Technology</a>, which is its signature feature. This smart technology helps to convert abandoning visitors into subscribers and customers. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2016/01/exitintent-optinmonster.gif\" alt=\"Exit Intent technology in OptinMonster\" width=\"900\" height=\"400\" class=\"alignnone size-full wp-image-546\" /></p>\n<p>Exit Intent Technology detects user behavior and prompts them with a targeted campaign at the precise moment they’re about to exit your page. It’s great for reducing your shopping cart abandonment rate and for various content marketing campaigns. </p>\n<p><strong>Winner:</strong> OptinMonster. For its advanced targeting options and triggers like OnSite Retargeting, Geo-Location Targeting, Exit-Intent Technology, etc.</p>\n<h3>4. Campaign Creation and Customization – Ease of Use</h3>\n<p>With both Bloom and OptinMonster, campaign creation starts with the selection of a campaign type and a template. Once you’ve selected a template, you can customize the template, set triggers, and publish. </p>\n<p>With <a href=\"https://www.isitwp.com/refer/bloom/\" target=\"_blank\" rel=\"nofollow\">Bloom</a>, you can configure your optin form content, layout, styling, and everything you want to change. There’re a number of design options available for forms, image orientations, optin borders and edges, and limitless colors. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2018/06/bloom-design-options.jpg\" alt=\"bloom-design-options\" width=\"745\" height=\"407\" class=\"alignnone size-full wp-image-219875\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/06/bloom-design-options.jpg 745w, https://www.isitwp.com/wp-content/uploads/2018/06/bloom-design-options-300x164.jpg 300w\" sizes=\"(max-width: 745px) 100vw, 745px\" /></p>\n<p>However, its optin editor interface looks old-fashioned in the age of visual page builders. You’ll need to click the <strong>Preview</strong> button to see any changes you made. </p>\n<p>In contrast, <a href=\"https://optinmonster.com/\" target=\"_blank\">OptinMonster</a> provides a true visual editor for editing your campaigns. Once you’ve selected a template, you’ll see your campaign editor and see the changes you make live as you edit. You don’t need to click any preview buttons. </p>\n<p><img src=\"https://www.isitwp.com/wp-content/uploads/2016/01/drag-and-drop-countdown-timer.gif\" alt=\"\" width=\"800\" height=\"524\" class=\"alignnone size-full wp-image-221003\" /></p>\n<p>Editing your campaign elements is very easy as you can click directly on any part of your campaign you want to change and start editing with the tools that appear on the left-hand screen. </p>\n<p><strong>Winner:</strong> OptinMonster. For its simple and user-friendly visual editing interface.</p>\n<h3>5.Pricing – Value for Money</h3>\n<p>Both Bloom and OptinMonster are paid solutions, yet you may want to know which offers the best value for your money. So, here’s a head-to-head Bloom vs. OptinMonster pricing comparison. </p>\n<p><a href=\"https://www.isitwp.com/refer/bloom/\" target=\"_blank\" rel=\"nofollow\">Bloom</a> has 2 pricing plans: Yearly Access and Lifetime Access. </p>\n<p><a href=\"https://www.isitwp.com/refer/bloom/\" target=\"_blank\" rel=\"nofollow\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/elegant-themes-pricing.jpg\" alt=\"elegant-themes-pricing\" width=\"775\" height=\"346\" class=\"alignnone size-full wp-image-226938\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/elegant-themes-pricing.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/elegant-themes-pricing-300x134.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/elegant-themes-pricing-768x343.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>Yearly Access costs $89 per year, whereas the Lifetime Access costs $249. Both plans provide you with access to all the themes and plugins released by Elegant Themes and you can use them on unlimited sites. </p>\n<p><a href=\"https://optinmonster.com/\" target=\"_blank\">OptinMonster</a> features 4 main pricing plans: Basic, Plus, Pro, and Growth. </p>\n<p><a href=\"https://optinmonster.com/\" target=\"_blank\"><img src=\"https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-pricing.jpg\" alt=\"optinmonster-pricing\" width=\"775\" height=\"506\" class=\"alignnone size-full wp-image-226939\" srcset=\"https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-pricing.jpg 775w, https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-pricing-300x196.jpg 300w, https://www.isitwp.com/wp-content/uploads/2018/12/optinmonster-pricing-768x501.jpg 768w\" sizes=\"(max-width: 775px) 100vw, 775px\" /></a></p>\n<p>OptinMonster pricing plans are based on the number of sites, the number of campaigns, campaign targeting and triggers, reporting features, and more. </p>\n<p>The <strong>Basic</strong> plan includes essential tools to get more subscribers from your existing site traffic. With this plan, you can use OptinMonster on 1 website and you can create up to 3 campaigns.  It costs $9 per month when billed annually. </p>\n<p>The <strong>Plus</strong> plan allows you 3 website licenses and unlimited campaigns. With this plan, you can use powerful targeting and triggers like MonsterLinks, Exit Intent Technology, etc. It costs $19 per month when billed annually. </p>\n<p>The most popular OptinMonster plan is <strong>Pro</strong>. This plan allows you to add campaigns on 5 websites. You can remove <strong>Powered by OptinMonster</strong> branding with this plan. It includes the most powerful OptinMonster features. It costs $29 per month when billed annually. </p>\n<p><strong>Growth</strong> is the most expensive plan and costs $49 per month when billed annually. With this plan, you can use OptinMonster on 10 websites and you’ll get premium support. </p>\n<p>The pricing plans for Bloom and OptinMonster seem incomparable as they&#8217;re based on such different factors. The Bloom plugin, with any plan, seems to be a good deal as it comes bundled with all of their themes and plugins. If you want to use them, it’s a fair plan; yet you’ll miss the advanced features that OptinMonster provides. </p>\n<p>OptinMonster’s pricing plans seem quite high; however, its powerful features make it well worth the money. If you choose Bloom, you can’t use highly effective Exit Intent Technology, Geo-Location Targeting, OnSite Retargeting, features. </p>\n<p><strong>Winner:</strong> Tie. </p>\n<h3>6. Documentation and Support</h3>\n<p>Elegant Themes has a rich documentation guide for <a href=\"https://www.isitwp.com/refer/bloom/\" target=\"_blank\" rel=\"nofollow\">Bloom</a> users. There’re 3 getting started articles and more articles on creating optins using Bloom. These tutorials are simple and comprehensive. </p>\n<p>If you need further support, you can contact their support team via chat or email. You’ll also have access to the Elegant Themes&#8217; support forum where you can post your questions. </p>\n<p><a href=\"https://optinmonster.com/\" target=\"_blank\">OptinMonster</a> features an even bigger documentation collection with more than 200 articles. These articles help you to work easily with OptinMonster. </p>\n<p>If you need technical support, you can log into your OptinMonster member area and email the support team. The queries are responded to within 24 hours. OptinMonster members can also get support via live chat. </p>\n<p><strong>Winner:</strong> Tie. </p>\n<h3>Conclusion</h3>\n<p>OptinMonster is, without question, the best lead generation and conversion optimization software. Its advanced campaign types, targeting options, and triggers make it the far superior lead generation tool for WordPress as well as other website platforms. </p>\n<p>Bloom is also a powerful lead generation tool you can use exclusively for WordPress. It’s great for creating email optin forms. However, if you want more features, like cart abandonment reduction, geo-location targeting, etc., you&#8217;ll need to choose the Bloom alternative: OptinMonster. </p>\n<p>Hence, <a href=\"https://optinmonster.com/\" target=\"_blank\">OptinMonster</a> is the perfect choice for publishers, eCommerce sites, and businesses who want to grow their email lists and boost their conversions and sales. However, you can consider <a href=\"https://www.isitwp.com/refer/bloom/\" target=\"_blank\" rel=\"nofollow\">Bloom</a> if you just need a basic lead generation tool, or if you already have your eye on other plugins or themes by Elegant Themes that would make their bundled pricing offer worth it to you. </p>\n<p>We hope this article helped you to decide between OptinMonster or Bloom for your site. You may also want to read our head-to-head comparison between <a href=\"https://www.isitwp.com/shopify-vs-woocommerce/\">Shopify vs. WooCommerce</a>. </p>\n<p>The post <a rel=\"nofollow\" href=\"https://www.isitwp.com/optinmonster-vs-bloom/\">Bloom Alternative: OptinMonster vs. Bloom (Compared)</a> appeared first on <a rel=\"nofollow\" href=\"https://www.isitwp.com\">IsItWP - WordPress Technology Lookup Tool</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://www.isitwp.com/optinmonster-vs-bloom/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:28:\"https://www.isitwp.com/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:18:{s:6:\"server\";s:17:\"Sucuri/Cloudproxy\";s:4:\"date\";s:29:\"Wed, 09 Jan 2019 19:14:42 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:11:\"x-sucuri-id\";s:5:\"14003\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:25:\"strict-transport-security\";a:2:{i:0;s:44:\"max-age=31536000; includeSubdomains; preload\";i:1;s:13:\"max-age=86400\";}s:23:\"content-security-policy\";s:26:\"upgrade-insecure-requests;\";s:10:\"set-cookie\";s:98:\"srv_id=c22b625f94ce9b456550ebf299e3ae82; expires=Wed, 09-Jan-19 20:12:46 GMT; max-age=3600; path=/\";s:4:\"vary\";s:6:\"Cookie\";s:7:\"expires\";s:29:\"Thu, 19 Nov 1981 08:52:00 GMT\";s:13:\"cache-control\";s:35:\"no-store, no-cache, must-revalidate\";s:6:\"pragma\";s:8:\"no-cache\";s:4:\"etag\";s:34:\"\"ec243b50bf7bdbf476a423bb5e9fba28\"\";s:12:\"x-robots-tag\";s:15:\"noindex, follow\";s:9:\"x-backend\";s:22:\"awesomemotive-web4.com\";s:14:\"x-sucuri-cache\";s:3:\"HIT\";}}s:5:\"build\";s:14:\"20130911133210\";}','no'),(1122,'_transient_timeout_feed_mod_29f7869e391c2a2c562f0042f814b9de','1547104482','no'),(1123,'_transient_feed_mod_29f7869e391c2a2c562f0042f814b9de','1547061282','no'),(1124,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1547104482','no');
INSERT INTO `wpyt_options` VALUES (1125,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: WordPress 5.1 to Replace “Blogging” References with “Publishing”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86675\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wptavern.com/wordpress-5-1-to-replace-blogging-references-with-publishing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1627:\"<p>WordPress 5.1 will replace the &#8220;Happy blogging&#8221; language in wp-config-sample.php with &#8220;Happy Publishing.&#8221; The next major release also cleans up a few other &#8220;blog&#8221; references by replacing them with the word &#8220;site.&#8221; A lot of tutorials and documentation will need to be updated. WordPress contributors are continuing to fine-tune the wording in various files to reflect its expanded capabilities as a publishing platform.</p>\n\n\n\n<img />\n\n\n\n<p>&#8220;As of this commit, WordPress is no longer a simple blogging platform,&#8221; Gary Pendergast wrote in the <a href=\"https://core.trac.wordpress.org/changeset/44455\">commit message</a>. &#8220;It&#8217;s now a comprehensive publishing solution.&#8221;</p>\n\n\n\n<p>This commit signifies the end of an era, which actually ended a long time ago but is now formally recognized in the software&#8217;s language. WordPress can still be used for blogging, but it&#8217;s so much more dynamic. These days, successful blogs can easily transition into e-commerce stores or online magazines without having to migrate to a new platform.</p>\n\n\n\n<p>With Gutenberg now in the hands of millions of users, publishing different types of content is becoming more accessible for those who don&#8217;t know how to code. The new era of &#8220;Happy Publishing&#8221; in 2019 will bring even more progress on that roadmap, enabling users to have a more unified editing experience for other aspects of content management, including <a href=\"https://make.wordpress.org/core/2018/12/08/9-priorities-for-2019/\">widgets and menus</a>.</p>\n\n\n\n<p><br /><br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Jan 2019 23:44:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: GitHub Announces Free, Unlimited Private Repositories\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86657\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/github-announces-free-unlimited-private-repositories\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3488:\"<p>GitHub users no longer have to pay to keep code private. The company is now offering <a href=\"https://blog.github.com/2019-01-07-new-year-new-github/\" rel=\"noopener\" target=\"_blank\">unlimited private repositories to Free account users</a>, with up to three collaborators. Developers have different reasons for wanting to keep their code private &#8211; it may not be ready, they may be working on a side project, or may just be starting out in their coding journey. GitHub now makes it possible for users with free accounts to do that work in private, without having to upgrade to a Pro account for $7/month.</p>\n<p>This change brings the code hosting site more in line with competitors like GitLab.com, which allows for unlimited private projects and collaborators, and Bitbucket, a platform that has offered this for much longer. Bitbucket was actually <a href=\"https://news.ycombinator.com/item?id=4428278\" rel=\"noopener\" target=\"_blank\">GitLab&#8217;s inspiration for this model</a>. </p>\n<p>GitHub&#8217;s announcement was well-received but for many who have already moved to GitLab, this news come too late. Some are also wary of giving GitHub access to their private projects after Microsoft acquired the company for $7.5 billion last year. However, GitHub seems to be focusing its efforts less on monetizing the small fish and more on evolving the company&#8217;s Enterprise offering. It has combined its Business Cloud and Enterprise products into one unified &#8220;GitHub Enterprise&#8221; product that starts at $21/user/month.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Of course the GitHub update is so bigmega giantcorp can get you to give them more info &amp; in turn more power &amp; in turn more money, if that\'s annoying &amp;/or unsavory to you there are alternatives (that are less convenient but that\'s what this is all about anyway) no grump just fact</p>\n<p>&mdash; Jon Christopher (@jchristopher) <a href=\"https://twitter.com/jchristopher/status/1082353226329001985?ref_src=twsrc%5Etfw\">January 7, 2019</a></p></blockquote>\n<p></p>\n<p>&#8220;At GitLab we think that repositories will become a commodity,&#8221; GitLab CEO Sid Sijbrandij <a href=\"https://about.gitlab.com/2019/01/07/github-offering-free-private-repos-for-up-to-three-collaborators/\" rel=\"noopener\" target=\"_blank\">said</a> in reaction to GitHub&#8217;s announcement. &#8220;I think Microsoft will try to generate more revenue with people using Azure more instead of paying for repos. We&#8217;re focusing on making a single application for the entire DevOps lifecycle that can replace a lot of other tools.&#8221;  </p>\n<p>Every inch given in this space makes code sharing platforms more competitive. In terms of private repositories, GitHub has come close to offering what its smaller competitors have been giving away for free for a long time. If GitHub were to add Continuous Integration (CI) for free users to match GitLab&#8217;s free tier, for example, it might capture even more of the market. Different features sway different types of users to adopt one platform or another and eventually some of those turn into paying customers.</p>\n<p>For existing GitHub Free users, unlimited private repositories means the opportunity to keep their incomplete projects out of the public eye, instead of having people stumble on them and wonder why they don&#8217;t work as expected. It also frees up a few more dollars for Pro users who want to downgrade to Free accounts.  </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Jan 2019 18:46:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"Dev Blog: The Month in WordPress: December 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6527\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2019/01/the-month-in-wordpress-december-2018/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3528:\"<p>New features, a big event, and important announcements marked December as a milestone month for the WordPress community. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Release of WordPress 5.0</h2>\n\n\n\n<p>On December 6 <a href=\"https://wordpress.org/news/2018/12/bebo/\">WordPress 5.0 was released</a>. This release includes the much anticipated new block editor as the default editing experience. While some users have chosen to continue using the <a href=\"https://wordpress.org/plugins/classic-editor/\">Classic Editor</a> on their sites, many site owners have quickly upgraded to this latest version.<br /></p>\n\n\n\n<p>Two security and maintenance releases came out over the course of the month, with <a href=\"https://wordpress.org/news/2018/12/wordpress-5-0-2-maintenance-release/\">the latest update</a> providing a huge boost to performance and stability.<br /></p>\n\n\n\n<p>The new version of WordPress comes a new default theme: <a href=\"https://wordpress.org/themes/twentynineteen/\">Twenty Nineteen</a>. This theme is designed to highlight how the block editor can be used.<br /></p>\n\n\n\n<p>Want to get involved in developing WordPress Core? Follow <a href=\"https://make.wordpress.org/core\">the Core team blog</a> and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Gutenberg Phase 2</h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2018/12/08/gutenberg-phase-2/\">The next phase of Gutenberg</a> is being decided, starting with widgets, which will make it easier for users to customize their sites. This will be done with features being added to the Gutenberg plugin.<br /></p>\n\n\n\n<p>Want to get involved in develop the future of the WordPress dashboard? Follow <a href=\"https://make.wordpress.org/core\">the Core team blog</a> and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>9 Projects for 2019</h2>\n\n\n\n<p>WordPress co-founder Matt Mullenweg outlined <a href=\"https://make.wordpress.org/core/2018/12/08/9-priorities-for-2019/\">9 projects for the year 2019</a>. These projects range from creating a block for navigations menus, porting all existing widgets into blocks, forming a triage team to tackle open issues on Trac and more.<br /></p>\n\n\n\n<p>A <a href=\"https://make.wordpress.org/core/2018/12/17/status-update-porting-widgets-to-blocks/\">status update</a> for porting existing widgets to blocks has been posted by Mel Choyce.</p>\n\n\n\n<h2>WordCamp US 2019 Dates announced</h2>\n\n\n\n<p><a href=\"https://2019.us.wordcamp.org/2018/12/12/wordcamp-us-2019-announcing-our-dates/\">WordCamp US 2019</a> will be held during Nov. 1-3, 2019, in St Louis, Missouri. It will be one of our largest events of the year and will feature Matt Mullenweg’s annual State of the Word address.<br /></p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>v1.2.1 of the WordPress Coding Standards library <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/releases/tag/1.2.1\">has been released</a>.</li><li>A few revisions <a href=\"https://make.wordpress.org/core/2018/12/18/proposed-revisions-to-javascript-coding-standards/\">have been proposed</a> for the WordPress JavaScript coding standards.</li></ul>\n\n\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Jan 2019 09:18:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Aditya Kane\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"WPTavern: WordPress Governance Project Flagged as Unsanctioned, First Meeting Set for January 15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86573\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://wptavern.com/wordpress-governance-project-flagged-as-unsanctioned-first-meeting-set-for-january-15\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10550:\"<p>The WordPress Governance Project is a new community initiative, led by Rachel Cherry and Morten Rand-Hendriksen, that will <a href=\"https://wpgovernance.com/\">host its first meeting Tuesday, January 15 2019.</a></p>\n\n\n\n<p>The purpose of the project is to address two objectives:</p>\n\n\n\n<ol><li>The governance of the WordPress open source project and its various community components, and</li><li>WordPress’ role in the governance of the open web including representation in forums where decisions about the web platform and the Internet are made.</li></ol>\n\n\n\n<p>Hendriksen advocated for open governance when he introduced the project at WordCamp US in his presentation, <a href=\"https://wordpress.tv/2018/12/30/morten-rand-hendriksen-moving-the-web-forward-with-wordpress/\">Moving the Web forward with WordPress</a>. He discussed how the decisions made for WordPress&#8217; future affect a large portion the web. The project will first look at WordPress&#8217; internal governance structure and then move into the second aspect of getting WordPress a seat at the table in important discussions affecting the broader web.</p>\n\n\n\n<img />\n\n\n\n<p>Contributors on the project are aiming to propose a governance model for WordPress at or before WordCamp Europe 2019 or the Community Summit, if one is planned for 2019. The group plans to research existing governance models from corporations, government, and the open web community and submit their proposal to WordPress&#8217; current leadership for consideration.</p>\n\n\n\n<h3>WordPress Governance Project Seeks to Change Leadership Structure, Rand-Hendriksen Says Status Quo is &#8220;Not Tenable&#8221;</h3>\n\n\n\n<p>The governance project has piqued the public&#8217;s interest but some have found its objectives confusing. It is not clear what actions will be within the realm of possibility with the current benevolent dictator model WordPress has used. Part of the scope of the project is to &#8220;propose a leadership and governance model for the WordPress open source project and its communities.&#8221;</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">That\'s part of the job: to figure out how it can and should work. The status quo is not tenable, and leaves us out of important conversations about where the web and the internet is headed.</p>&mdash; Morten i Norge <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f1f8-1f1ef.png\" alt=\"🇸🇯\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/11/72x72/1f328.png\" alt=\"🌨\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/11/72x72/1f976.png\" alt=\"🥶\" class=\"wp-smiley\" /> (@mor10) <a href=\"https://twitter.com/mor10/status/1075145343019302912?ref_src=twsrc%5Etfw\">December 18, 2018</a></blockquote>\n</div>\n\n\n\n<p>The idea of governance means different things to audiences across cultures. The second aspect of the project that aims to get WordPress a seat at the table seems more feasible and more likely to be well-received by the project&#8217;s leadership. It might make more sense to split up the two objectives into different projects. WordPress&#8217; internal governance and its role in the greater web are very different topics, but the project&#8217;s creators seem to view them as inseparable.</p>\n\n\n\n<p>Matt Mullenweg hasn&#8217;t joined in the Twitter conversation about governance but he did address the topic on a recent <a href=\"https://poststatus.com/matt-mullenweg-on-gutenberg/\">Post Status podcast episode</a>.</p>\n\n\n\n<p>&#8220;When he was talking about open governance, my take was that he was talking about getting WordPress a seat at the table, and discussing these regulation changes and et cetera happening,&#8221; Mullenweg said. &#8220;I think the example last year was that there was this meeting at 10 Downing Street. Who was there? Was WordPress represented?</p>\n\n\n\n<p>&#8220;And he started talking about the Web Foundation, and I began thinking, “Wow, WordPress only represents a third of websites, and not even, really. It’s a third of the top 10 million. Another foundation like the Web Foundation actually might be a better vehicle to try to advocate on the open Web as a whole, versus just the people who happen to be using a single CMS.&#8221;</p>\n\n\n\n<p>When asked more about WordPress&#8217; leadership structure, Mullenweg reviewed the different approaches he has taken with the project. In 2018, the expression of his BDFL-style leadership was manifestly more overt than previous years, which may have influenced or even inspired the creation of the WordPress Governance Project.</p>\n\n\n\n<p>&#8220;There’s been a lot more leaders, but I would actually argue the point that WordPress has always been sort of my vision being set, or even my direct leadership,&#8221; Mullenweg said. &#8220;There was a good four or five years there where the leadership structure, because we’ve experimented with lots of different &#8211; we don’t call it governance &#8211; but essentially leadership structures in WordPress. For a while, we had kind of the … It wasn’t a committee approach, but essentially like the lead developers consensus approach. We did that for a few years.</p>\n\n\n\n<p>&#8220;Even from the beginning it wasn’t just me. It was me and Mike Little, so it’s never been solo. Then we went to where the release lead was the final decider, including over me, so that was probably, I don’t know, 3.9 to 4.7 maybe, that included overruling me as project lead for what was in the release or not, and that was to try to give a little more autonomy and flexibility to release leads. But the big change was a few years ago I said, &#8216;Okay, I’m going to take back over core WordPress development,&#8217; and that was to try to make some of these big changes happen. So right now it is much more of a benevolent dictator model, although both of those words are questionable. But, I don’t see that as the permanent forever structure.&#8221;</p>\n\n\n\n<p>Mullenweg may not be able to sustain this level of involvement in core leadership indefinitely, with all of his other responsibilities at Automattic. He said he is open to WordPress empowering other leaders in the future.</p>\n\n\n\n<p>&#8220;I’m not saying it always has to be me, but what I want is a strong, opinionated, thoughtful leader setting a bold direction, taking experiments and being willing to fail, comfortable with failure, is I think what you need to create great software,&#8221; he said.</p>\n\n\n\n<p>Brian DeConinck, a WordPress developer who has recently been a vocal critic of the project&#8217;s leadership, called for more transparency around the decision-making process in his <a href=\"http://www.briandeconinck.com/initial-thoughts-wordpress-governance/\">initial thoughts on the governance project.</a></p>\n\n\n\n<p>&#8220;Matt is the central figure of the WordPress project,&#8221; DeConinck said. &#8220;He’s been a guiding force since the beginning. Without a doubt, he’s an important and valued member of our community. I don’t imagine governance as a means of usurping him.</p>\n\n\n\n<p>&#8220;But should there be a single human face at the head of a project and a community at this scale? When people are critical of decision-making, having Matt at the center makes it easy to make criticism needlessly personal. This dynamic is hard on Matt and others in the project leadership, and ultimately toxic for the community.&#8221;</p>\n\n\n\n<p>DeConinck said in order for the governance project to be successful he thinks it needs to be international, multicultural, and multilingual, with diverse voices, as well as clear mechanisms for WordPress users to provide feedback. He outlined a detailed list of success criteria that hasn&#8217;t officially been embraced by governance project as it has yet to hold its first meeting.</p>\n\n\n\n<p>DeConinck&#8217;s suggestions are incompatible with the current BDFL-style leadership, as he claims that &#8220;feedback from a community of millions of users can’t adequately be processed and acted upon by a single individual listening and making decisions for the project.&#8221; WordPress has risen to become a dominant force on the web during the past 15 years under this style of leadership. Any meaningful proposal of change to the leadership structure will need to demonstrate how the new model can continue to enable WordPress to make rapid progress and maintain its relevance on the web.</p>\n\n\n\n<h3>WordPress Governance Project Flagged as Unofficial and Removed from WordPress.org</h3>\n\n\n\n<p>Earlier this morning, WordPress Community Team representative Francesca Marano <a href=\"https://make.wordpress.org/community/2019/01/07/wordpress-governance-project-change-of-venue/\">posted a notice</a> on behalf of the governance project&#8217;s leadership to announce that the project has been removed from WordPress.org.</p>\n\n\n\n<p>&#8220;Concerns have been raised about the posting of news about the WordPress Governance Project on make.wordpress.org and use of the <a href=\"https://make.wordpress.org/community/tag/community-team/\">#community-team</a> Slack channel giving the impression the project is sanctioned as an official WordPress project,&#8221; Marano said. &#8220;It has not received such sanctions from WordPress leadership.&#8221;</p>\n\n\n\n<p>&#8220;We went through what we believed were the appropriate channels for launching the project through the Community group (ie speaking to group members, asking for access to the Make blog, coordinating with the team and others to find a meeting time which didn’t collide with others, etc),&#8221; Morten Rand-Hendriksen said. &#8220;We were later informed the project was not sanctioned by WordPress leadership and therefore cannot use the Make blog or Slack.&#8221; He would not comment further on what transpired or the communication his team received.</p>\n\n\n\n<p>For the time being, it looks like the governance project will need to prove its worth independently before being officially adopted by WordPress. Many other community-led efforts and tools have followed this same process before coming under the umbrella of core. </p>\n\n\n\n<p>The project now has its own dedicated website at <a href=\"https://wpgovernance.com/\">wpgovernance.com</a> and a Slack instance at <a href=\"https://join.slack.com/t/twgp/signup?x=x-517030675360-517548723457\">twgp.slack.com</a>. The first meeting was set for January 8 but has been postponed to January, 15, 1600 UTC to allow participants to sign up at the new Slack workspace.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 07 Jan 2019 19:49:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"WPTavern: Beaver Builder Doubles Down on Serving Power Users in Response to Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86569\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://wptavern.com/beaver-builder-doubles-down-on-serving-power-users-in-response-to-gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3074:\"<p>At WordCamp US I had the opportunity to chat with <a href=\"https://www.wpbeaverbuilder.com/\">Beaver Builder</a> co-founder Robby McCullough about how the page builder is navigating the Gutenberg era. The proliferation of blocks for the new editor has made it easy for non-technical WordPress users to add things like pricing tables, maps, tabs, accordions, and other UI elements. Future iterations of Gutenberg will soon tackle layouts. These improvements to core will radically change how page builder products are marketed to WordPress users.</p>\n\n\n\n<p>&#8220;One of the decisions we made in response to the news of Gutenberg early on is that we wanted to double down on our professional power users,&#8221; McCullough said. &#8220;It took us a long time in our growth as a business to figure out who our customers were. We realized there were two distinct camps: one that was like a do-it-yourselfer type, someone who maybe had a small business or a hobby website who wanted to use WordPress but wasn&#8217;t familiar with writing code. The other was more of a freelancer &#8211; maybe a one or two person agency, people who were building lots of websites and had development and frontend skills. We see that as the space where we want to live now. We&#8217;re hoping to continue solving problems and making the experience better for folks with a few more skills in their tool belts.&#8221;</p>\n\n\n\n<p>Following up with McCullough later, he said that applying this new direction to Beaver Builder is already translating into the features they are prioritizing for the plugin.</p>\n\n\n\n<p>&#8220;For example, in our latest major release, we added percent, em, rem, and viewport-based units for things like font sizes, margins, and padding,&#8221; McCullough said. &#8220;Without a basic understanding of CSS, this feature wouldn&#8217;t be too helpful. We also added dozens of pre-built row templates. So, instead of creating single-page designs, our goal was to create a modular system of rows that can be mixed and matched to build out sites. We&#8217;re working to build features that better enable folks who build lots of websites.&#8221;</p>\n\n\n\n<p>In the interview below we discussed the current integration between Gutenberg and Beaver Builder. McCullough said his team is considering bringing blocks into Beaver Builder or bringing Beaver Builder content into Gutenberg; both are possibilities. His team has been waiting to see how quickly the community adopts Gutenberg before making any major decisions.</p>\n\n\n\n<p>&#8220;My hope is that there&#8217;s still going to be a place for page builders, Beaver Builder and everyone in this space, to have a little bit more agility,&#8221; McCullough said. &#8220;We can see Gutenberg kind of be like Instagram in that it&#8217;s going to appeal to a mass audience. We like to live in the Photoshop space where you&#8217;re going to get a lot of fine-tuned controls, solving problems and creating features that are going to help people build websites every day.&#8221;</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Jan 2019 20:20:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"WPTavern: WP Storybook: A Handy Reference for WordPress React UI Components\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86604\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://wptavern.com/wp-storybook-a-handy-reference-for-wordpress-react-ui-components\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1553:\"<p><a href=\"https://lubus.in/\">LUBUS</a>, a web design agency in Mumbai, has published a site called <a href=\"https://wp-storybook.netlify.com/\">WP Storybook</a> that offers an interactive way to explore various WordPress React components. It allows developers to browse and search UI components and see a live preview of the component next to example source code. </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<a href=\"https://cloudup.com/cpA4-xaPukn\"><img src=\"https://i0.wp.com/cldup.com/yCZSRiLkVv.gif?resize=627%2C297&ssl=1\" alt=\"Wp storybook\" width=\"627\" height=\"297\" /></a>\n</div>\n\n\n\n<p>WP Storybook lets you view different states for various UI components and even test them on different viewports. The development team at LUBUS is adding more as they discover them while building projects with Gutenberg using reusable components. Their goal in publishing the project is to help developers work faster by making components easier to discover and reference.</p>\n\n\n\n<p>LUBUS&#8217; roadmap for WP Storybook includes the following:</p>\n\n\n\n<ul><li>Add as many possible components and cases as possible</li><li>Capability to view and copy the example source</li><li>Playground to test out various props and options using knobs addon</li><li>Categorize components into groups for better discoverability</li><li>Recipe stories showcasing composing of various components</li></ul>\n\n\n\n<p>If you want to contribute to WP Storybook or log an issue, the code is open source (MIT license) on <a href=\"https://github.com/lubusIN/wp-storybook\">GitHub</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Jan 2019 23:51:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WPTavern: WordPress.com Launches New “Do Anything” Marketing Campaign\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86590\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wptavern.com/wordpress-com-launches-new-do-anything-marketing-campaign\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4698:\"<img />Hilde Lysiak reports on local news in her community on her WordPress.com-powered <a href=\"https://orangestreetnews.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Orange Street News</a> website\n\n\n\n<p>WordPress.com is kicking off 2019 with a new national marketing campaign that features 14 entrepreneurs, writers, and non-profit organizations who are using the platform to make a big difference for their communities. The campaign is focused around the question: &#8220;What Would You Do If You Could Do Anything?&#8221; </p>\n\n\n\n<p>WordPress.com published its inaugural <a href=\"https://en.blog.wordpress.com/2019/01/03/introducing-the-2019-anything-is-possible-list/\">‘Anything Is Possible’ List</a>, which includes 10 mini-documentaries ranging from 1 minute to 1:44. A few of the stories highlighted include Congolese-American sisters operating a successful hair salon in NYC, a 12-year-old journalist running her own online publication, a blogger who went viral and published her own book, and a non-profit fighting misinformation and extremist narratives. Each is presented more in depth on a new <a href=\"https://wordpress.com/do-anything/\">Do Anything</a> campaign site that was launched today.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Do Anything is WordPress.com&#8217;s first large-scale national brand campaign. It will debut TV, print, and digital advertising spots in The New Yorker and on TV networks, including The History Channel, CNN, and National Geographic. WordPress.com will also be running ads on podcasts, including The Daily and NPR. The new 30-second TV ad was created by <a href=\"http://interestingdevelopment.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Interesting Development</a>, an agency based in New York.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Much like gym memberships, WordPress.com tends to see more action at the beginning of a new year with 20% more sites are created in January than the average, according to Mark Armstrong at Automattic. The timing for the campaign is aimed at tapping into the motivation that millions of users have for starting a new business or blog at this time of year.</p>\n\n\n\n<p>In 2016, Automattic started <a href=\"https://ma.tt/2016/01/marketing-at-automattic/\">hiring for more marketing positions</a> as an answer to Wix, Weebly, Squarespace, Web.com, EIG, and Godaddy, competitors that Matt Mullenweg identified as having spent over $350M in advertising that year. In 2017, the company created <a href=\"https://design.blog/2017/05/18/how-a-detroit-hackathon-turned-into-wordpress-coms-first-ever-tv-spots/\">five commercials</a>, its first ever TV spots, as part of a series called &#8220;Free to be.&#8221; Many found the commercials to be confusing and the <a href=\"https://wptavern.com/wordpress-coms-tv-commercials-are-confusing\">messaging wasn&#8217;t clear</a>.</p>\n\n\n\n<p>By contrast, the 2019 &#8220;Do Anything&#8221; campaign is much better at demonstrating what people can do with WordPress.  &#8220;As we share new work with the world we realize that some things will hit and some things will miss,&#8221; Automattic’s SVP of Brand, Michelle Broderick said. The company has continued to evolve its marketing based on feedback. This particular campaign was directly inspired by the people who are making things happen with WordPress.</p>\n\n\n\n<p>&#8220;We were inspired by the people who use WordPress to imagine a better world,&#8221; Broderick said. &#8220;We saw everyone from bloggers to business owners to scientists to politicians using WordPress to share their story.&#8221;<br /></p>\n\n\n\n<p>The new TV spot is an improvement over previous campaigns in terms of communicating a clear message, but it doesn&#8217;t carry the same authenticity as the mini-documentaries. Each one is relatable and inspiring in telling the stories of people who have already answered the question &#8220;What would you do if you could do anything?&#8221; Many of those who were featured have carried on with their dreams through perseverance, despite tragedy and struggle along the way. The documentaries are more poignant than the TV spot, which has the added constraint of having to capture the viewer&#8217;s attention with a shorter amount of time. </p>\n\n\n\n<p>The &#8220;Do Anything&#8221; campaign as a whole is a good representation of the power of WordPress and should also help boost name recognition for the software in general. Broderick said Automattic is expecting tens of millions of impressions across TV, print, digital, and podcasts. The campaign is aimed at the American market but Armstrong said they hope to branch out into international markets in the future.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Jan 2019 20:05:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"HeroPress: YOU Make The Difference\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2672\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"https://heropress.com/essays/you-make-the-difference/#utm_source=rss&utm_medium=rss&utm_campaign=you-make-the-difference\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10124:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2020/01/010219-min-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: WordPress still attracts the same types of people. Those who are brave, who are kind, who are looking to the future.\" /><blockquote><p>“A place is only as good as the people you know in it. It&#8217;s the people that make the place.”</p>\n<p>― Pittacus Lore, I Am Number Four</p></blockquote>\n<p>This quote is a large part of the space WordPress holds within me.</p>\n<p>Coming from a career in Civil Engineering and a background of Industrial Technology WordPress as a software drew me as a tool. It was a means to an end. I wasn’t blogging, I wasn’t looking to create an online voice, I was looking to build something and I needed a tool.</p>\n<p>I was good at learning software, had used over a dozen very complicated systems by that point in my life, so I found WordPress and started learning it too.</p>\n<p>A very melodramatic discovery story of WordPress for a HeroPress piece, I know.</p>\n<p>The truth is I probably wouldn’t have stuck around were it not for the people. The story has evolved for me over the years but that’s the beginning. The beginnings are usually far less romantic than the endings in any story.</p>\n<p>So why was I looking for a tool? Well, that’s a bit better of a story.</p>\n<h3>Looking For A Tool</h3>\n<p>I’ll prep you with the fact that I was driven, opinionated, blunt, and defensive. I had spent my college years and first years in my chosen career in a male-dominated industry. I learned how to navigate and thrive and took a job at a very large Engineering firm. About a year in I was granted a fantastic opportunity to work on a small startup team that was doing amazing work in 3D scanning.</p>\n<p>Being a startup team demanded that we produce more and more work to determine the viability of the investment the firm was making in my boss’s plans. As we worked on landing deals that required overnight travel and training that required days away it brought to the surface a reality that wasn’t so good for me. As the only woman on the team, I doubled the travel budget. They needed two of everything for me since I couldn’t bunk up with my male coworkers.</p>\n<p>The next months were a perfect storm of events. I made an opinionated comment to a division supervisor that was above my pay grade which enhanced my visibility as a problem. Then I got pregnant.</p>\n<blockquote><p>You can’t walk around 3D scanning a PVC manufacturing facility while with child. They also don’t make maternity coveralls.</p></blockquote>\n<p>I was officially dead weight. I lost the pregnancy and became depressed, anxious. It was easy for them to let me go then, I had stopped being productive. I found out a couple weeks after losing my job I was pregnant again. Talk about a whirlwind.</p>\n<p>My husband was in the process of changing careers from Retail to Healthcare and maternity leave is not something you like to bring up on an interview, so I decided to find something to do from home. I started a local family newsletter and decided to create an online marketplace for moms who craft out of their homes, like a local Etsy. This is where my search for a tool began.</p>\n<h3>Starting Again</h3>\n<p>A few months later, with no WordPress experience other than what I managed to rake together while I was learning and building, I got a job at WPMUDEV doing product support. I needed the extra cash so my other projects took a backseat and I was soon completely engulfed. Through that job, I came to learn about the ecosystem that was WordPress. I had no idea that there was a place that existed outside of the corporate universe that could exist without sexist politics, hierarchy, and status quo. It was mind-blowing.</p>\n<p>I was so hungry for people to interact with after being in such a team-oriented environment for so long. I loved working with others and I felt very alone until I found this great group of people. And oh what joy when I found it! I was a new mom at home with a baby trying to learn how to handle that new space in my life. My husband had completed a successful career change and we had moved. I had another baby. I met my friend Mason and we started a business together. I lost another pregnancy.</p>\n<blockquote><p>In the space of two short years, my life had completely turned upside down and landed me in the place that would help me survive it all.</p></blockquote>\n<p>You see, without the people, I wouldn’t have made it. I wouldn’t have been able to navigate the overwhelming waters that surrounded me outside of my day to day work. The people who befriended me, who were kind to me, who made jokes with me, who valued my contribution and intelligence without ever having set eyes on me, those were the people who kept me sane. They let me see I didn’t need to be defensive, that I didn’t have to be sorry about being opinionated, that I was different and that I should lean into that.</p>\n<p>When I left product support to work with Mason at, what was formerly called, WP Valet it was yet another major shift in my life. The product space was so different than the agency space and I quickly adapted to the new pace. There was a rush of excitement while learning new things and applying skills that had laid dormant for some time. My father was a Navy man and an entrepreneur and shaped so much of how I applied myself, now I was in a place to push myself even further and define my own path. I was spoiled by my first interactions at WP Valet with developers like Zé Fontainhas and Mario Peshev. The whole thing was thrilling!</p>\n<h3>And Then I Went To WordCamp</h3>\n<p>My first WordCamp was WordCamp Miami 2013. It was probably the first time I’d traveled alone in some time and I was meeting my work family for the first time. On top of that, I was in MIAMI, so it was bound to be a great trip. I got to meet David Bisset and Lisa Sabin Wilson that year, and so many other wonderful people. I was on cloud 9, each and every personality was inspiring to me, all so different than what my former colleagues and field specialists were like. To top it off I walked into my first talk at a WordCamp, Pippin Wilson was talking about how developers should share code. I was beside myself, sharing your code and supporting each other? Not cutthroat over projects and billable hours?! I was swooning over the idea of ‘community’ and what I had stumbled into.</p>\n<blockquote><p>Needless to say, I left 100% hooked on my path. WordPress was my life from that time on.</p></blockquote>\n<p>We as people have long-tailed stories that weave and zigzag and turn back on themselves. We are products of ALL the things going on in our lives at any given moment. Without the personal struggles and the professional push, I would not have been able to value the community as much as I do. The overlapping of personal and professional trials and successes are what gives depth to our experiences. Their overlapping is what colors the story of our lives.</p>\n<p>Fast forward a few years through a cross-state move, speaking selections, the birth of another child, a company expansion, another pregnancy loss, a company rebranding, a company restructuring, a return to school for Yoga training, and all the other things life throws in your path with family and work and here I sit typing my story at my counter while my middle child hums ‘Mamma Mia’ next to me. I am forever grateful for the life that I’ve been able to live through a whole new career in WordPress.</p>\n<h3>You Make The Difference</h3>\n<p>I am grateful for every soul I have met. I had the privilege to work with and become friendly with some of the nicest and most genuine people I will ever meet online and face to face. The ecosystem of WP has changed a lot over the years as most ecosystems do, but it still attracts the same types of people. Those who are brave, who are kind, who are looking to the future. My world is so much bigger because of all you. Thank You  <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f642.png\" alt=\"🙂\" class=\"wp-smiley\" /></p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: YOU Make The Difference\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=YOU%20Make%20The%20Difference&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fyou-make-the-difference%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: YOU Make The Difference\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fyou-make-the-difference%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fyou-make-the-difference%2F&title=YOU+Make+The+Difference\" rel=\"nofollow\" target=\"_blank\" title=\"Share: YOU Make The Difference\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/you-make-the-difference/&media=https://heropress.com/wp-content/uploads/2020/01/010219-min-150x150.jpg&description=YOU Make The Difference\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: YOU Make The Difference\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/you-make-the-difference/\" title=\"YOU Make The Difference\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/you-make-the-difference/\">YOU Make The Difference</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Jan 2019 20:15:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Kimberly Lipari\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"Matt: Democratize Publishing, Revisited\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=48797\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://ma.tt/2018/12/democratize-publishing-revisited/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1674:\"<p>During my <a href=\"https://www.youtube.com/watch?v=v2aNNlC8TUE\">State of the Word Q&amp;A</a> I received some blogging homework from <a href=\"https://torumiki.com/\">Toru Miki</a>, a WordPress contributor based in Tokyo. He asked me to revisit the WordPress mission, “Democratize Publishing,” and reflect on what that mission means to me today. So here you go, Toru: <br /></p>\n\n\n\n<p>For many years, my definition of “Democratize Publishing” has been simply to help make the web a more open place. That foundation begins with the software itself, as outlined by the <a href=\"https://ma.tt/2014/01/four-freedoms/\">Four Freedoms</a>: <br /></p>\n\n\n\n<p>0. The freedom to run the program, for any purpose.</p>\n\n\n\n<p>1. The freedom to study how the program works, and change it so it does your computing as you wish.</p>\n\n\n\n<p>2. The freedom to redistribute copies so you can help your neighbor.</p>\n\n\n\n<p>3. The freedom to distribute copies of your modified versions, giving the community a chance to benefit from your changes.<br /></p>\n\n\n\n<p>In 2018, the mission of “Democratize Publishing” to me means that people of all backgrounds, interests, and abilities should be able to access Free-as-in-speech software that empowers them to express themselves on the open web and to own their content.<br /></p>\n\n\n\n<p>But as Toru noted in the original question, “Democratize Publishing” has come to mean many things to many people in the WordPress community. That’s one reason I like it. The WordPress mission is not just for one person to define. <br /></p>\n\n\n\n<p>So I’d like to ask everyone: What does “Democratize Publishing” mean to you? &nbsp;<br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Dec 2018 00:06:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Matt: Sponcon Posts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=48788\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://ma.tt/2018/12/sponcon-posts/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:422:\"<p>I found <a href=\"https://www.theatlantic.com/technology/archive/2018/12/influencers-are-faking-brand-deals/578401/\">this post by Taylor Lorenz</a> describing how aspiring influencers are posting fake, unpaid sponsored content to raise their status or hoping to nab a real sponsorship <a href=\"https://www.theatlantic.com/technology/archive/2018/12/influencers-are-faking-brand-deals/578401/\">is totally bananas</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 24 Dec 2018 16:08:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WPTavern: WordPress Designers Explore Ideas for Moving Navigation to a Block Interface\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86518\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://wptavern.com/wordpress-designers-explore-ideas-for-moving-navigation-to-a-block-interface\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5176:\"<p>Creating a block for navigation menus is one of the <a href=\"https://make.wordpress.org/core/2018/12/08/9-priorities-for-2019/\">nine projects</a> Matt Mullenweg identified for 2019 that will make a big impact for WordPress users. It&#8217;s also one of the most challenging from a UI perspective. At WordCamp US&#8217; contributor day, the design team <a href=\"https://make.wordpress.org/design/2018/12/18/exploring-a-nav-block-at-wordcamp-us/\">explored ideas for what a navigation block might look like in the new editor</a>.</p>\n\n\n\n<img />\n\n\n\n<p>The team&#8217;s designs for a navigation block are still in the rough sketches stage, but it&#8217;s interesting to see different approaches as the project develops.</p>\n\n\n\n<p>&#8220;If the Nav block could live in a container block (columns perhaps), then the settings for it could be tweaked in the sidebar,&#8221; XWP designer Joshua Wold said. &#8220;A further problem comes up when you try to figure out how much of the design of the nav should be controlled by the theme vs the Gutenberg editor.&#8221;</p>\n\n\n\n<p>This is an important question  that will need to be answered in the near future &#8211; not only for navigation but also more broadly for the future of the role of themes in WordPress. We will be exploring this in more depth in future posts.</p>\n\n\n\n<p>Designer Mel Choyce and Riad Benguella (one of the leads for Gutenberg phase 2), are currently soliciting ideas from the wider WordPress community about how the project should tackle the upcoming customization focus.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">You care about WordPress and you don\'t have the time to contribute day to day, I\'d love to hear your thoughts to get some inspiration about Phase 2 of Gutenberg, Site building, Customization&#8230; A tweet, a blog post, whatever works best for you. <a href=\"https://twitter.com/hashtag/gutenideas?src=hash&ref_src=twsrc%5Etfw\">#gutenideas</a> <a href=\"https://t.co/Y7tod5DoB2\">https://t.co/Y7tod5DoB2</a></p>&mdash; Riad Benguella (@riadbenguella) <a href=\"https://twitter.com/riadbenguella/status/1075458929579167745?ref_src=twsrc%5Etfw\">December 19, 2018</a></blockquote>\n</div>\n\n\n\n<p>One of the chief complaints about the first phase of the Gutenberg project was the <a href=\"https://make.wordpress.org/core/2018/10/05/gutenberg-phase-2-leads/#comment-34092\">lack of public discussion</a> about the goals and the process of creating the editor. The Gutenberg team&#8217;s willingness to collate ideas across multiple mediums demonstrates a strong effort to seek out more diverse perspectives for phase 2. Ideas have already started rolling in.  </p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Riffing on something <a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a> said at <a href=\"https://twitter.com/hashtag/SOTW?src=hash&ref_src=twsrc%5Etfw\">#SOTW</a> <a href=\"https://twitter.com/hashtag/WCUS?src=hash&ref_src=twsrc%5Etfw\">#WCUS</a>: To map out the future of themes / <a href=\"https://twitter.com/hashtag/Gutenberg?src=hash&ref_src=twsrc%5Etfw\">#Gutenberg</a> 2.0 / <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> Next, maybe ship a Block Zen Garden type thing and asking designers / devs to create solutions, then work backwards to find a UI / UX to make that possible.</p>&mdash; Morten i Norge <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f1f8-1f1ef.png\" alt=\"🇸🇯\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/11/72x72/1f328.png\" alt=\"🌨\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/11/72x72/1f976.png\" alt=\"🥶\" class=\"wp-smiley\" /> (@mor10) <a href=\"https://twitter.com/mor10/status/1073664020471660544?ref_src=twsrc%5Etfw\">December 14, 2018</a></blockquote>\n</div>\n\n\n\n<p>&#8220;Rather than starting with the back-end UI, we can start with the front-end result and build a UI to make the building of that front-end possible without messing up the accessibility and resilience of the root HTML document,&#8221; Morten Rand-Hendricksen said. &#8220;At the root of this would be CSS Grid as the main layout module to allow drag-and-drop style block layouts without making changes to the HTML source order.&#8221;</p>\n\n\n\n<p>Many of the ideas that are coming in so far relate more broadly to site customization. These include <a href=\"http://theme.tips/blog/2018/12/21/random-thoughts-about-gutenizer-phase-2/\">questions about what role the Customizer will play</a> and requests for features like creating <a href=\"https://twitter.com/alihs707/status/1075640228470243329\">custom widths on the fly</a> and the <a href=\"https://twitter.com/alihs707/status/1075640228470243329\">ability to drag content across columns.</a> If you have ideas about how navigation can be implemented in a block, take some time before the end of the year and drop your comments on the <a href=\"https://make.wordpress.org/design/2018/12/18/exploring-a-nav-block-at-wordcamp-us/\">make/design post</a> or write your own post and leave a link for others to share feedback.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Dec 2018 23:52:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Matt: Seneca on Friendship\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=48764\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://ma.tt/2018/12/seneca-on-friendship/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:705:\"<blockquote class=\"wp-block-quote\"><p>But nothing delights the mind so much as fond and loyal friendship. What a blessing it is to have hearts that are ready and willing to receive all your secrets in safety, with whom you are less afraid to share knowledge of something than keep it to yourself, whose conversation soothes your distress, whose advice helps you make up your mind, whose cheerfulness dissolves your sorrow, whose very appearance cheers you up!</p></blockquote>\n\n\n\n<p>You can read <em>On Tranquility of Mind</em> <a href=\"https://en.wikisource.org/wiki/Of_Peace_of_Mind\">online for free here</a> or I enjoyed <a href=\"https://www.amazon.com/dp/B00BCU07LO\">this edition from Penguin</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Dec 2018 20:55:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"WPTavern: 9 Year Old Shares his Journey Learning React\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86488\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://wptavern.com/9-year-old-shares-her-journey-learning-react\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:819:\"<p>If learning React is among your New Year&#8217;s goals, here&#8217;s some inspiration from nine-year-old Revel Carlberg West. The video below is a recording of his presentation at the <a href=\"https://www.meetup.com/ReactNYC/\">React NYC</a> meetup. West describes how he learned basic HTML, CSS, and JavaScript and then moved on to learn React using the <a href=\"https://codesandbox.io/\">CodeSandbox</a> online code editor. He also gives a live demo of <a href=\"https://reactjs.org/docs/hooks-intro.html\">React Hooks</a> in action, a new feature that Sophie Alpert and Dan Abramov introduced at React Conf 2018. The code for West&#8217;s traffic light demo is <a href=\"https://codesandbox.io/s/xlw615w7ow\">available on CodeSandbox</a> if you want to follow along.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Dec 2018 19:59:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WPTavern: WordPress 5.0.2 Released with Performance Gains of 330% for Block-Heavy Posts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86510\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"https://wptavern.com/wordpress-5-0-2-released-with-performance-gains-of-330-for-block-heavy-posts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1544:\"<p><a href=\"https://wordpress.org/news/2018/12/wordpress-5-0-2-maintenance-release/\">WordPress 5.0.2</a>, the of first of two rapid releases following 5.0, is now available. Sites with automatic background updates enabled should already be on the latest version. </p>\n\n\n\n<p>This release addresses performance issues, one of the chief complaints for users who have adopted the block editor. It brings 45 improvements to the editor, with 14 of those related to performance and 31 bug fixes. According to Gary Pendergast, &#8220;the cumulated performance gains make it 330% faster for a post with 200 blocks.&#8221;</p>\n\n\n\n<p>This maintenance release also fixes 17 editor-related bugs in the default WordPress themes as well as internationalization issues related to script loading.</p>\n\n\n\n<p>Overall, 5.0.2 updates have gone smoothly, with the exception of a few conflicts with a handful of plugins. Most notably, WooCommerce store administrators found that the <a href=\"https://github.com/woocommerce/woocommerce/issues/22271\">Orders tab had disappeared</a> after their sites updated. WooCommerce has fixed the issue in a quick patch release (version 3.5.3) that was pushed out this morning.</p>\n\n\n\n<p>NextGEN Gallery creator Erick Danzer also reported <a href=\"https://wordpress.slack.com/archives/C02RQBWTW/p1545334477273500\">a minor issue with the Classic block</a> that prevents users from editing galleries via the placeholder the plugin had added. A fix for that issue should be forthcoming in an update to the plugin.<br /></p>\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Dec 2018 21:14:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"WPTavern: Gutenberg-Inspired Jenga Game “Gutenblox” Now Available for Sale\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86500\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wptavern.com/gutenberg-inspired-jenga-game-gutenblox-now-available-for-sale\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1691:\"<div class=\"wp-block-image\"><img />photo credit: <a href=\"https://xwp.co/\">XWP</a></div>\n\n\n\n<p>XWP&#8217;s Gutenberg-inspired Jenga sets were arguably the most innovative swag at WordCamp US this year, but there weren&#8217;t enough to go around. Gutenblox, fondly dubbed &#8220;the Other Block Building Interface,&#8221; is now available on its own website where anyone can buy a set.</p>\n\n\n\n<p>The <a href=\"https://gutenblox.fun\">Gutenblox.fun</a> store is running on <a href=\"https://wordpress.org/plugins/bigcommerce/\">BigCommerce</a> with the new <a href=\"https://wordpress.org/themes/twentynineteen/\">Twenty Nineteen</a> theme active. It includes the rules of the game, cleverly adapted to the concept of Gutenblox:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Blocks treat Paragraphs, Headings, Media, etc. all as components that strung together make up the tower. Replacing the traditional concept of board games, Gutenblox is designed with progressive enhancement, meaning as new blocks are added to the top of the tower, they are backward compatible with all legacy content (although the legacy structure may become unstable as new blocks are added on).</p><p>We hope to offer rich value to players who will start with the foundation of a stable, accessible, and secure architecture, and then use a simple drag-and-drop method for modification.</p></blockquote>\n\n\n\n<p>If you&#8217;re looking for a last-minute holiday gift or birthday gift for a friend who loves WordPress, Gutenblox is fun option. It also helps support a good cause. XWP is donating all profits from the sales of the game to the <a href=\"https://wordpressfoundation.org/\">WordPress Foundation</a>. </p>\n\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Dec 2018 17:02:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WPTavern: Introduction to the WPGraphQL Project with Jason Bahl and Ryan Kanner\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86483\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wptavern.com/introduction-to-the-wpgraphql-project-with-jason-bahl-and-ryan-kanner\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1187:\"<p>At WordCamp US 2018 I had the chance to sit down with <a href=\"https://twitter.com/jasonbahl\">Jason Bahl</a> and <a href=\"https://twitter.com/CodeProKid\">Ryan Kanner</a>, both engineers at Digital First Media in Denver, Colorado, and contributors to the <a href=\"https://www.wpgraphql.com/\">WPGraphQL</a> project. WPGraphQL is an open source plugin that provides an extendable GraphQL schema and API for any WordPress site.</p>\n\n\n\n<p>Bahl, who created and maintains the project, also gave a lightning talk at WCUS on <a href=\"https://2018.us.wordcamp.org/session/gutenberg-graphql-and-building-blocks/\">using GraphQL with Gutenberg</a> to improve the performance of custom blocks, as well as the developer experience of building them.</p>\n\n\n\n<p>In our interview, Bahl and Kanner offer a general overview of the differences between GraphQL and REST. They explained how Digital First Media improved performance for the company&#8217;s publications by switching from REST to GraphQL. We also discussed how Gutenberg is a great use case for GraphQL and whether the project is something that could someday be included in WordPress core.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 Dec 2018 04:00:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"Dev Blog: WordPress 5.0.2 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6509\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2018/12/wordpress-5-0-2-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4589:\"<p>WordPress 5.0.2 is now available!</p>\n\n\n\n<p>5.0.2 is a maintenance release that addresses 73 bugs. The primary focus of this release was performance improvements in the block editor: the cumulated performance gains make it 330% faster for a post with 200 blocks.</p>\n\n\n\n<p>Here are a few of the additional highlights:</p>\n\n\n\n<ul><li>45 total Block Editor improvements are included (14 performance enhancements &amp; 31 bug fixes).</li><li><a href=\"https://core.trac.wordpress.org/query?component=Bundled+Theme&milestone=5.0.2&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">17 Block Editor related bugs</a> have been fixed across all of the bundled themes.</li><li>Some <a href=\"https://core.trac.wordpress.org/query?component=I18N&milestone=5.0.2&col=id&col=summary&col=status&col=owner&col=type&col=priority&col=milestone&order=priority\">internationalization (i18n) issues</a> related to script loading have also been fixed.</li></ul>\n\n\n\n<p>For a full list of changes, please consult the <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.0.2&group=component\">list of tickets on Trac</a> or the <a href=\"https://core.trac.wordpress.org/log/branches/5.0?action=stop_on_copy&mode=stop_on_copy&rev=44339&stop_rev=44183&limit=100&sfp_email=&sfph_mail=\">changelog</a>.</p>\n\n\n\n<p>You can <a href=\"https://wordpress.org/download/\">download WordPress 5.0.2</a> or visit Dashboard → Updates and click <em>Update Now</em>. Sites that support automatic background updates have already started to update automatically.</p>\n\n\n\n<p>Thank you to everyone who contributed to WordPress 5.0.2:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/babaevan/\">Alexander Babaev</a>, <a href=\"https://profiles.wordpress.org/akirk/\">Alex Kirk</a>, <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/atimmer/\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/davidbinda/\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/jdtrower/\">David Trower</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/edpittol/\">Eduardo Pittol</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/greg-raven/\">Greg Raven</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">gziolo</a>, <a href=\"https://profiles.wordpress.org/herregroen/\">herregroen</a>, <a href=\"https://profiles.wordpress.org/icaleb/\">iCaleb</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/khleomix/\">khleomix</a>, <a href=\"https://profiles.wordpress.org/kjellr/\">kjellr</a>, <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeff&nbsp;Paul</a>, <a href=\"https://profiles.wordpress.org/mihaivalentin/\">mihaivalentin</a>, <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/more/\"></a><a href=\"https://profiles.wordpress.org/mmaumio/\">Muntasir Mahmud</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pratikthink/\">Pratik K. Yadav</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, <a href=\"https://profiles.wordpress.org/strategio/\">strategio</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/torontodigits/\">TorontoDigits</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/vaishalipanchal/\">Vaishali Panchal</a>, <a href=\"https://profiles.wordpress.org/volodymyrkolesnykov/\">volodymyrkolesnykov</a>, <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, <a href=\"https://profiles.wordpress.org/ze3kr/\">ze3kr</a>, and <a href=\"https://profiles.wordpress.org/mypacecreator/\">のむらけい</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 19 Dec 2018 23:47:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Gary Pendergast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"WPTavern: Happy Developers, Happy Ecosystem: The Intangible Impact of WordPress’ Minimum PHP Version Bump\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86464\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"https://wptavern.com/happy-developers-happy-ecosystem-the-intangible-impact-of-wordpress-minimum-php-version-bump\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6401:\"<div class=\"wp-block-image\">\n<img />\n</div>\n<p>The following is a guest post by <a href=\"https://twitter.com/ChrisVanPatten\">Chris Van Patten</a>, founder of <a href=\"https://tomodomo.co\">Tomodomo</a>, a digital agency for magazine publishers. </p>\n<hr class=\"wp-block-separator\" />\n<p>For years, WordPress has been ever-so-slightly behind the times on PHP version support&#8230;to put it kindly.</p>\n<p>However, WordPress&#8217; legendary support for PHP versions back to 5.2 — versions long unsupported by the PHP project itself — wasn&#8217;t born out of a &#8220;we hate developers&#8221; strategy (although you&#8217;d be forgiven for thinking so given the reaction that policy often gets from developers). Instead, it was a genuinely noble and pragmatic effort to make WordPress, and thus publishing on the web, as widely available as possible.</p>\n<p>Despite the reaction from many developers (and security-minded sysadmins), that strategy worked: WordPress <a href=\"https://w3techs.com/technologies/overview/content_management/all\" rel=\"noopener\" target=\"_blank\">powers over 30% of the web</a>, and a <a href=\"https://wordpress.org/about/stats/\" rel=\"noopener\" target=\"_blank\">significant chunk of those installations are on unsupported PHP versions</a>. For those users, it&#8217;s not that they don&#8217;t care that they are on an unsupported version of PHP; they just don&#8217;t know, or don&#8217;t know how to solve the problem.</p>\n<p>But the winds of progress are blowing, and in 2019 WordPress is planning to make a change. Assuming everything goes according to plan, PHP 5.6 will become the minimum supported version in the first half of the year, and the minimum version will be bumped again to PHP 7 in the second half of 2019.</p>\n<p>There are obvious benefits here from a security perspective. The oldest versions of PHP supported by WordPress today stopped receiving official security updates ages ago (PHP 5.2 hit EOL, or &#8220;end-of-life,&#8221; nearly 8 years ago). The speed improvements will be tremendous as well, particularly in PHP 7. Speaking from my own experience, I have several sites that once needed aggressive caching to prevent server overload. Since PHP 7, they run faster than ever, without caching of any kind.</p>\n<p>Speed and security are the two most-cited reasons (and the most measurable reasons) for bumping the minimum version, but there are also other less tangible benefits that will filter well beyond WordPress core development.</p>\n<h3>Simplified support</h3>\n<p>While plugin developers have never been obligated to support all the versions of PHP that WordPress core does, many still chose to do so. That&#8217;s understandable: it could be tough to explain to a user why they can install WordPress in a certain development environment but couldn&#8217;t install a certain plugin.</p>\n<p>For plugins that tried to match core&#8217;s backward compatibility support, that means testing and supporting up to nine versions of PHP: 5.2 through 5.6, and 7.0 through 7.3. (There was no PHP 6. I won&#8217;t bother explaining the <a href=\"https://ma.ttias.be/php6-missing-version-number/\" rel=\"noopener\" target=\"_blank\">boring reasons why</a>.)</p>\n<p>By pushing to 5.6, and eventually some version of PHP 7+, that cuts the number of versions that developers will feel compelled to support in half. In some way, Core will likely continue to support these old versions (through security backports to old versions of WordPress, for instance) but plugin developers can be assured that they don&#8217;t need to — and don&#8217;t need to feel any semblance of guilt about it either.</p>\n<h3>Happier developers</h3>\n<p>Even developers who are excited about the WordPress platform as a whole are likely to admit that it&#8217;s maybe not the most exciting code-base in the world. Over the past few years, I&#8217;ve seen a number of examples of developers who once limited themselves to WordPress now stretching into other frameworks and languages: Laravel, JavaScript, and Go are all popular new homes for WordPress expats.</p>\n<p>Bumping the minimum version won&#8217;t change that apathy or exodus overnight, but it will give developers something to feel excited about. Modern PHP versions (especially PHP 7) offer genuinely cool new language features that make it easy to write performant, well-designed, and interesting code. I would even argue that it makes it fun. Modern PHP contains plenty of <a href=\"https://en.wikipedia.org/wiki/Syntactic_sugar\" rel=\"noopener\" target=\"_blank\">syntactic sugar</a>, and while you shouldn&#8217;t base your diet on sugar it certainly makes for a nice treat.</p>\n<p>Again, it is unlikely that core will start adopting these new language features on day one. The real benefit is that developers will feel empowered and secure in their decisions to start using these new capabilities, and will start to build plugins and themes that can borrow ideas from best practices in the broader PHP community.</p>\n<h3>Celebrating the intangible</h3>\n<p>While the measurable justifications for changing the minimum PHP version are certainly compelling, I think it&#8217;s also important to acknowledge these intangibles and indeed celebrate them. Bumping these versions will create a ripple effect across the ecosystem that will make developers more comfortable with writing modern code. It will reduce support and QA loads for companies that no longer need to support 9 different versions of PHP. It will make WordPress core a more attractive place to contribute.</p>\n<p>Gutenberg, and all the modern tooling and architecture it brought, has already reinvigorated developers across the ecosystem and brought a huge number of new core contributors (<a href=\"https://wptavern.com/contributing-to-gutenberg-a-new-contributors-experience\" rel=\"noopener\" target=\"_blank\">myself among them</a>). Embracing modern PHP is another step forward, and with other changes on the horizon (such as a <a href=\"https://make.wordpress.org/core/2018/12/09/on-wordpress-git/\" rel=\"noopener\" target=\"_blank\">move from SVN to Git</a>, coding standards changes, and projects like <a href=\"https://www.wptide.org/\" rel=\"noopener\" target=\"_blank\">Tide</a> which embrace new languages and architectures) I hope that 2019 will be the year WordPress delivers not only a best-in-class user experience, but a best-in-class developer experience too.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 19 Dec 2018 17:57:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Chris Van Patten\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WPTavern: Gutenberg for Writers: How to Configure the Editor for Fewer Distractions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86427\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wptavern.com/gutenberg-for-writers-how-to-configure-the-editor-for-fewer-distractions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4740:\"<img />photo credit: <a href=\"https://stocksnap.io/photo/8Y0EDX4VP9\">Green Chameleon</a>\n\n\n\n<p>For a long time I could not compose posts with the Gutenberg editor. I tested each release of the plugin throughout its journey into WordPress 5.0, but found it too distracting for my basic needs. It seemed better suited for building a brochure website, not for someone who uses WordPress primarily for writing. </p>\n\n\n\n<p>This is the first thing you see on a vanilla install of WordPress when you go to the &#8220;Add New&#8221; post page:</p>\n\n\n\n<div class=\"wp-block-image\"><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/09/Screen-Shot-2018-12-17-at-10.14.35-AM.png?ssl=1\"><img /></a></div>\n\n\n\n<p>Although it may not be immediately evident, the new editor actually has some built-in controls for improving the writing experience. They are tucked away behind the vertical ellipsis menu at the top of the screen. Here&#8217;s how to configure Gutenberg for writing:</p>\n\n\n\n<h3>Step 1: Hide the Settings Sidebar</h3>\n\n\n\n<p>The first step towards a more distraction-free writing experience is to hide the settings. Click the X at the top right of the screen.  If you&#8217;re trying to stay in the flow of writing, it&#8217;s not necessary to keep the block and document settings in view at all times. You can always toggle them on later when you&#8217;re finished getting your thoughts onto the screen.</p>\n\n\n\n<h3>Step 2: Turn on &#8220;Fullscreen Mode&#8221;</h3>\n\n\n\n<p>Many new and experienced WordPress users are not aware of Gutenberg&#8217;s &#8220;Fullscreen mode&#8221; that places the writing area in the center of the page and hides WordPress&#8217; admin menu sidebar.  This setting is a must for keeping distractions at bay. You can find it at the top right corner in the vertical ellipsis menu:</p>\n\n\n\n<img />\n\n\n\n<p>Once Fullscreen Mode is enabled, the writing area is greatly improved, with distractions removed from both sides of the content area. </p>\n\n\n\n<img />\n\n\n\n<h3>Step 3: Fix the Toolbar to the Top (optional)</h3>\n\n\n\n<p>The block toolbar popping in and out of view was the bane of my Gutenberg experience until they developed the &#8220;Top Toolbar&#8221; setting. By default, the block-level toolbar obscures part of the content above it (as seen in the image below) and an obtrusive blue outline follows your mouse as you move over the paragraphs you have already written.</p>\n\n\n\n<img />\n\n\n\n<p>The psychological affect of all these boxes popping in and out of view may be more taxing for some writers, so this step is optional. The &#8220;Top Toolbar&#8221; setting to hide the block-level toolbar, as well as the blue block outlines, is also inside the vertical ellipsis menu at the top. The best way to see the difference in the experience is to experiment with turning it on and off.</p>\n\n\n\n<p>Spotlight mode takes it one step further and greys out all the content except the current block, allowing writers to focus on one block at a time. When it is enabled, the blocks that are not being edited will partially fade away and no block outlines will be visible. </p>\n\n\n\n<img />Spotlight mode\n\n\n\n<p>Gutenberg still has a way to go before it can provide a truly distraction-free editing experience. None of the modes highlighted above will hide the metaboxes at the bottom or the menu bar at the top. They do, however, allow you to compose in an area without the block-level toolbar and sidebars getting in the way.</p>\n\n\n\n<p>My thoughts don&#8217;t always come out in full sentences and paragraphs. Sometimes they are scattered throughout a document in half sentences, single words, quotes, and fragments of quotes that I&#8217;m not certain I will use. How do I reconcile this with Gutenberg? Sometimes the Classic Block is a good option for a first draft that looks more like a pile of messy notes than a document of well-formed thoughts. Here&#8217;s what that looks like if you have never used it:</p>\n\n\n\n<img />Classic Block\n\n\n\n<p>Even with these settings available, some writers may still prefer to use a dedicated writing app instead of the WordPress editor. Fortunately, Gutenberg has very good support for copying and pasting from other applications.</p>\n\n\n\n<p>Top Toolbar, Spotlight, and Fullscreen modes are not the easiest features to discover but they can make a significant impact on your experience writing in the new editor. WordPress core may never provide a truly distraction-free writing experience, but that&#8217;s where the beauty of the plugin system comes into play. It gives developers the opportunity to create new and interesting approaches towards a better default writing experience. I hope to see some of those popping up in the directory as more users adopt Gutenberg.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Dec 2018 03:17:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"WPTavern: WordPress 5.0.2 to Bring Major Performance Improvements, Scheduled for December 19\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86358\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://wptavern.com/wordpress-5-0-2-to-bring-major-performance-improvements-scheduled-for-december-19\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3081:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2018/12/stopwatch.jpg?ssl=1\"><img /></a>Processed with VSCOcam with c1 preset</p>\n<p><a href=\"https://wordpress.org/news/2018/12/wordpress-5-0-1-security-release/\" rel=\"noopener\" target=\"_blank\">WordPress 5.0.1</a> was released yesterday as a security release with fixes for seven vulnerabilities that were privately disclosed. It includes a few <a href=\"https://make.wordpress.org/core/2018/12/13/backwards-compatibility-breaks-in-5-0-1/\" rel=\"noopener\" target=\"_blank\">breaks in backwards compatibility</a> that plugin developers will want to review.</p>\n<p>WordPress 5.0.2 will be the first planned followup release to 5.0 and is now scheduled to be released December 19, 2018. Gary Pendergast posted a <a href=\"https://make.wordpress.org/core/2018/12/13/dev-chat-summary-december-12th/\" rel=\"noopener\" target=\"_blank\">summary</a> of this week&#8217;s dev chat that includes the schedule and scope for the upcoming release. It will include Gutenberg 4.7, Twenty Nineteen bug fixes, and a few PHP 7.3 compatibility fixes.</p>\n<p><a href=\"https://gschoppe.com/wordpress/benchmarking-gutenberg/\" rel=\"noopener\" target=\"_blank\">Slow performance</a> as compared to the classic editor has been a commonly-reported <a href=\"https://github.com/WordPress/gutenberg/issues/6466\" rel=\"noopener\" target=\"_blank\">issue</a> with Gutenberg. The project has a label for it on GitHub with <a href=\"https://github.com/WordPress/gutenberg/labels/%5BType%5D%20Performance\" rel=\"noopener\" target=\"_blank\">26 open issues</a>. 140 performance-related issues have already been closed so the team is making progress on speeding it up. 5.0.2 will bring major performance improvements to the editor, particularly for content that includes hundreds of blocks. </p>\n<p>&#8220;The cumulated performance gains are around 330% faster for a post with 200 blocks,&#8221; Matias Ventura said in an <a href=\"https://make.wordpress.org/core/2018/12/13/5-0-2-editor-performance-and-bug-fixes/\" rel=\"noopener\" target=\"_blank\">update</a> on the editor. &#8220;This might be even bigger for certain setups and plugin configurations — seeing the same test post be 540% faster with Yoast, for example.&#8221;</p>\n<p>These changes are already in version 4.7 of the Gutenberg plugin, which users can run alongside WordPress 5.0.1 to test the latest. </p>\n<p>RC 1 for 5.0.2 is planned for today and RC 2 (if necessary) is targeted for December 17. The official release is scheduled for December 19.</p>\n<p>Gary Pendergast also outlined the scope and schedule for WordPress 5.1, which will be led by Matt Mullenweg. Pendergast proposed a relatively short release cycle with an official release February 21, since there are already more than <a href=\"https://core.trac.wordpress.org/query?status=closed&milestone=5.1\" rel=\"noopener\" target=\"_blank\">200 tickets fixed for 5.1</a>. Focuses for the release include the REST API (particularly authentication solutions), core JS, and core themes. Beta 1 is planned for January 10, with RC 1 following February 7. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Dec 2018 16:52:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WPTavern: WPWeekly Episode 341 – Recap of WordCamp US 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=86395&preview=true&preview_id=86395\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wptavern.com/wpweekly-episode-341-recap-of-wordcamp-us-2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1333:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I recap WordCamp US 2018. We discuss what&#8217;s new in WordPress 5.0.1 and when users can expect to see 5.0.2.</p>\n<p>We also chat about the new path that WordPress is on and where it may lead. John shares his perspective on what the atmosphere was like at the event and compares it to last year.</p>\n<p>Near the end of the show, we explain why the Question and Answer process at the end of the State of the Word will likely undergo changes.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wordpress.org/news/2018/12/wordpress-5-0-1-security-release/\">WordPress 5.0.1 Security Release</a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, December 19th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #341:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Dec 2018 01:59:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: WordCamp US 2019 to be Held November 1-3 in St. Louis\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86379\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/wordcamp-us-2019-to-be-held-november-1-3-in-st-louis\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4527:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/12/st-louis.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://commons.wikimedia.org/wiki/File:St_Louis_night_expblend.jpg\">Wikimedia Commons</a></p>\n<p>Dates for WordCamp US 2019 were <a href=\"https://wordpress.org/news/2018/12/wordcamp-us-2019-dates-announced/\" rel=\"noopener\" target=\"_blank\">announced</a> today, less than a week after wrapping up a successful camp in Nashville. Unlike all previous years held in December, next year&#8217;s event will take place November 1-3 in <a href=\"https://2018.us.wordcamp.org/2018/06/15/matt-mullenweg-announces-st-louis-as-wordcamp-us-2019-2020-host-city/\" rel=\"noopener\" target=\"_blank\">St. Louis, Missouri</a>. </p>\n<p>For the most part, community reactions to the new dates were positive. Early November dates place the event well ahead of the end of the year holidays that attendees had previously bemoaned.</p>\n<p>&#8220;I love this date set better than the previous one. It’s so much easier to attend/speak pre-Thanksgiving,&#8221; WordPress developer Mitch Cantor <a href=\"https://twitter.com/thatmitchcanter/status/1073307921851867136\" rel=\"noopener\" target=\"_blank\">said</a>.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/hashtag/WordCamp?src=hash&ref_src=twsrc%5Etfw\">#WordCamp</a> US, November 1-3, 2019. This is great news! December is always a mad dash to an arbitrary solstice-based finish line. Moving <a href=\"https://twitter.com/hashtag/WCUS?src=hash&ref_src=twsrc%5Etfw\">#WCUS</a> to November takes a huge load off! <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> <a href=\"https://t.co/WUToY3eiam\">https://t.co/WUToY3eiam</a></p>\n<p>&mdash; Morten Rand-Hendriksen (@mor10) <a href=\"https://twitter.com/mor10/status/1073308742488227840?ref_src=twsrc%5Etfw\">December 13, 2018</a></p></blockquote>\n<p></p>\n<p>There is always a conflict for some demographic of attendees. This year the hardest hit are parents of small children who will likely miss taking their kids trick-or-treating due to traveling on or before Halloween in order to make it to the event. WordCamp US is a family-friendly event but bringing children to a WordCamp can be extraordinarily challenging, even when the event includes childcare. (This particular event doesn&#8217;t.) For a few attendees, missing Halloween with their children is a deal-breaker. </p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Exactly what I was thinking. I\'d have to fly in on Halloween, no way I\'m missing Halloween with my 2 year old.</p>\n<p>&mdash; Katie Thompson (@katietdesign) <a href=\"https://twitter.com/katietdesign/status/1073341329021775875?ref_src=twsrc%5Etfw\">December 13, 2018</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">That’s a good point! <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f640.png\" alt=\"🙀\" class=\"wp-smiley\" /></p>\n<p>&mdash; Tessa Kriesel (@tessak22) <a href=\"https://twitter.com/tessak22/status/1073333517646467075?ref_src=twsrc%5Etfw\">December 13, 2018</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Though this one is something a lot of parents really enjoy spending with their small children especially in the US. We\'re not talking about national hotdog day here.</p>\n<p>&mdash; Patrick Garman (@pmgarman) <a href=\"https://twitter.com/pmgarman/status/1073317197194428421?ref_src=twsrc%5Etfw\">December 13, 2018</a></p></blockquote>\n<p></p>\n<p>One possible solution for the parents who feel they have to miss WordCamp US because of their kids, might be for the organizers to schedule the contributor day as the first day of the camp. That might enable people to fly in on an early morning flight and still get to experience part of the contributor day and all of the main event. </p>\n<p>In a community this large, with many other holidays and WordCamps already on the calendar, it&#8217;s difficult to find a date for WordCamp US that doesn&#8217;t have conflicts. This is a good problem for the community to have. Matt Mullenweg shared during the State of the Word that the community has experienced 50% year over year growth with more than 350K members in 687 meetup groups and more than 5,000 meetup events. With this rate of growth, the community can expect more regional and local camps to spring up in the coming years, which means more conflicts but also more options for getting together in the future.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Dec 2018 00:43:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WPTavern: WordPress Plugin Directory Now Features a Curated Section for Block-Enabled Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86331\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://wptavern.com/wordpress-plugin-directory-now-features-a-curated-section-for-block-enabled-plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4065:\"<p>If you visit the <a href=\"https://wordpress.org/plugins/\" target=\"_blank\" rel=\"noopener\">plugin directory</a>, you will notice a new section at the top featuring block-enabled plugins. WordPress 5.0 has been downloaded more than 8 million times, just one week after its release, and users are looking for blocks to extend the new editing experience. WordPress.org is highlighting plugins to push the block ecosystem forward and will soon be doing the same for themes.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/12/Screen-Shot-2018-12-13-at-9.35.13-AM.png?ssl=1\"><img /></a></p>\n<p>There are currently 94 blocks in the featured section. In a <a href=\"https://make.wordpress.org/plugins/2018/12/07/blocks-plugins-and-you/\" target=\"_blank\" rel=\"noopener\">post</a> on make.wordpress.org/plugins, Samuel (Otto) Wood invited developers to email the plugins team at plugins@wordpress.org if they have a block-enabled plugin that they want to be included. The basic requirements are a plugin that introduces or improves blocks.</p>\n<p>I asked Otto how they select from submissions. He said the plugins team is curating the list manually and adding those they think are good or interesting.</p>\n<p>&#8220;It&#8217;s not a high bar; if it has a neat block, we&#8217;ll add it for now,&#8221; Otto said. &#8220;We may raise the bar depending on how big the section gets, and the section is not final by any means. We&#8217;ll change the inclusions according to how it works out. The goal is to promote neat and cool integrations, but there aren&#8217;t a lot of those yet. It&#8217;s new.&#8221;</p>\n<p>Assigning a tag to block-enabled plugins that authors could opt into would eliminate the need for manual approval on the section, but Otto said they are currently handling it more like a showcase.</p>\n<p>&#8220;Letting the plugin authors just add a tag would reduce the available tags (it&#8217;s already limited to 5) as well as reducing the value of curation,&#8221; Otto said. &#8220;We may change that as well in the future, somehow. Nothing is set in stone right now, we just want to see people making cool blocks and see what happens with that.&#8221;</p>\n<p>A directory devoted entirely to blocks may also be coming to WordPress.org next year. In a recent post, Matt Mullenweg identified <a href=\"https://make.wordpress.org/core/2018/12/08/9-priorities-for-2019/\" rel=\"noopener\" target=\"_blank\">9 Projects for 2019</a>, including &#8220;building a WordPress.org directory for discovering blocks, and a way to seamlessly install them.&#8221; This is a much larger task and requires WordPress to answer a few questions: Will plugins continue to be the primary delivery mechanism for blocks? Or will WordPress.org implement a system where users can download JS-only blocks, similar to the Gutenberg Cloud project? </p>\n<p>Three months ago, Otto <a href=\"https://wptavern.com/gutenberg-cloud-a-cross-platform-community-library-for-custom-gutenberg-blocks#comment-260894\" rel=\"noopener\" target=\"_blank\">commented</a> on a post about Gutenberg Cloud, saying that js-only blocks are likely only suited to frontend enhancements.</p>\n<p>&#8220;I remain unconvinced that js-only blocks have a place which is meaningful other than the trivial layout based things that blocks can do,&#8221; Otto said. &#8220;Yes, you can build great looking blocks with JavaScript only, and since it’s an editor, that is a really big deal. But without any actual support on the backend to &#8216;do stuff of substance,&#8217; it is just visual glitter.&#8221;</p>\n<p>Offering JS-only blocks through WordPress.org might also complicate block discovery if users don&#8217;t know whether to look for blocks in a plugin or via the JS-only block delivery system. There are a lot of unknowns in the block era that will require WordPress to make some decisions. Meanwhile, the ecosystem of block-enabled plugins will continue expanding as more users adopt the new editor and especially as widgets and menus are ported to blocks in phase 2 of the Gutenberg project.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Dec 2018 21:32:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"Dev Blog: WordCamp US 2019 dates announced\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6496\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2018/12/wordcamp-us-2019-dates-announced/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:705:\"<p>Save the date! <a href=\"https://2019.us.wordcamp.org/2018/12/12/wordcamp-us-2019-announcing-our-dates/\">The next WordCamp US</a> will be held on November 1-3, 2019, in beautiful <a href=\"https://2018.us.wordcamp.org/2018/06/15/matt-mullenweg-announces-st-louis-as-wordcamp-us-2019-2020-host-city/\">St Louis, Missouri</a>. One of our largest events of the year, WordCamp US is a great chance to connect with WordPress enthusiasts from around the world. This is also the event that features Matt Mullenweg&#8217;s annual <a href=\"https://www.youtube.com/watch?v=r5b-N2RmxS8\">State of the Word</a> address. </p>\n\n\n\n<p>We&#8217;d love to see you in St. Louis next year, so mark your calendar now!<br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Dec 2018 19:47:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Andrea Middleton\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"WPTavern: Interview with Rachel Cherry: Automattic Pledges to Fund WPCampus’ Accessibility Audit of Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86293\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"https://wptavern.com/interview-with-rachel-cherry-automattic-pledges-to-fund-wpcampus-accessibility-audit-of-gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2477:\"<p>While at WordCamp US, I had the opportunity to catch up with <a href=\"https://wpcampus.org/\" rel=\"noopener\" target=\"_blank\">WPCampus</a> director Rachel Cherry, who is coordinating an audit on Gutenberg for the organization she leads. WPCampus <a href=\"https://wptavern.com/wpcampus-seeks-to-raise-30k-for-gutenberg-accessibility-audit\" rel=\"noopener\" target=\"_blank\">launched its crowdfunding campaign</a> at the end of November and more than $10K has come in towards the <a href=\"https://wpcampus.org/2018/11/fundraising-for-wpcampus-gutenberg-accessibility-audit/\" rel=\"noopener\" target=\"_blank\">$30K goal</a>.</p>\n<p>The day before WordPress 5.0 was released, WPCampus announced that Automattic has pledged to ensure WPCampus&#8217; accessibility audit of Gutenberg is fully funded. </p>\n<p>&#8220;I think that they [Automattic] see that it is important,&#8221; Cherry said. &#8220;Even when they said they weren&#8217;t going to do it, I don&#8217;t think it was ever &#8216;We&#8217;re never going to;&#8217; it was just &#8216;Not right now.&#8217; For us, we couldn&#8217;t necessarily wait for &#8216;maybe we&#8217;ll do it later,&#8217; so that&#8217;s why we jumped on it and got the ball rolling. I think they saw an opportunity where they could step in and have the means to move this along even further. They see the value and I think that&#8217;s why they wanted to jump in. They also saw all the community effort going on.&#8221;</p>\n<p>In the interview below, Cherry discusses how leaders in the WPCampus community rallied to get the audit in motion. The organization has received seven responses from vendors and is currently in the selection process. She also shared a little bit about her conversation with Matt Mullenweg during his community office hours and their discussion about how WordPress is used in higher education.</p>\n<p>Cherry&#8217;s strategy in advocating for accessibility is to focus on slicing through the confusion surrounding accessibility problems with an emphasis on education and communication. Although WordPress has set accessibility standards, the project has fallen short on enforcing them. In addition to putting automated accessibility testing in place for core, Cherry said she would also like to get more support for helping theme and plugin authors meet accessibility standards. This would help ensure that the code WordPress.org puts on the web is more accessible for those who are creating customized sites.</p>\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Dec 2018 04:29:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"Dev Blog: WordPress 5.0.1 Security Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6498\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wordpress.org/news/2018/12/wordpress-5-0-1-security-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4797:\"<p>WordPress 5.0.1 is now available. This is a <strong>security release</strong> for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately.</p>\n\n\n\n<p>Plugin authors are encouraged to <a href=\"https://make.wordpress.org/core/2018/12/13/backwards-compatibility-breaks-in-5-0-1/\">read the 5.0.1 developer notes</a> for information on backwards-compatibility.</p>\n\n\n\n<p>WordPress versions 5.0 and earlier are affected by the following bugs, which are fixed in version 5.0.1. Updated versions of WordPress 4.9 and older releases are also available, for users who have not yet updated to 5.0.</p>\n\n\n\n<ul><li><a href=\"https://ripstech.com\">Karim El Ouerghemmi</a> discovered that authors could alter meta data to delete files that they weren&#8217;t authorized to.</li><li>Simon Scannell of <a href=\"https://blog.ripstech.com\">RIPS Technologies</a> discovered that authors could create posts of unauthorized post types with specially crafted input.</li><li><a href=\"https://twitter.com/_s_n_t\">Sam Thomas</a> discovered that contributors could craft meta data in a way that resulted in PHP object injection. </li><li><a href=\"https://security-consulting.icu\">Tim Coen</a> discovered that contributors could edit new comments from higher-privileged users, potentially leading to a cross-site scripting vulnerability.</li><li><a href=\"https://security-consulting.icu\">Tim Coen</a> also discovered that specially crafted URL inputs could lead to a cross-site scripting vulnerability in some circumstances. WordPress itself was not affected, but plugins could be in some situations. </li><li><a href=\"https://yoast.com/\">Team Yoast</a> discovered that the user activation screen could be indexed by search engines in some uncommon configurations, leading to exposure of email addresses, and in some rare cases, default generated passwords.</li><li><a href=\"https://security-consulting.icu\">Tim Coen</a> and <a href=\"https://medium.com/websec\">Slavco</a> discovered that authors on Apache-hosted sites could upload specifically crafted files that bypass MIME verification, leading to a cross-site scripting vulnerability. </li></ul>\n\n\n\n<p>Thank you to all of the reporters for <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">privately disclosing the vulnerabilities</a>, which gave us time to fix them before WordPress sites could be attacked.</p>\n\n\n\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 5.0.1</a>, or venture over to <code>Dashboard → Updates</code> and click <code>Update Now</code>. Sites that support automatic background updates are already beginning to update automatically.</p>\n\n\n\n<p>In addition to the security researchers mentioned above, thank you to everyone who contributed to WordPress 5.0.1:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/tellyworth\">Alex Shiels</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron Campbell</a>, <a href=\"https://profiles.wordpress.org/andreamiddleton\">Andrea Middleton</a>, <a href=\"https://profiles.wordpress.org/vortfu\">Ben Bidner</a>, <a href=\"https://profiles.wordpress.org/barry\">Barry Abrahamson</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">Chris Christoff</a>, <a href=\"https://profiles.wordpress.org/darthhexx/\">David Newman</a>, <a href=\"https://profiles.wordpress.org/apokalyptik\">Demitrious Kelly</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/hnotess/\">Hannah Notess</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/herregroen\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/chanthaboune\">Josepha Haden</a>, <a href=\"https://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/batmoo/\">Mo Jangda</a>, <a href=\"https://profiles.wordpress.org/nickdaugherty\">Nick Daugherty</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/SergeyBiryukov\">Sergey Biryukov</a>, and <a href=\"https://twitter.com/p_valentyn\">Valentyn Pylypchuk</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Dec 2018 03:13:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Ian Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"Post Status: Interview with Matt Mullenweg on Gutenberg, WordPress, and the future\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=50403\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://poststatus.com/matt-mullenweg-on-gutenberg/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101863:\"<p>Welcome to the Post Status <a href=\"https://poststatus.com/category/draft\">Draft podcast</a>, which you can find <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\">on iTunes</a>, <a href=\"https://play.google.com/music/m/Ih5egfxskgcec4qadr3f4zfpzzm?t=Post_Status__Draft_WordPress_Podcast\">Google Play</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\">Stitcher</a>, and <a href=\"http://simplecast.fm/podcasts/1061/rss\">via RSS</a> for your favorite podcatcher. Post Status Draft is hosted by Brian Krogsgard.</p>\n<p>In this episode, I am joined by <a href=\"https://ma.tt\">Matt Mullenweg</a>, the co-founder of WordPress and CEO of Automattic.</p>\n<p>Just after releasing WordPress 5.0, and on the heels of WordCamp US, Matt and I review the event, the release, and discuss how he thinks things went, what could have gone better, and what he sees ahead.</p>\n<p>We also dig into WooCommerce, various plans around core development processes, Automattic, and more. I hope you enjoy.</p>\n<p></p>\n<p>And an audio version.</p>\n<p></p>\n<p>Full transcript is coming soon.</p>\n<h3>Episode Links</h3>\n<ul>\n<li><a href=\"https://ma.tt/\">Matt&#8217;s blog</a></li>\n<li><a href=\"https://automattic.com\">Automattic</a></li>\n<li>WordCamp US <a href=\"https://ma.tt/2018/12/state-of-the-word-2018/\">State of the Word</a></li>\n<li>Post Status&#8217;s <a href=\"https://poststatus.com/state-of-the-word-2018/\">coverage of WCUS</a></li>\n<li><a href=\"https://grief.com/the-five-stages-of-grief/\">5 Stages of Grief</a></li>\n</ul>\n<h3>Sponsor: iThemes</h3>\n<p><a href=\"https://ithemes.com/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads\">iThemes</a> makes great WordPress plugins, themes and training to help take the guesswork out of building, maintaining and securing WordPress websites. I talk to iThemes CEO Cory Miller during the break to hear about what they are working on, and excited about for the coming year.</p>\n<p>Thanks to <a href=\"https://ithemes.com/?utm_source=post_status&utm_medium=banner&utm_campaign=ps_ads\">iThemes</a> for being a Post Status partner.</p>\n<p>&nbsp;</p>\n<h3>Full Transcript</h3>\n<div class=\"transcript\">\n<p>Brian Krogsgard: Hello and welcome to Post Status Draft. I hope you enjoy this interview with Matt Mullenweg. It lasts for a while, but I think that it&#8217;s worth catching the whole thing. We cover a whole bunch of topics. I want to thank iThemes for being our partner for this episode. iThemes has been in the WordPress space for so, so long and they make many great products, whether you&#8217;re looking to secure your website, manage your plugins and themes and so much more. Go to iThemes.com to learn more and thanks so much to the team at iThemes for being a Post Status partner. Now here&#8217;s the show. So hello and welcome to Post Status Draft. Fresh off of the release of WordPress 5.0 and WordCamp US, I&#8217;m here with Matt Mullenweg, the co-founder of WordPress. Hey Matt.Matt Mullenweg: Howdy, howdy. It&#8217;s good to see everyone again.</p>\n<p>Brian Krogsgard: Yeah, it&#8217;s great to see you. You look comfortable. You must be somewhere that is something like home.</p>\n<p>Matt Mullenweg: Yeah, I&#8217;m in actually New York City this week. I had a few meetings after the WordCamp and it&#8217;s also just one of my favorite cities to be especially this time of year. The lights and everything around Christmas time are just gorgeous, so it&#8217;s fun.</p>\n<p>Brian Krogsgard: Yeah. I&#8217;ve never been to New York City in the Christmas season, but it&#8217;s one of those bucket list type of things. So let&#8217;s start off with just how are you feeling post-release, post-event? How do you feel like things went overall?</p>\n<p>Matt Mullenweg: Super energized. I&#8217;d say like day before the release was pretty nervewracking, but it went better than I think almost anyone hoped, including myself. There was a great energy at WordCamp of we were able to kind of &#8230; I think instead of arguing about whether we should do a release or not, should it be Thursday or Tuesday or next month or never, or all these sorts of different options, everyone would say, &#8220;Okay, it happens. The world didn&#8217;t end and what can we do next to make things better?&#8221; That kind of making things better conversation is where I find the WordPress community is most productive. It&#8217;s where you can really get all sorts of different ideas and you can really get to the point where it does make things better for our users.</p>\n<p>Brian Krogsgard: Yeah. And I tend to think generally people cool down when they&#8217;re in person versus when they&#8217;re online. So all the energy, the pent-up energy from working through all the things that have to do with the release over the course of two years and it finally comes on you, sometimes it just feels good to get it out at the end of the day. You let those bygones be bygones.</p>\n<p>Brian Krogsgard: I felt like it was actually a pretty drama-free release and event. I didn&#8217;t see any major bugs come across. I asked some of the big hosts and some of the big plugin companies, I was like, &#8220;What are you all seeing? Are you seeing a bunch of stuff come through?&#8221; And I didn&#8217;t get much. Have you heard much feedback in terms of, are there a lot of bugs coming up? Are there are a lot of issues or has it been fairly smooth?</p>\n<p>Matt Mullenweg: Well, what I&#8217;ve been telling you all year, that it would be anticlimactic, I was half right. The software was anticlimactic. Everything around the software was pretty intense.</p>\n<p>Brian Krogsgard: Very climactic, yeah.</p>\n<p>Matt Mullenweg: But yeah, I actually didn&#8217;t realize it before I got on for State of the Word, but host site GoDaddy, others have already upgraded over a million sites. They&#8217;re seeing normal support loads, things like that. It&#8217;s like I said, ultimately what drives a release day is, is the software ready? And the software was ready and all the inputs, all the data, all the sort of normal things we look at were there. It was just one of these things where the people, we didn&#8217;t seem ready and that&#8217;s much harder to navigate. Sometimes getting it out there helps a lot, but it&#8217;s one thing that I&#8217;ve seen throughout my entire professional software career is the longer you go between releases the harder they are. I&#8217;ve seen this in small teams, big teams, public, private, inside automatic, outside, whatever it is. If you can get to where you&#8217;re releasing more frequently, it just removes a ton of stress and burden on each individual release and I think makes for ultimately a much better process for everyone involved.</p>\n<p>Brian Krogsgard: Yeah, and I want to dig into more about the process. I was really surprised. I don&#8217;t think I saw a single person share your old blog post about the version 1.0 and the importance of shipping 1.0. Maybe we&#8217;re just getting really old. So referencing a blog post that&#8217;s that many years old is harder now. But yeah, I&#8217;ve been in the camp for a while now that it just seemed like you&#8217;ve got to get it out there. I felt like we always had an advantage in the WordPress landscape and this is one of the things I was worried about when you announced the big feature release style. Here are our three goals and we&#8217;re going to make the releases strategic to that. We had the benefit of iteration when we had the regular releases. So overall do you feel like the tradeoff of losing the regular major releases was worth it in order to get the big thing shipped?</p>\n<p>Brian Krogsgard: I think of like Drupal, the struggles and the boundaries they had going from 6.0 to 7.0 to 8.0 and it was almost like a whole new thing. This was really our first time, in a really long time at least, maybe ever, that you feel like you update and it&#8217;s in some ways a whole new thing, and it was a long release cycle that led up to that. So do you think that tradeoff was worth it or do you think there was a tradeoff? Is my assumption a poor one?</p>\n<p>Matt Mullenweg: Well, there was in that we didn&#8217;t do a major release for a year. We did slip some things that would previously be in major releases in the minor releases, in the 4.9.X kind of releases, so that helped. That&#8217;s a good question. I think that in 2019 we can do both. So we can keep some really super rapid public iteration and the feature plugins, and who knows, I&#8217;d actually love to see a few more kind of areas of WordPress that we want to innovate in or expand in, take more of this plugin approach. And then we also have a lot of great stuff in the hopper for some major releases. I think we&#8217;ll be able to do &#8230; there was a lot of talk at contributor day as we were looking at it.</p>\n<p>Matt Mullenweg: It actually slipped my mind that we did that whole code reformatting and JavaScript reorganization in trunk, and that&#8217;s not in 5.0, right? Because we branched off 4.9.8 to make it as stable and as few changes as possible. So we&#8217;ve got actually, I think there&#8217;s another 200 patches already in trunk that weren&#8217;t in 5.0. So we&#8217;ve just got a lot of good stuff already in there, including the whole reorganization that you kind of put that together plus maybe ServeHappy and the white screen protection and some really cool stuff that&#8217;s kind of more like small stuff. That could be a 5.1 right there. I could see that going in the beta January, RC in February.</p>\n<p>Brian Krogsgard: Yeah, talk about ServeHappy. I mean, for I don&#8217;t know, five, six, seven years, people have wanted, demanded PHP upgrades and it was a footnote in this state of the word.</p>\n<p>Matt Mullenweg: I should have done it as one more thing.</p>\n<p>Brian Krogsgard: One more thing, yeah. Had to really get all the developers on your team for that one. So you made a commitment to in 2019 have a staggered upgrade process to mandate certain versions of PHP. Remind me if I&#8217;m incorrect, 5.6 in the Spring and 7.0 next winter. Is that basically the timeline?</p>\n<p>Matt Mullenweg: Yeah, that&#8217;s the idea and we&#8217;re just going to go through. And again this is, just like with Gutenberg, it&#8217;s not about changing a version number or something. It&#8217;s really about bringing the whole community along for the ride, so we need to scan all the plugins. For 5.6, I think we&#8217;ll actually be able to update them or send patches to maintainers, even update and maintain plugins, because those changes are pretty easy. Seven is tougher and I think that is, we&#8217;re targeting December for that. I could see that slipping, just depending on whether host in the meantime and everyone else is able to get there, but even getting to 5.6 opens up a ton of possibilities, including with things like OAuth and GraphQL and namespaces, and there&#8217;s some pretty cool features. 5.6 is ancient at this point. It had a lot of improvements over 5.2.</p>\n<p>Brian Krogsgard: And a lot-</p>\n<p>Matt Mullenweg: And we still have a lot of folks on these older versions, so part of the reason we&#8217;re giving ourselves time as well is to, if we can run some analytics to figure out which host these old sites are on Ron and reach out to them, try to work with them.</p>\n<p>Brian Krogsgard: Do you think a part of the reason why you even think this is possible, for a long time, I mean, people were running WordPress across a huge spectrum of versions of PHP. Do you think part of the reason why you even think this possible is the hosting relationships that had been made between the community and the hosting companies over the past few years? Because that&#8217;s something that I&#8217;ve felt like has been quite significant. The efforts that, if you look at the big ones, the GoDaddy and the Bluehosts of the world, the amount of commitment they&#8217;re giving to the community, do you think that&#8217;s a big part of it? And how hard is the long tail going to be to capture, do you think?</p>\n<p>Matt Mullenweg: That&#8217;s a big question. First, I&#8217;ll say that the improvement of hosts, particularly the big ones in becoming kind of like WordPress first, providing a really first-class WordPress experience from security updates, everything, it&#8217;s probably been the biggest change in the WordPress ecosystem over the past five years. And I have huge admiration for them because they&#8217;re doing this for millions of sites, thousands of support folks. They&#8217;re really moving some really, steering some really large ships and the results have been fantastic. We got, I think it was up to 68% of our WordPress was on 4.9 by the time 5.0 come out.</p>\n<p>Brian Krogsgard: Yeah, that&#8217;s great.</p>\n<p>Matt Mullenweg: But in terms of what&#8217;s going to make the PHP upgrading easier, it&#8217;s really a combination of everything, including time, including some of this white screen protection stuff that we&#8217;re doing. If we can back port that, you know we still backport to 3.7 all of our security updates?</p>\n<p>Brian Krogsgard: Mm-hmm (affirmative).</p>\n<p>Matt Mullenweg: Which is kind of wild.</p>\n<p>Brian Krogsgard: It is. It&#8217;s great for security of the Web broadly, but it&#8217;s quite something.</p>\n<p>Matt Mullenweg: Yeah, if we can do that for some of this, maybe we can put some of this white screen upgrade protection into those old versions, so that way we can kind of protect people who might be doing plugin and theme or core updates from breaking their site in programmatic way. Um, it&#8217;s also the work that&#8217;s gone into updates. We know we migrated to a new data center this year for WordPress.org It&#8217;s like, I forget the exact or something like five or 10 times more powerful than the old one.</p>\n<p>Brian Krogsgard: Wow.</p>\n<p>Matt Mullenweg: Almost no one noticed. But you notice that there&#8217;s no more 503s when we run the updates, and things can go faster. This means we can do auto updates better, which means that we&#8217;ll be able to do opt-in for core and plugin and theme auto updates and then maybe move that to opt-out 2020. These are all just things that have been going on that represent thousands of hours of work from hundreds of people that set the stage so we can do stuff. It&#8217;s part of the reason I think that we will be able to move a lot faster in 2019. We had to stop core ,essentially freeze it for Gutenberg, because we were building a new foundation and you can&#8217;t build the house on top while you&#8217;re also pouring the concrete, right? Things will sink. They&#8217;ll get off center. I&#8217;ve never built a house so I don&#8217;t know this analogy all the way, but now we&#8217;ve got the foundation. We&#8217;ve got this framework and things being built on top of that framework. We&#8217;re already starting to see the benefits to things like keyboard navigation and accessibility when they&#8217;re built using Gutenberg fields that already have this kind of baked in.</p>\n<p>Matt Mullenweg: So I think that we have the opportunity to do just a massive upgrade not just of the editor but of every single plugin, every single theme, every single person&#8217;s experience with WordPress because think about it. No one just runs core. Cool if we do Gutenberg in core? Ultimately it doesn&#8217;t matter. Everyone&#8217;s got five, 10, 20 different plugins. They&#8217;ve got their theme which might implement who knows how many additional features baked into the theme? Probably dozens, if you think about all the customization options, that&#8217;s all going to be able to be reimagined now and already is. We see some of this, over 100 themes in the plugin directory. You might have noticed we put the Gutenberg-ready plugins at the very top, even above featured. We&#8217;re really trying to get everyone on this train.</p>\n<p>Brian Krogsgard: Do you think there was a messaging gap in a trying to get across the idea that Gutenberg is a foundation rather than a window dressing or wallpaper or whatever other nonstructural housing component we want to compare it to?</p>\n<p>Matt Mullenweg: Well, I think it&#8217;s easy to say that there was a messaging gap and that communication could have been 10 times better or whatever, because there are obviously some people who wren&#8217;t on board and still aren&#8217;t on board. So now, is there anything that could have gotten everyone 100 percent?</p>\n<p>Brian Krogsgard: No.</p>\n<p>Matt Mullenweg: I don&#8217;t know, but I think we will always strive to do better. And ultimately, I mean, one of the things that made me pretty confident about the release wasn&#8217;t that Gutenberg is perfect. It&#8217;s not. By the way, it&#8217;s still not right for a ton of people, but that&#8217;s okay. You know WordPress, unlike almost every other SaaS service or software use gives you control. And the fact that we have classic editor as a first party supported official thing and that anyone for whatever reason, literally any reason, can still use the old experience instead. That&#8217;s what I meant when I said 5.0 was going to be anticlimactic, not that it meant Gutenberg was perfect or ready for everyone, but that forever was not wordy. They&#8217;re just a click or two away before or after the release from having the experience that they used to.</p>\n<p>Brian Krogsgard: Yeah, one of the things I like to remind myself of is that neither was TinyMCE perfect or right for everyone.</p>\n<p>Matt Mullenweg: Well, no.</p>\n<p>Brian Krogsgard: And that&#8217;s why it was being replaced. So I think sometimes we do have to look at what are we trying to replace and what do we have right now? Is that worth getting out into the world and iterating on?</p>\n<p>Matt Mullenweg: Did you see those user tests videos?</p>\n<p>Brian Krogsgard: I did. Unfortunately my wife said, &#8220;Do you want to go see the Harlem Globetrotters?&#8221; And I was like, &#8220;Absolutely.&#8221; And I didn&#8217;t have WordCamp US on my calendar yet.</p>\n<p>Matt Mullenweg: Oh, don&#8217;t worry, don&#8217;t worry.</p>\n<p>Brian Krogsgard: So we double booked, so I re-watched the whole State of the Word, including the user tests, the Q and A, the whole thing, and it was pretty amazing seeing those user tests. I&#8217;ve seen people do user tests before. They&#8217;re often really terrible.</p>\n<p>Matt Mullenweg: Painful.</p>\n<p>Brian Krogsgard: That&#8217;s why for years I&#8217;ve tried to make my own message that we need to continually support things that make WordPress easier to use, so I think that was a good thing to highlight in the State of the Word.</p>\n<p>Matt Mullenweg: And by the way, I probably would&#8217;ve picked the Harlem Globetrotters over me as well, so o need to apologize.</p>\n<p>Brian Krogsgard: It was the first one I&#8217;ve missed since like 2012.</p>\n<p>Matt Mullenweg: That&#8217;s awesome. That&#8217;s great. I&#8217;m an average live experience. The Harlem Globetrotters are amazing live.</p>\n<p>Brian Krogsgard: They are.</p>\n<p>Matt Mullenweg: You can always catch State of the Word on vide later.</p>\n<p>Brian Krogsgard: They are. I may as well use the opportunity too to thank [David Bisset 00:15:39], because he did a fantastic job with both tweeting things and just generally keeping people that follow along with Post Status up to date and it turned out to be a good outlet for him because twitter banned his personal account because they thought that he was tweeting so much.</p>\n<p>Matt Mullenweg: Wasn&#8217;t that wild?</p>\n<p>Brian Krogsgard: Yeah.</p>\n<p>Matt Mullenweg: I know. That guy is a national treasure of WordPress.</p>\n<p>Brian Krogsgard: He is. He is. If there was a community spirit award, he should win it.</p>\n<p>Matt Mullenweg: Absolutely.</p>\n<p>Brian Krogsgard: So he stood up to ask a question during the State of the Word and unfortunately ran out of time, so I would-</p>\n<p>Matt Mullenweg: Right, I felt so bad that we didn&#8217;t get to &#8230; There were a lot of people in line, but just some of those earlier questions were a bit longer and I could tell the room was starting to, like I think we were already like an hour 45. We were pretty far into it, so &#8230;</p>\n<p>Brian Krogsgard: Yeah, and maybe we&#8217;ve put a 30-second clock next year for people to ask a question.</p>\n<p>Matt Mullenweg: I&#8217;ve been thinking about that, like there were some definitely things in the room this year, like it was very dark in the audience so it was a little harder to see. I think that also subdued people. There was a little more distance between the stage and the people which looked a little more theatrical, but I think also made the audience a bit more disconnected. And even, there was a funny thing. You saw the spotlight on the question askers?</p>\n<p>Brian Krogsgard: Yeah.</p>\n<p>Matt Mullenweg: It was so bright and at an angle that it was shining in the eyes of everyone sitting next to them. So after the first or second question there, there was a huge hole in the audience next to the mic because we were just getting like it had this crazy spotlight on it. I think we can figure out some different ways of doing lighting or doing the questions in the future that might be a bit a bit easier.</p>\n<p>Brian Krogsgard: Well, you&#8217;ll have that opportunity in St Louis, right, for the next two years.</p>\n<p>Matt Mullenweg: Woo hoo, St. Louis. I&#8217;m very excited about that.</p>\n<p>Brian Krogsgard: Yeah, I&#8217;m excited about that too. I haven&#8217;t been there in a long time, and what David-</p>\n<p>Matt Mullenweg: I love that we&#8217;re doing the opposite of Amazon. They had the opportunity to pick any city in America and they go to D.C. and New York.</p>\n<p>Brian Krogsgard: I know.</p>\n<p>Matt Mullenweg: They&#8217;re both amazing places, but not really shining a light on places that don&#8217;t get as much love already.</p>\n<p>Brian Krogsgard: Yeah, I think my-</p>\n<p>Matt Mullenweg: And we&#8217;ve had Philly, Nashville and now St. Louis, I really dig the WordCamp US thing.</p>\n<p>Brian Krogsgard: Yeah. I have feeling that Amazon may have been including some political reasoning and in their strategy for that, but that&#8217;s okay. WordPress doesn&#8217;t have to do that. We can go wherever we want.</p>\n<p>Matt Mullenweg: We can go to Canada, which was one of the questions, which I thought was kind of cool.</p>\n<p>Brian Krogsgard: Including Canada, which was a good question. I actually had that brought up to me before WordCamp about the U.S./Europe thing and whether we can learn from that and have WordCamp Americas or something.</p>\n<p>Matt Mullenweg: Yeah, what&#8217;s your thought on Central America in that equation?</p>\n<p>Brian Krogsgard: Yeah, I mean I think that there&#8217;s a lot of cultural differences, but I think anything Americas, there&#8217;s some common themes of people that work hard, people that explored many centuries ago. So I don&#8217;t know, I&#8217;m probably not the best person to answer that type of question, but &#8230;</p>\n<p>Matt Mullenweg: I&#8217;ve been thinking about it a lot, like what are the logical divisions and because we do have some rules in the WordCamp world around like what could be &#8230; I&#8217;d love to see a WordCamp Asia, for example. Asia is obviously geographically, culturally and language-wise, incredibly diverse.</p>\n<p>Brian Krogsgard: Right, I think the lingual differentiation would be a challenge, so I don&#8217;t know what the best regions would be but perhaps-</p>\n<p>Matt Mullenweg: But then look in Europe.</p>\n<p>Brian Krogsgard: Yeah.</p>\n<p>Matt Mullenweg: It has a ton of languages [inaudible 00:19:08] English.</p>\n<p>Brian Krogsgard: I always envy friends in Europe because they all speak like five languages plus, and some of them speak better English than I do.</p>\n<p>Matt Mullenweg: Oh, for sure. Have you ever seen a map of the lower 48 overlaid over Europe?</p>\n<p>Brian Krogsgard: Yeah, it&#8217;s very, very similar in size, so-</p>\n<p>Matt Mullenweg: Yeah, it&#8217;s actually, you forget how large actually the lower 48 of the U.S. is that it covers kind of like into Europe, pretty far into Russia and Turkey and Middle East.</p>\n<p>Brian Krogsgard: Yeah. We think of Alabama and Houston or Birmingham, Alabama and Houston, Texas as pretty close, but that could be different countries if we were in Europe with different languages and culture. It&#8217;s a reminder of the diversity in our space and how serving different cultures and people from different backgrounds is extremely important. All right, so David&#8217;s question was, what are the dates for WordCamp next year? Do we have any idea?</p>\n<p>Matt Mullenweg: Oh, I think we know them. I&#8217;ll put them out later. They&#8217;ll be in a blog post or something.</p>\n<p>Brian Krogsgard: Okay, he will be disappointed again.</p>\n<p>Matt Mullenweg: Well just, I don&#8217;t know if I could tell you the day of the week of my birthday or something. I&#8217;m pretty bad at dates.</p>\n<p>Brian Krogsgard: No, that&#8217;s fine.</p>\n<p>Matt Mullenweg: As you might guess from-</p>\n<p>Brian Krogsgard: Is it going to be in December again, though?</p>\n<p>Matt Mullenweg: I believe so. Don&#8217;t hold me to anything there. I will officially find something.</p>\n<p>Brian Krogsgard: But late in the year still.</p>\n<p>Matt Mullenweg: Yeah, yeah, so I think that we&#8217;ll put up like a placeholder site for 2019, and there will definitely be some tweets and some official stuff saying the dates.</p>\n<p>Brian Krogsgard: Okay.</p>\n<p>Matt Mullenweg: But to your earlier point, I actually feel what you just described of going between countries in Europe, I feel that when I&#8217;m, excuse me, on the East Coast of America because I can actually drive eight or 10 hours and still be in Texas. I can drive two hours over here and cross through three different states. And that was one of the points that I tried to make. This was actually I think one of my weaker Q&amp;As. I had two answers that were two of the worst answers I&#8217;ve given probably the past few years, and one was what people heard me say, which I wasn&#8217;t trying to say, to Morton&#8217;s thing.</p>\n<p>Matt Mullenweg: Which I was trying to make the point that in a distributed organization or where we have people working across things, you can read into someone&#8217;s language and it might not be their first language, so it&#8217;s really good to give the benefit of the doubt and realize that we&#8217;re not all speaking our native tongue. And so things might come across as harsh or worse or rude or things, when it&#8217;s just not at all. It&#8217;s certainly not the intention of the person to communicate that way. And the other was the answer, I think it was Birgit&#8217;s question about being hired to work on things.</p>\n<p>Brian Krogsgard: Yeah, corporate sponsorship for WordPress work.</p>\n<p>Matt Mullenweg: Yeah, neither &#8230; I think my brain was just a little fried by the end of the day.</p>\n<p>Brian Krogsgard: So what would you adjust in terms of, I think that question was around how to &#8230; I was actually with you with Morton, that I didn&#8217;t notice the issue. It seemed like you were pretty clearly speaking about broader communication things, not specifically with his communication, which is-</p>\n<p>Matt Mullenweg: I would never make fun of Morton&#8217;s or anyone&#8217;s skills speaking another language.</p>\n<p>Brian Krogsgard: Yeah, and that one was pretty clear to me. But the one about corporate sponsorship, do you think there&#8217;s a place for &#8230; How do you encourage independent work on the WordPress community, nonprofit side of things? Is there a place or a way that that can be done without corporate sponsorship? Because I know, I mean I&#8217;m self-employed and I can personally understand if I suddenly gave 10 or 20 hours a week or whatever amount of time to the core project in a non-revenue generating way that would be felt. So is there a way that that can be done, or do you think corporate sponsorship of community work is really the only way to go about it right now?</p>\n<p>Matt Mullenweg: Well, let me take a second crack at this one. First and foremost, I never want to downplay the contributions of people doing it in their spare time.</p>\n<p>Brian Krogsgard: Yeah, and it is, I mean it&#8217;s astonishing and I could be that person, too. I don&#8217;t choose to be that person in this stage of my life, but yeah, it&#8217;s amazing what people are doing completely outside of work time.</p>\n<p>Matt Mullenweg: Yeah, and I also don&#8217;t want to understate how big an impact on the WordPress project, two to four hours a week out of the 168 can have a really huge impact on some big areas. Even a single hour a week, if put in the right place, can move mountains. And WordPress was largely built by volunteers and people doing it in their spare time, and I worry to say, to ever get to a point where we&#8217;re saying we only value people who are doing it full time, or it&#8217;s only possible to make a change if you&#8217;re doing it full time. So that&#8217;s one point I was trying to make, that let&#8217;s never downplay the value that people can do with just a little bit of contributions. Five for the Future is just two hours a week in a work week, right?</p>\n<p>Brian Krogsgard: Right, yeah, and that was the question [Daniel Bock Huber 00:24:12] had was if you had plans or iterations that you thought would be good for Five for the Future?</p>\n<p>Matt Mullenweg: Oh, for sure. The second is that the WordPress Foundation is not designed to be an employment entity. Now, there&#8217;s no employees. There&#8217;s no HR. There&#8217;s no benefits. There&#8217;s no payroll. There&#8217;s no anything, and going from zero to one there is actually a pretty big thing. It is designed to give grants. We can give money to other organizations. By the way, I think that there&#8217;s also a big opportunity for other nonprofits to be part of this. There&#8217;s no reason to say only for-profit corporations can sponsor people that work on WordPress. I would love to see more nonprofits that by the way have a lot more expertise in some of the areas that we want more contributions in, including design, accessibility, privacy, internationalization.</p>\n<p>Matt Mullenweg: These things, there&#8217;s full nonprofits dedicated to that have often sometimes very large staffs and pretty large budgets, journalism. These I think are really fruitful areas, and in fact one of the things that, I don&#8217;t know if you saw Morton&#8217;s talk, a lot of people I thought misread it. Maybe I misread it as well. When he was talking about open governance, my take was that he was talking about getting WordPress a seat at the table, and discussing these regulation changes and et cetera happening. I think the example last year was, there was this meeting at 10 Downing Street. Who was there? Was WordPress represented?</p>\n<p>Matt Mullenweg: And he started talking about the Web Foundation, and I began thinking. I was like, &#8220;Wow, well, WordPress only represents a third of Websites, and not even, really. It&#8217;s a third of the top 10 million. Another foundation like the Web Foundation actually might be a better vehicle to try to advocate on the open Web as a whole, versus just the people who happen to be using a single CMS.</p>\n<p>Brian Krogsgard: Yeah, and I don&#8217;t want to speak for him in terms of which audience he was trying to, or which group he was trying to represent in terms of within WordPress, or WordPress within the broader Web. I do think that there are often questions about governance of WordPress. You have long been the central vision of the project, and then delegated the execution of that vision to many other people who then lead this project, which is massive at this point. One of the things I&#8217;ve always asked you for several years now was, how many people do you have directly reporting to you?</p>\n<p>Brian Krogsgard: Because one of the things I find to be important is under this model, where your vision is required, then if you&#8217;re spread out so thin it requires these sprints to focus towards WordPress, rather than always being able to have kind of a constant flow, even if it&#8217;s a minority of your time, going towards that, establishing that vision for WordPress. So, how have you evolved in that regard? I know you&#8217;re-</p>\n<p>Matt Mullenweg: What was the number last time you asked me?</p>\n<p>Brian Krogsgard: It was high.</p>\n<p>Matt Mullenweg: What is high? There was one point it was like 26 or something.</p>\n<p>Brian Krogsgard: Yeah, it was in the 20s. It was in the 20s last year I think when we talked about it.</p>\n<p>Matt Mullenweg: Yeah, it&#8217;s under half that now.</p>\n<p>Brian Krogsgard: That&#8217;s great.</p>\n<p>Matt Mullenweg: So, that&#8217;s been really good. There&#8217;s been a lot more leaders, but I would actually argue the point that WordPress has always been sort of my vision being set, or even my direct leadership. There was a good four or five years there where the leadership structure, because we&#8217;ve experimented with lots of different, we don&#8217;t call it governance, but essentially leadership structures in WordPress. For a while, we had kind of the &#8230; It wasn&#8217;t a committee approach, but essentially like the lead developers consensus approach. We did that for a few years.</p>\n<p>Matt Mullenweg: Even from the beginning it wasn&#8217;t just me. It was me and Mike Little, so it&#8217;s never been solo. Then we went to where the release lead was the final decider, including over me, so that was probably, I don&#8217;t know, 3.9 to 4.7 maybe, that including could overrule me as project lead for what was in the release or not, and that was to try to give a little more autonomy and flexibility to release leads. But the big change was a few years ago I said, &#8220;Okay, I&#8217;m going to take back over core WordPress development,&#8221; and that was to try to provide a &#8230; Try to make some of these big changes happen. So right now it is much more of a benevolent dictator model, although both of those words are questionable. But, I don&#8217;t see that as the permanent forever structure, you know? [crosstalk 00:28:54]-</p>\n<p>Brian Krogsgard: One problem with that is-</p>\n<p>Matt Mullenweg: I don&#8217;t know if I can sustain this forever. I mean, this is a pretty intense period and we&#8217;re doing some pretty intense work, and I&#8217;ll need a break at some point, too.</p>\n<p>Brian Krogsgard: Yeah, and how do you, or do you think there&#8217;s merit in opening that up in some way to certainly have more community input, but sometimes that&#8217;s not good, you know? Sometimes the central vision idea can be more productive, but when you bring that into open source software versus running a company, maybe there&#8217;s different consequences. So have you given any thought to what does WordPress look like after this phase in terms of a governance structure?</p>\n<p>Matt Mullenweg: It&#8217;s hard, because I haven&#8217;t seen any models where anything resembling voting works, you know?</p>\n<p>Brian Krogsgard: Yeah, for running software, you mean.</p>\n<p>Matt Mullenweg: Yeah, and for choosing a direction. It&#8217;s not that many models for consumer-facing software. There&#8217;s some for server-facing software, where sort of like a committee approach works, you know? It seldom creates great user experiences. You kind of want, I&#8217;m not saying it always has to be me, but what I want is a strong, opinionated, thoughtful leader doing, setting a bold direction, taking experiments and being willing to fail, comfortable with failure, is I think what you need to create great software.</p>\n<p>Brian Krogsgard: So how do you-</p>\n<p>Matt Mullenweg: And that&#8217;s tough, and by the way, we&#8217;ve had lots of those leaders in the history of WordPress, and I think that&#8217;s been the success. It&#8217;s not just because I&#8217;m doing anything.</p>\n<p>Brian Krogsgard: Sure.</p>\n<p>Matt Mullenweg: It&#8217;s that we have lots of folks and we have, as a community including myself, invested that authority and power in them, and that trust. It doesn&#8217;t mean that it&#8217;s always been right, like we&#8217;ve definitely done things that we might undo later or that were mistakes, but the ability to make those mistakes is what you need for an innovative organization. When you look at any organization, private or public, it&#8217;s too afraid to fail, that&#8217;s when you get this kind of incrementalism. That&#8217;s when you get this kind of fear of change. That&#8217;s when you essentially stagnate, and if you were to point to any place that software goes poorly, whether that&#8217;s in government or companies that don&#8217;t innovate or get disrupted by smaller upstarts, anything, it&#8217;s because one of those happened or probably all of those things happened. They got too successful and then they were afraid to fail, because it was too embarrassing and they had too much to lose, and then they stagnate.</p>\n<p>Brian Krogsgard: All right, we&#8217;re here to take a quick break and I want to thank our partner, iThemes, long-time supporter of Post Status. I&#8217;ve got Cory Miller on with me to talk about what they&#8217;ve got going on. Hey, Cory.</p>\n<p>Cory Miller: Hey, Brian, thanks for having me on.</p>\n<p>Brian Krogsgard: Yeah, it&#8217;s my pleasure and I appreciate your support over the years. I was hoping that you could just tell me maybe what&#8217;s a big success iThemes had in 2018, and what you&#8217;re looking forward to next year?</p>\n<p>Cory Miller: Yeah, as you know in January of 2018 now we were acquired. iThemes was acquired by a great hosting company named Liquid Web, so this year has been spent integrating. We are almost done with the first round of integrations for our key product, iTheme Sync, which promotes site management for freelancers and agency WordPress Websites, BackupBuddy, our long-time popular plugin, and securities. So we&#8217;re almost done with the final round of that. You know in any transition there&#8217;s always bumps, but it&#8217;s been a really good ride so far.</p>\n<p>Brian Krogsgard: Yeah, have you been getting good feedback from LiquidWeb customers so far, or I guess are you looking forward to seeing iThemes products more integrated with LiquidWeb&#8217;s stuff?</p>\n<p>Cory Miller: Very much so. We saw hosting as the future for WordPress. All of the big hosting companies making significant investments in WordPress, and this was a way to join forces with a great hosting company and for our products, our team, to live on into the future doing really good things in WordPress.</p>\n<p>Brian Krogsgard: Cool, and iThemes products are still available outside of LiquidWeb as well. You can use them on any host that you choose, or a naked VPS if you want help managing a server that you want to pull all the lever, you can still do that but you can use all the iThemes tools to help you manage the day, and [inaudible 00:33:31] out of your WordPress Website. I&#8217;m really excited for you guys and what you have going on, and look forward to hearing more as next year comes along. Thanks for being on real quick, and if people want to learn more about what you&#8217;ve got going on, where do they go?</p>\n<p>Cory Miller: iThemes.com, best place to click some links and see if we are offering something that you&#8217;re in need of. We&#8217;d be happy to serve you.</p>\n<p>Brian Krogsgard: Awesome, well, thanks for being such a big part of the WordPress community these last 10 years plus, and a partner of Post Status for as long as Post Status has existed.</p>\n<p>Cory Miller: Yeah, we love Post Status. Keep doing what you&#8217;re doing, Brian. Thank you.</p>\n<p>Brian Krogsgard: Thanks, buddy. Bye. We&#8217;ve got another question from Ant in regards to giving people a seat at the table in a governance structure, which was seeking an update on the growth council, whether that was productive this last year, whether it happened. How can it happen going forward? I don&#8217;t know anything about what&#8217;s happened in the last year, so what have you learned there, and what&#8217;s happened?</p>\n<p>Matt Mullenweg: Yeah, so we created these two growth councils, one consumer one and one enterprise one, and we did these monthly meetings, video chats. And my goal with creating it was one, to bring some people together, so there are direct competitors in these meetings. It&#8217;s enterprise agencies that are bidding on the same clients. It&#8217;s Web posts that are advertising on the same key words and everything. And so you&#8217;d have like that as part of the discussion, and one of the goals also was to produce, improve essentially the WordPress experience.</p>\n<p>Matt Mullenweg: Some parts were successful, some parts weren&#8217;t, so I was amazed and humbled by how people came together. I think it really showed something I&#8217;ve tried to demonstrate with Automatic in the past, that you can both compete and work together for a greater good. People were both able, because it was a safe space, they were able to share things that were going on in their companies, things they were hearing from clients that they couldn&#8217;t talk about publicly, things they were seeing, experiences, in a safe space that generated some amazing discussions. I&#8217;ll also say selfishly that I learned a ton being part of these meetings, so it was really, really valuable for me.</p>\n<p>Brian Krogsgard: And that&#8217;s about how their organizations work and what&#8217;s important to them, or what kind of stuff?</p>\n<p>Matt Mullenweg: And the people they&#8217;re talking to, whether that&#8217;s consumers, kind of the more mass market side particularly with Web posts, but also with people doing trainings, people building small Websites, which is my kind of mental model was like, if it&#8217;s people spending under $100,000 a year for a site that&#8217;s the consumer group. If it&#8217;s over $100,000 a year, that&#8217;s the enterprise group. Not exact, but that was kind of like a rough mental model. And on the enterprise side, what are they seeing? It was so interesting as well, like most of the big agencies started building sites with Gutenberg kind of like February, March, and were launching them over the summer. Now at this point, they&#8217;re basically building everything. They&#8217;ve been building everything new with Gutenberg for the better part of a year.</p>\n<p>Brian Krogsgard: Yeah, I actually spoke with Tom Wilmot from Human Made and Jake Goldman from 10up both, and they&#8217;ve both expressed that they had an early embrace of Gutenberg and seen success with it. Somebody was telling me, I think it might have been Tom, that they showed off a demo of Gutenberg and instantly blew some Adobe experience manager style feature out of the water. Some company had spent gargantuan sums of money on the alternative experience, and they did a couple customizations with Gutenberg over the course of a couple weeks and showed them this as a prototype. It was already far superior to what their competition was putting forward, so from those-</p>\n<p>Matt Mullenweg: There&#8217;s got to be so much of that.</p>\n<p>Brian Krogsgard: Yeah.</p>\n<p>Matt Mullenweg: At Gutenberg, people have written bad versions of what Gutenberg is, including myself, for five years now. And now we&#8217;ve got this standard we can all build on. I actually had it right here. Human Made had this really cool white paper. I don&#8217;t know if you&#8217;ve seen this.</p>\n<p>Brian Krogsgard: Nice, yeah, they printed it.</p>\n<p>Matt Mullenweg: It&#8217;s glossy, it&#8217;s pretty &#8230; I mean, these are the types of things that for enterprises are really important. PDFs, white papers, case studies, and enterprise section of WordPress.org, important for that user group. For a consumer, a lot of things that that team talked about was the importance of talking about different use cases and allowing users to self-segment over the job they want to get done, and having some guides for that, some recommended plugins, essentially hand-holding them through the process of it.</p>\n<p>Matt Mullenweg: So I talked about what was successful about the councils. I&#8217;ll tell you what didn&#8217;t go as I hoped, producing things. I think because it was all often the CEOs of their companies or kind of the head folks, it was difficult for them to get time other than the meetings, in between the meetings, to just do work to produce for example a new enterprise section of WordPress.org. So actually on Saturday morning, I officially dissolved the councils.</p>\n<p>Brian Krogsgard: Okay.</p>\n<p>Matt Mullenweg: What I told the folks was, we&#8217;re not going to schedule out these meetings for the rest of the year. I left the Slack channels up so people could keep chatting if they want, and of course I said if anyone wants to keep meeting on their own, they&#8217;re happy to, or to continue the projects, and both groups said they would like to. The enterprise group wants to get the enterprise subsection of WordPress.org out. The consumer group wants to continue shipping some things, but it was a year and we didn&#8217;t ship these things, that honestly probably any &#8230; It could have happened within a month or two if it had had a lot of focus from any of the people involved. It illustrated to me actually the difficulty of a committee approach.</p>\n<p>Brian Krogsgard: Yeah, it makes me think of-</p>\n<p>Matt Mullenweg: One of the things that came up was the enterprise. We did drinks on Saturday as a kind of ending thing. It was a combined consumer and enterprise, and one of the things is they were like, &#8220;Hey, if you had just chosen one person to be in charge of this, that person could have said, &#8216;You do this, you do this, you do this,&#8217; it would have shipped probably pretty quickly.&#8221; But because no one knew who was in charge and who could tell other people to do things, I think it was Jake who said, &#8220;I&#8217;m not sure if I can tell Tom, &#8216;You need to finish this page,&#8217; or &#8216;You didn&#8217;t edit it.\'&#8221; Who&#8217;s in charge? And so that&#8217;s I think unintentionally illustrated an alternative group and management style that, because if it wasn&#8217;t adjusted and set up correctly, which is my responsibility, my fault, and not getting the results that we wanted. So, great experiment though, and I&#8217;m really, really glad we did it.</p>\n<p>Brian Krogsgard: Yeah, I wonder, you see movies or you see a senate hearing or something, and you have the primary people at the center table and then you have all their deputies on the outside. They&#8217;re still in a safe space, but they&#8217;re the people that actually go out and do things afterwards. It&#8217;s not like the senator or the CEO on that council necessarily that&#8217;s implementing, but they bring other people from their organization in to help the implementation component.</p>\n<p>Matt Mullenweg: I was kind of hoping more of that would happen. It&#8217;s true, some people on the councils were contributing individually, and some lead larger organizations so they can shepherd a lot of resources as well. So, I think there&#8217;s some of both that&#8217;s needed in the WordPress world. Yoast and myself are probably good examples, Yoast the person, not the company, of a leader who&#8217;s really passionate about areas, who also brings along a lot of their company to work on it.</p>\n<p>Brian Krogsgard: Yeah, they have a lot of manpower there.</p>\n<p>Matt Mullenweg: Oh, yeah.</p>\n<p>Brian Krogsgard: That they&#8217;ve got dedicated to core.</p>\n<p>Matt Mullenweg: Person power.</p>\n<p>Brian Krogsgard: Person power, thank you.</p>\n<p>Matt Mullenweg: Yoast had an incredible effect on Gutenberg and the 5.0 release, even though they&#8217;re smaller than all of the hosts, all of everything else. I think it&#8217;s a great example of Five for the Future.</p>\n<p>Brian Krogsgard: So I have one more process question, and then I want to dig into phases two through four, but Darren Ethier I think is how I pronounce his last name, he asked what were your thoughts process-wise on using GitHub for probably the most ambitious-sized project yet with WordPress from a feature plugin or feature point of view? Do you think it was encouraging enough to potentially start moving off track in SVN? I do know there was a make WordPress post that was about this, but I&#8217;m curious your personal experience, whether you liked being in GitHub day to day or using Git in the process, or if you missed track in terms of that development?</p>\n<p>Matt Mullenweg: I mean, I&#8217;m an early adopter of GitHub. My user name is literally the letter M, to show you how early it was, and I really like it. I think it&#8217;s a great product. Having kind of a parallel process, where I&#8217;ve now been involved pretty heavily in something on TRACK, involved pretty heavily on something on GitHub, there&#8217;s pluses and minuses. I wouldn&#8217;t say either is a panacea. The thing that actually makes the real difference is much more your engineering management. It&#8217;s your triage. It&#8217;s your process. It&#8217;s the testing. On both GitHub and TRACK, we made mistakes and had tickets that sat for weeks without anyone responding to them.</p>\n<p>Matt Mullenweg: That doesn&#8217;t have to do with the software. It has to do with the people, and I do worry the distraction of effort and time that switching source control and issue trackers and just also all the work that needs to be done to migrate all the tooling at the same time, if it would distract us from what&#8217;s actually most important in 2019, which is to tighten up some of our loose parts of the software. So that&#8217;s the only reason I&#8217;m hesitant to commit to saying that we&#8217;re going to do anything, particularly in 2019.</p>\n<p>Matt Mullenweg: Also, I am a big fan of GitLab, obviously. I see a lot of, I noticed a lot of comments on Helen&#8217;s post for actually advocating for GitLab. All of these things are getting better pretty rapidly. GitHub was slow for a while, and now they&#8217;re really picking it up. Time is kind of on our side if we switch later, because whatever we switch to will be six or 12 months better than it is today, and probably provide perhaps more of a compelling step function and user experience than is currently there, which is yes, I totally agree the interfaces are more modern and there&#8217;s better tools, and I do strongly prefer Git for branching and all these other things. There&#8217;s almost nothing you could tell me about either way that is an argument I haven&#8217;t heard or made myself. But it&#8217;s more just about a community focus thing, and what is the issues most urgently impacting WordPress users, both current and potential, today?</p>\n<p>Brian Krogsgard: I like what you say there in terms of the urgency factor, because I think I agree with you. Personally, if I were to do something to try to actually make code changes in SVN, I would always have to go remind myself, how do I patch something, and do I have the tools on my modern MacBook to do so? Whereas by &#8230; Go ahead.</p>\n<p>Matt Mullenweg: I was just going to say, we&#8217;ve built a lot of bridges between them as well. WordPress is synced to Git. You can do things both ways. We have tools for migrating patches between them. We&#8217;ve got official GitHub for WordPress. There&#8217;s a lot of stuff out there, but there is a point when I really want to focus on the developer experience and really invest some serious, serious time into that, but we&#8217;ve got to get the user experience right first.</p>\n<p>Brian Krogsgard: Yeah, I think I&#8217;m with you in terms of that priority, but long-term bringing on new people to be comfortable developing on the software, most people in their day to day are in GitHub or in Git more broadly, so even the self-hosted Git version or GitFlow I think in the long run would be good, but I like what you said there about the urgency component.</p>\n<p>Matt Mullenweg: Well, that&#8217;s one of the things I was looking at a lot, because that is one of the I think better arguments for using something centralized like GitHub, is that a lot of people have GitHub accounts.</p>\n<p>Brian Krogsgard: Mm-hmm (affirmative).</p>\n<p>Matt Mullenweg: Basically there was a while, I&#8217;ve reviewed probably over 10,000 engineering applications for Automatic. Every single one of them has a GitHub link. There&#8217;s definitely something to be said for that. I didn&#8217;t notice that big a difference in type or number of contributions, so it is a barrier to entry to make a WordPress.org account. It doesn&#8217;t appear to be the most salient factor in determining whether people submit patches or are active in TRACK or not-</p>\n<p>Brian Krogsgard: Interesting.</p>\n<p>Matt Mullenweg: Active in [inaudible 00:46:57] TRACK or not.</p>\n<p>Brian Krogsgard: I&#8217;d be curious how that ends up working if it was officially there, but nevertheless let&#8217;s move on to-</p>\n<p>Matt Mullenweg: Well, just look at the numbers, because Gutenberg was as official as anything, and the numbers of contributors to that versus the number of contributors that we have in any given core release, kind of similar. I think that the hard part is actually deciding that you&#8217;re going to dive into the code. The hard part is saying like, &#8220;I&#8217;m going to take this code. I&#8217;m going to figure out the problem and then submit the patch.&#8221; And once you&#8217;ve been through that, making an account one place or another, I think it&#8217;s probably something you&#8217;ll do one way or another.</p>\n<p>Brian Krogsgard: So phase one of Gutenberg mostly complete, or at least out the door, and you&#8217;re going to be iterating on this every two weeks like you told me before. Let&#8217;s talk about phase two through four, and let&#8217;s start with just why do you think that the order that you established things in is the right order? Why do you think this is the right direction, I guess, overall?</p>\n<p>Matt Mullenweg: Yeah, some of it is sequential and some of it is not. Are you familiar with the Kubler Ross Five Stages of Grief?</p>\n<p>Brian Krogsgard: No, I&#8217;m not.</p>\n<p>Matt Mullenweg: It&#8217;s like anger, denial, depression, acceptance. You&#8217;ve probably seen these before.</p>\n<p>Brian Krogsgard: Yeah, I&#8217;ve seen this in terms of markets. It&#8217;s the same stages of grief are identified in market cycles, so like in the stock market it&#8217;s a very similar thing, but I didn&#8217;t know it was called that.</p>\n<p>Matt Mullenweg: I don&#8217;t have one on my desk, but I actually have some glasses that I often use for drinks that have little markers on them, and it actually has the five stages.</p>\n<p>Brian Krogsgard: Nice.</p>\n<p>Matt Mullenweg: We could put that in the show notes for the podcast, a link to those.</p>\n<p>Brian Krogsgard: Yeah.</p>\n<p>Matt Mullenweg: A common misperception, I ended up actually reading one of her books called On Grief and Grieving, and it was actually finished posthumously, so she actually passed away in the process of it. This is I think Elizabeth Kubler Ross, or I forget the exact name, but amazing book. Good to read even if you&#8217;re not going to go through grief or grieving, because we all do at some point. One of the most fascinating things I took from that book was people think of those stages as sequential, and actually they can happen out of order, and they can happen simultaneously. In fact, you can go through anger and denial and acceptance and everything all in the same kind of 10-minute period.</p>\n<p>Matt Mullenweg: That was a really fascinating insight to me just of the human condition, because we are often more complex and less sequential than sometimes our simplified systems would like to say, or we&#8217;d like to think. Development is the same way. Phase one is not stopping where phase two is starting, and I think bits of phases one through four have already happened and will continue to happen as we go through it. It&#8217;s just more about priorities. We&#8217;ve gotten the editor experience to the point where I think it&#8217;s pretty darn decent, especially for new users. Now people, if you look at people who started using WordPress in a post-Gutenberg world, of which there are now hundreds of thousands, so they&#8217;ve only known Gutenberg. This is that example of the support person who said, &#8220;Bring me back the simple editor,&#8221; and they meant Gutenberg?</p>\n<p>Brian Krogsgard: Yeah.</p>\n<p>Matt Mullenweg: What is the new barrier that they&#8217;re running into? What&#8217;s the new wall they&#8217;re hitting? It&#8217;s the rest of the site. It&#8217;s customization. It&#8217;s widgets.</p>\n<p>Brian Krogsgard: So for those that don&#8217;t have these phases locked down in their brain, phase two is customizing outside of the post content itself as the next point of emphasis. So this could be widgets, menus and miscellaneous content. David posted a funny picture on Twitter where you looked like you were in deep thought during the State of the Word and he said, &#8220;I wonder what Matt&#8217;s thinking about right now?&#8221; You said it was probably the process of transporting menus to Gutenberg.</p>\n<p>Matt Mullenweg: Oh, yeah.</p>\n<p>Brian Krogsgard: Moving, I feel like this is something that&#8217;s happened every few years [crosstalk 00:51:12] in WordPress, it&#8217;s like the old menu system, then the new menu system, then the customizer menu system. Now we&#8217;re talking about menus here, and also not calling it menus but reshaping to navigation.</p>\n<p>Matt Mullenweg: And navigation block, I think is probably a good way to put it.</p>\n<p>Brian Krogsgard: Yeah, it seems like we&#8217;ve got some debt in regards to spending time on things that then we don&#8217;t use for a super long time, so how can we do the Gutenberg way of site customization and content and try to be efficient and long-lasting with that effort?</p>\n<p>Matt Mullenweg: Well, I mean first we&#8217;ll start doing it in plugins, in the Gutenberg plugin actually, just like we did for the editor. And so we can have, one of the reasons Gutenberg is where it is is because we did do a lot of user testing along the way, and it wasn&#8217;t just testing mock-ups or ideas. We had the actual working plugin on actual working WordPress sites so they could run. That makes a world of difference, so we&#8217;ll be able to do that for the customize, replacing widgets.PHP, piece of cake. That&#8217;s just taking over the page. The customizer is a little trickier, but we can do it because all of Gutenberg was designed to be responsive.</p>\n<p>Matt Mullenweg: Essentially, the customizer side bar is very similar to a mobile view, a narrow screen. It&#8217;s kind of like instead of a wide version, it&#8217;s a narrow version of that interface, so I think we can slip in there. Mainly it just requires a lot of rethinking, and there are some tough concepts that currently blocks don&#8217;t have, like the idea of widget visibility, which is [crosstalk 00:52:49].</p>\n<p>Brian Krogsgard: Yeah, I was about to say conditionality, or like show it here but not there. That&#8217;s one of the experiences that seems like it could get really confusing, because someone&#8217;s on a post and they change a sidebar, and therefore they think they changed it just there but they changed it everywhere, vice-versa. There&#8217;s a lot of UX things that seem like they could get complicated.</p>\n<p>Matt Mullenweg: Yeah, so we&#8217;ve got to figure that out, to be honest. I don&#8217;t have the answer right now. We&#8217;ve got to experiment and test our way into what works there, because there are some powerful and complex concepts that I think we can maintain, but just make a lot more intuitive and also make not so in people&#8217;s face. So if they don&#8217;t need to have widgets or blocks that only show up on the sidebar of search pages, it&#8217;s not kind of in their face and making them think about things. It&#8217;s that whole thing, making it more powerful and more intuitive at the same time.</p>\n<p>Matt Mullenweg: But currently, blocks don&#8217;t have a concept of that, but if we solve it for sidebars, widget areas, whatever you want to call it, perhaps we could solve that for blocks everywhere they&#8217;re used. Showing different headers on different pages is not something that is currently supported by most themes on different types of templates, but why not? That would actually be pretty cool, different footers on different types of pages. I could easily imagine different types of sites that would do this.</p>\n<p>Matt Mullenweg: It also raised a good point, which is kind of what has always been one of my bugaboos about front end editing, is that when I&#8217;m writing, I want to focus. I don&#8217;t want to see my header and footer and sidebar and all this other stuff, much less edit them. I think, I mean I&#8217;ve always talked about zooming in and zooming out, Gutenberg essentially being like a new 3D interface for WordPress. I think we want to make it very easy to kind of zoom in and out, including focus on one single area or even one single block, if you really want to work within that.</p>\n<p>Brian Krogsgard: And that means in some ways potentially front end editing too, right? When I think about Gutenberg, the one beef I have with writing in WordPress is all the other stuff beyond the editor. Whether it&#8217;s TinyMCE or Gutenberg, I write mostly text and a few images. I&#8217;m not doing a lot of page layout, and I love the tools that Gutenberg&#8217;s brought in. For instance, you brought up some of Nick Hamze&#8217;s blocks. I talk to Nick sometimes, and he&#8217;s got so much creativity and I love that it empowers that. But for 90% of the things I&#8217;m going to do, I&#8217;m just writing. A clear, focused writing area is what I like, so I actually just don&#8217;t like the fact that I can go into the appearance editor and the plug in screen. Those are all one click away, rather than just saying, &#8220;Here&#8217;s the page.&#8221;</p>\n<p>Brian Krogsgard: The best Gutenberg interact I&#8217;ve had yet was actually WordPress.org/Gutenberg, because I was experiencing Gutenberg. It&#8217;s a live demo of Gutenberg. I was able to experience Gutenberg, and none of the other stuff was there. It was just a column of content, and I really enjoyed that, so is that a part, a way that you think we can focus on how to get to writing and not worrying about everything else?</p>\n<p>Matt Mullenweg: We can support both. I mean, you currently have a version of this in Gutenberg where it can show the menu or not, or you can go to the mode which is my preference mode, where Gutenberg takes over the whole screen so you don&#8217;t have a sidebar menu there, even minimized. I actually strongly prefer that.</p>\n<p>Brian Krogsgard: See, I didn&#8217;t even know that. I&#8217;ve missed that.</p>\n<p>Matt Mullenweg: Oh, yeah, yeah, so go in Gutenberg to the top right, the dots. I&#8217;m trying to think exactly where it is. Are you opening your WordPress as well?</p>\n<p>Brian Krogsgard: I am.</p>\n<p>Matt Mullenweg: We&#8217;ll go through this together.</p>\n<p>Brian Krogsgard: I might take over my screen share here, but that&#8217;s okay.</p>\n<p>Matt Mullenweg: Oh yeah, do you want me to screen share?</p>\n<p>Brian Krogsgard: No, I mean I&#8217;m recording us.</p>\n<p>Matt Mullenweg: Oh, got you, got you.</p>\n<p>Brian Krogsgard: So people, this might end up on YouTube or something.</p>\n<p>Matt Mullenweg: So in the three dots, there is three kind of options there.</p>\n<p>Brian Krogsgard: Oh, yeah.</p>\n<p>Matt Mullenweg: Tool bar, spotlight mode and full screen mode. I actually am in full screen mode. I strongly, strongly prefer it.</p>\n<p>Brian Krogsgard: Neat.</p>\n<p>Matt Mullenweg: Top tool bar I don&#8217;t think is that useful, but they know that. This was basically, there was a huge kind of fight earlier. If you look at Yoast&#8217;s original post about the plan for Gutenberg, there alternative UI is basically all about the top tool bar. Then spotlight mode I also don&#8217;t love, but some people really like it. It kind of grays out the other blocks and then makes the current block you&#8217;re in more visually prominent.</p>\n<p>Brian Krogsgard: Cool, and for anyone that happens to be watching this, I just popped it up onto the screen where you can see exactly where that is, so that&#8217;s really cool. I learn new things every day.</p>\n<p>Matt Mullenweg: Yeah, and so even this menu, like I&#8217;m looking at this menu right now. Do you have it open?</p>\n<p>Brian Krogsgard: I do.</p>\n<p>Matt Mullenweg: I want to talk through some things that could be really improved here. So for example, originally we didn&#8217;t have this descriptive text under each of these three views.</p>\n<p>Brian Krogsgard: Mm-hmm (affirmative).</p>\n<p>Matt Mullenweg: Well one, the text should be views, not view, and I think that there is, we can improve that text. Under editor, I don&#8217;t know if visual versus code is actually very intuitive, and two, under code editor, I think it&#8217;s a beautiful place to expose that you can actually go into the code editor on a per-block basis, so just a little bit of text there that says, &#8220;Hey, also per block you can go into this.&#8221; Manageable reusable blocks needs the square and the little pointy thing that shows that that&#8217;s going to take you out of Gutenberg, and I think it does open a new window.</p>\n<p>Matt Mullenweg: And I think that we should put some sort of star or cool icon next to keyboard shortcuts, because once you learn those, you are off to the races. So just a good example that as far as we&#8217;ve come with Gutenberg, you can look at a single screen and immediately think of four or five things that are very improvable and that are certainly worth testing and getting out there.</p>\n<p>Brian Krogsgard: Yeah, that&#8217;s neat.</p>\n<p>Matt Mullenweg: I always joke I&#8217;m the unhappiest WordPress user in the world. It&#8217;s hard for me to look at anything in WordPress and not see all the things that could be made better, and just be terribly impatient to get them better as soon as possible.</p>\n<p>Brian Krogsgard: So, speaking of impatient, you&#8217;re going to have to &#8230; Well, you might be able to work on some of these things at the same time but also there is a phase, a priority, and number three was about collaborative editing. For me, I think of this not even necessarily like me and you might collaborate on a post, but sometimes I want to collaborate with myself. My favorite tool from Automatic that you guys have built is probably Simplenote, because it&#8217;s like the only to-do app-ish thing, and it&#8217;s very unstructured, but it&#8217;s the only to-do app type of thing that I&#8217;ve ever really used in depth, because it&#8217;s really easy to open. It&#8217;s really easy to start writing, and it&#8217;s instantly on my phone. So for me, collaborative editing in some ways is just this simple process back and forth.</p>\n<p>Matt Mullenweg: Across devices.</p>\n<p>Brian Krogsgard: Yeah, across devices.</p>\n<p>Matt Mullenweg: Totally.</p>\n<p>Brian Krogsgard: Because I do a lot of stuff through my phone, but your collaborative editing is much more than just cross-device. It&#8217;s also cross-individual, and people building things together. Why do you think that&#8217;s an important thing to be in core WordPress experiences?</p>\n<p>Matt Mullenweg: Hmm, that&#8217;s a good example of something that there&#8217;s not a bajillion people asking for right now. But just like post revisions, which is one of my favorite things I&#8217;ve forced to be in WordPress that I think is really fundamental to have the entire system works, this-</p>\n<p>Brian Krogsgard: Yeah, a lot of people have been saved by revisions.</p>\n<p>Matt Mullenweg: Yeah, I think this idea that when you&#8217;re editing in a post, the post is almost like an object and people from different devices, different things, can all come and be simultaneously working on that same object, is a mental model that is technically extraordinarily difficult. But if you get it right, it&#8217;s just a magical user experience. Even simple stuff, like do you remember when Netflix started saving where you&#8217;d watched up to across devices?</p>\n<p>Brian Krogsgard: Mm-hmm (affirmative), yeah, that&#8217;s great.</p>\n<p>Matt Mullenweg: Magical, and it&#8217;s so simple.</p>\n<p>Brian Krogsgard: Yeah, I use that a good bit. We use that a good bit with our son, because the easiest way for him to be happy in a car is to have somebody&#8217;s phone. You can pull up Super Wings or whatever, right where he left off, so yeah, I do agree. And even when Google Docs came out with that, it was revolutionary in a way but people didn&#8217;t realize how much it would transform the way they write documents, so &#8230;</p>\n<p>Matt Mullenweg: Totally, and we&#8217;ve got, the Web now supports technologies like WebRTC, that will perhaps enable us to do this even without centralized service, which is super cool, too. Because before, I was &#8230; Conspiracy theorists won&#8217;t believe this but I was actually really disappointed that it looked like the only way we could do this was in Jetpack. Now, it looks like we&#8217;ll actually be able to do this in a much more distributed fashion.</p>\n<p>Brian Krogsgard: Interesting. Funny enough, I didn&#8217;t even think about that conspiracy theory and everything. As delightful as that sounds to think about, I didn&#8217;t consider the centralization aspect of it.</p>\n<p>Matt Mullenweg: Yeah, so it&#8217;s definitely, there&#8217;s some stuff out there that&#8217;s possible. By the way, there might still be something where Jetpack can enhance it, or maybe we use Simperium, which is the engine behind Simplenote, to do something even fancier, but we can do a lot without that. But this also requires us to rethink our user flows around what versions, what it means to edit something. Because right now, you and I can kind of be on different paths, and we can save each other and merge over each other. And what is the relationship between what&#8217;s on the edit screen versus what&#8217;s live? That also is going to apply now to the entire site, so maybe what you and I are working on together is the new version of Post Status, and you&#8217;re changing the typography and I&#8217;m moving the widgets around and things like that, and then we&#8217;re setting that to go live at 12:00 pm on a Tuesday.</p>\n<p>Brian Krogsgard: Yeah, that&#8217;s really cool. Another element of that that is a quirk in WordPress I guess, but you could publish a post and now I want to update it, but I don&#8217;t want to update it right now, but I want to save what I&#8217;ve updated.</p>\n<p>Matt Mullenweg: Mm-hmm (affirmative).</p>\n<p>Brian Krogsgard: Right now it&#8217;s either, it&#8217;s all about your current session. Once it&#8217;s published, you either update it or those changes are basically gone. You don&#8217;t kind of save a draft of an update, so a work flow like this would inherently basically have to solve a problem like that, so that would be nice.</p>\n<p>Matt Mullenweg: Basically, we&#8217;re going to reimplement Git in the post-content table, in the WP Post table.</p>\n<p>Brian Krogsgard: Yeah, that sounds like no problem.</p>\n<p>Matt Mullenweg: Piece of cake.</p>\n<p>Brian Krogsgard: Yeah, on that note, do you think there are underlying architectural changes that WordPress is going to have to go through to enable both this experience, because this is Gutenberg, but also I mean you&#8217;re probably faced with some of the problems that a tool like WooCommerce has in terms of scalability and being the right tool for the job for that next level of application. These aren&#8217;t blogs anymore, but we basically have the same data base, the same data base structure. You can extend it. You can change things, but do you think there&#8217;s rethinking that needs to be done in that regard?</p>\n<p>Matt Mullenweg: Sure, and I actually think that [inaudible 01:04:12] is I think we have the opportunity to readdress and in a very backwards compatible way provide a path for people to upgrade some data structures, some things that have been hanging around for a while. An obvious one is widgets are a serialized array. Now we can move that to being JSON. There&#8217;s the native structure, data structure that Gutenberg uses behind the scenes. For some reason, we have to store this as like HTML plus comments, we can just store it in the native data format, which is pretty cool.</p>\n<p>Matt Mullenweg: By the way, as we increase the MySQL version, we can actually query and get things out as JSON objects directly from MySQL. We don&#8217;t have to take them in and out of strings, so there&#8217;s just some clean-up, some fun stuff we can do. When we get higher PHP versions, we can name spacing doing different things. J-Trip&#8217;s been talking about doing some pretty cool composer stuff. All of this is, we&#8217;re getting the user part back on track and so that also means we can start to invest a lot more in that developer experience, which I think is crucial. Also I feel, I have a ton of empathy for, I actually for better or worse, I interact every day a lot more with developers than I do with users, so I really try to get out of my way to interact with users, but you can imagine the gripes and pains of developers is something that is more of my daily experience.</p>\n<p>Brian Krogsgard: So we&#8217;ll have time to talk about all these phases over the next few years, but quickly what do you see in terms of the number of sites where having a multilingual setup, and this is around the focus of phase four, how often are you encountering Websites like that, and how much do you think that this being a part of the WordPress experience would be empowering for people to actually support more languages and more language versions of their site?</p>\n<p>Matt Mullenweg: I think it would be a really big fundamental concept. The Web is global. English or single language is actually I think a small minority. People who speak one language is a small minority of the seven billion people in the world. This is obviously very prevalent in places like Quebec, where there&#8217;s officially French and English, and of course all over Europe. This is why I get the question every year for Camp Europe. I am monolingual, ashamedly so.</p>\n<p>Brian Krogsgard: Yeah.</p>\n<p>Matt Mullenweg: But the world is polyglots, and that&#8217;s why I named the mailing list WP Polyglots, not WP translate or WP anything, when I set that up almost 15 years ago now. Even for monolinguists like me, I got someone contacted me the other day saying, &#8220;Hey, can I translate this Gutenberg FAQ into Japanese? Do I have your permission to?&#8221; And they put it on a different site. How cool would it have been if I just could have said, &#8220;Hey, by the way, collaboration and work flow, here, you now have access to make this post into Japanese,&#8221; and now at the top it&#8217;ll have a little link to it, to the Japanese version, and there will be sort of a neural structure in a canonical place for the MA.TT version of the Gutenberg FAQ translated to Japanese by this volunteer, where anyone in the world could live. And by the way-</p>\n<p>Brian Krogsgard: I was about to say, what if it was permissionless, like just if someone wants to make something on my site in other languages, do it. As small as Post Status is, I&#8217;ve had people that want to recreate the members side in Dutch or something.</p>\n<p>Matt Mullenweg: Cool.</p>\n<p>Brian Krogsgard: I&#8217;m like, I can&#8217;t do that, but that sounds amazing if you want to do that. But I&#8217;d be totally down if the structure was there for it to say, translate this post, and it&#8217;s almost like forking software, or almost the way language packs and plugins work. You don&#8217;t have to be responsible for every language pack if you&#8217;re the plug in author. Someone can just come and do it, and I think that&#8217;d be really cool for posts.</p>\n<p>Matt Mullenweg: That would be so cool, and by the way, layer that in with other plugins. Layer that in with membership, so you only allow members to translate things, or layer that in with one I&#8217;d love to re-evaluate which is [Blickey 01:08:23]. So there is public revision history and sort of moderated submissions, so maybe I have, maybe my colleague [Nalco 01:08:34] can moderate Japanese translations, but maybe she doesn&#8217;t have time to translate every single one of my posts herself. But when people submit one, she could take a few minutes to just read it through and make sure they&#8217;re not having [crosstalk 01:08:47].</p>\n<p>Brian Krogsgard: Yeah, translate my post and make it sound completely different.</p>\n<p>Matt Mullenweg: Yeah, I think it&#8217;s actually WordPress.com.</p>\n<p>Brian Krogsgard: Assuming good intent is part of the thing there.</p>\n<p>Matt Mullenweg: Do you remember the Happy Birthday incident?</p>\n<p>Brian Krogsgard: I don&#8217;t.</p>\n<p>Matt Mullenweg: Someone, because when we opened up kind of like more totally community translations on WordPress.com and made it easy for anyone to do it, someone changed where it said comments, like leave a comment, into Happy Birthday! I forget what language it was, Italian, so all Italian sites under every single post would say Happy Birthday!</p>\n<p>Brian Krogsgard: Just Happy Birthday!</p>\n<p>Matt Mullenweg: Which I think is kind of like the most brilliant, if you&#8217;re going to troll or vandalize us, that was a really lovely way to do it.</p>\n<p>Brian Krogsgard: Yeah, we could probably learn some things from Wikipedia&#8217;s own editorial flows and how to implement something like that. I do think that would be really neat. Do you think that still leaves room for other plugins that are doing various multilingual things? Does it leave room for them, or do you think it kind of eats them up and makes that business model go away? Because there&#8217;s been some good-sized businesses in that realm.</p>\n<p>Matt Mullenweg: It leaves room for them 100%. In fact, I think it increases them a ton. Same thing with page builders. If you look at where the business model is for a lot of these translation plugins are going, they&#8217;re actually helping you do the translation. That makes total sense. If I&#8217;m a business, I might want my site in five languages. If I can click a button and just say, &#8220;Hey, I&#8217;ll pay you $1,000,&#8221; and by the way the plugins can be in the middle of that or there can sort of be an API for that. I mean, this is kind of incredible, but the downside of them is very similar to page builders, which is each kind of has its own way to do the data and the storage.</p>\n<p>Matt Mullenweg: Some put it all in post content. Some put it in custom post type. Some put it in meta fields. Some put it in separate tables, so you essentially have actually each of the possible ways you could kind of logically do this exists. So now, if I&#8217;m building a plugin that wants to work with multilingual versions of the site, how do I do it? There&#8217;s no common foundation. Exact same issue we had with blocks. There were blocks on WordPress for years now, but every single visual composer and Beaver Builder and Elementor and Avada and Divi, they all did blocks in a different way.</p>\n<p>Brian Krogsgard: Matt, there&#8217;s like 100 business questions I want to ask you but we&#8217;re over an hour already, so I will-</p>\n<p>Matt Mullenweg: Can we take a few more minutes, like maybe wrap it in like, say 10?</p>\n<p>Brian Krogsgard: Yeah, sure. If you&#8217;re down, I&#8217;m down.</p>\n<p>Matt Mullenweg: You&#8217;re one of my favorite people to talk to.</p>\n<p>Brian Krogsgard: Well, I appreciate it. I love talking to you as well, and I appreciate your openness.</p>\n<p>Matt Mullenweg: Between you all, honestly you all and the Tavern folks, these are so much fun. I actually listen to a lot of these podcasts. It&#8217;s really enjoyable for me, so I appreciate you doing it. My ask of you for 2019 is, I&#8217;d love to see a bit most Post Status on the scene, you know?</p>\n<p>Brian Krogsgard: Yeah, that&#8217;s a task for myself as well, so I did a relatively personal update recently.</p>\n<p>Matt Mullenweg: I saw that.</p>\n<p>Brian Krogsgard: One of the things that I&#8217;ve struggled with is I haven&#8217;t been in the thick of things in about four years, so I&#8217;m actually not spoiled, but I&#8217;m doing some part-time work actually being in WordPress, and back into doing stuff.</p>\n<p>Matt Mullenweg: Cool.</p>\n<p>Brian Krogsgard: It&#8217;s actually on the product side, not the service side. I&#8217;ve worked in an agency. This is going to give me a chance to do some part-time work on the product in SaaS side of things, so I&#8217;m excited about that. I know from history, when I&#8217;m working hard on something, whether it&#8217;s building my own site or working in the industry, it gives me much more to say, so I&#8217;m excited about being inspired by working within our space more, and within the experience more. Because it&#8217;s been four years of not doing that, and over those years I&#8217;ve tried to rely on other people to have a voice more as I felt like mine was fading. Kind of like what you were saying, you&#8217;re around developers all the time and not, like you want to be around more users. I was looking at the industry a lot, and not being in the industry I felt made it more difficult to have good things to say.</p>\n<p>Matt Mullenweg: Although I would say the outside perspective is really valuable as well.</p>\n<p>Brian Krogsgard: Yeah, I think at least for a season I need, it&#8217;ll be really beneficial for me.</p>\n<p>Matt Mullenweg: I can&#8217;t wait to see, and by the way, as a member of the Post Status community, include us along for the ride. I&#8217;m sure after that personal update you got a ton of people contacting you [crosstalk 01:13:14].</p>\n<p>Brian Krogsgard: I did, which I was very thankful for.</p>\n<p>Matt Mullenweg: It&#8217;s one of those things, I think what was beautiful about that is you opened up about the struggle, not just about the good stuff. It&#8217;s really scary to be vulnerable like that, publicly. It was scary of me to put the things we learned and did wrong in the State of the Word, right? I just wanted to talk about all the good stuff, but it&#8217;s like it&#8217;s important for us to talk about what I messed up on. People help when they see that.</p>\n<p>Brian Krogsgard: Yeah, that was very-</p>\n<p>Matt Mullenweg: And I think the most valuable thing you built is like overall a pretty positive community that cares about WordPress deeply, so that&#8217;s awesome.</p>\n<p>Brian Krogsgard: Yeah, and thank you, and I was very appreciative of the various responses that I got between feedback and ideas and job offers. But I&#8217;m excited to do some work within the space, and you know actually it did give me, it was beneficial because I got my head kind of out of the space a little bit, which I needed. I&#8217;ve been thinking about WordPress a whole lot since 2010, with basically no break, and I can&#8217;t imagine how you feel at times. But for me to still have a focus on WordPress but at least spend part of my week thinking about other things, doing other things, it gave me some personal benefits I think, and allowed me to look at WordPress things with a bigger picture. So I&#8217;m excited for 2019 and I think it&#8217;ll be a lot of fun. Now for you, just-</p>\n<p>Matt Mullenweg: Well, I often tell people if you&#8217;re ever feeling not inspired or burnt out, go to a museum. Watch a show. All of my best ideas for WordPress have always come from the intersection of different fields, different areas, and I think that&#8217;s true of most great art, most great software, most great anything. So if you can get out there and keep, the WordPress stuff or whatever you&#8217;re working on will be in the back of your mind anyway, so if you can kind of focus on something else for a little while, actually really it&#8217;s fun.</p>\n<p>Brian Krogsgard: It is.</p>\n<p>Matt Mullenweg: I can&#8217;t wait to see what you do. As always, let me know if I can ever be of help.</p>\n<p>Brian Krogsgard: Well, thank you very much. So a couple of business-y things. One is, what&#8217;s your biggest product right now, from an Automatic perspective? Are you guys seeing a lot of growth in the WooCommerce space, or is dot com still the main revenue driver? What are you seeing there?</p>\n<p>Matt Mullenweg: Sure, let me just think through what I can say publicly.</p>\n<p>Brian Krogsgard: When are you filing your S-1, Matt?</p>\n<p>Matt Mullenweg: Yeah, we make the same joke in Automatic that they made at Apple, which is we&#8217;re a ship that leaks from the top.</p>\n<p>Brian Krogsgard: Hey, I have to commend you, as someone who doesn&#8217;t like it but I can appreciate that this is the case. You guys are pretty good about being tight-lipped on the leaky boat side of things, so it&#8217;s a tight ship. I don&#8217;t get near as many of the leaks as I would like out of Automatic.</p>\n<p>Matt Mullenweg: Well, I think a big part of that is just most of what we do is in the open. If you want to see the pricing tests we&#8217;re running on the new blogger and e-commerce plan that we just launched on WordPress.com, it&#8217;s in the Calypso GitHub so you can see which prices we&#8217;re charging which people, and how the test is going, and what percentage it&#8217;s going out to. Kind of, it&#8217;s all out there. WordPress.com is still the largest, and it&#8217;s still growing like a weed. I think in 2018 WooCommerce will actually grow faster in a year over year percentage, which is kind of what I started saying. We&#8217;re starting to see what I predicted when we actually first brought WooCommerce in, which is that the e-commerce opportunity has the potential to be bigger than all of the rest of Automatic&#8217;s businesses combined.</p>\n<p>Brian Krogsgard: Yeah, what&#8217;s Shopify, like eight billion plus market cap, maybe 15? I don&#8217;t know. I think they doubled their size in 2018.</p>\n<p>Matt Mullenweg: Yeah, market cap is just vagaries of the market, but revenue, they&#8217;ll be about a billion dollars this year. So I think it&#8217;s always good to look at kind of, when sort of comparing companies, look at the revenue not just the market cap.</p>\n<p>Brian Krogsgard: Sure.</p>\n<p>Matt Mullenweg: So they&#8217;ll be at a billion dollars and still growing at a really, really good rate. Now, the other reality is that nothing that we do is completely disconnected. A lot of the WooCommerce growth and increasing user experience is sort of amplified, I think, because we&#8217;ve been doing it in Jetpack, which is also amplified by running Jetpack code on WordPress.com and having that sort of stream of new users that are coming there, and so we see the problems that they&#8217;re having, and the struggles, or we build the infrastructure.</p>\n<p>Matt Mullenweg: You asked about data structures earlier. I think one thing that we&#8217;ll start to see a lot more of in WordPress, and actually a very common feature of Jetpack that people don&#8217;t know about, that the Jetpack business plan, you can have full Elasticsearch version of your site. So there are certain use cases for which I don&#8217;t think MySQL is the best medium with which to address or query your data, and Elasticsearch is pretty much the cat&#8217;s meow. So the fact that we can in real time, create real time Elasticsearch indexes for every single Jetpack business site, which only costs $300 per year. Before that, it used to cost &#8230; Actually, I think VIP used to charge $5,000 or $10,000 a year for this, maybe even a couple grand a month, actually. Now we can do it for $300 per year.</p>\n<p>Brian Krogsgard: Wow.</p>\n<p>Matt Mullenweg: And that&#8217;s just one of the features in Jetpack Business. That&#8217;s in addition to the real time backup and the activity log and all the other things, the security restores. It just shows that we&#8217;re really surfing the outer edge of Moore&#8217;s Law, and I think that the stuff that we&#8217;re going to be able to do over the next few years is going to be pretty amazing, and I&#8217;m excited about Automatic. We also just moved DNS Perf, we moved back into second place for fastest DNS service, so by the way, way ahead of Amazon, way ahead of Google, and second only to Cloudflare, which Automatic&#8217;s network is tiny but mighty. Cloudflare invests I think over 100 million dollars per year in capex, building out their data centers in their kind of points of presence. We&#8217;ve reached a number two performance ranking with a fraction of that investment, so very proud of that team, very proud of all the folks at Automatic that are really building this out. By the way, then that benefits all the users of Jetpack Photon, the CDN, just so much cool stuff happening.</p>\n<p>Brian Krogsgard: That&#8217;s awesome. I heard recently that you all have also been able to lower some of your prices for VIP as you&#8217;re deploying like VIP Go and some of that stuff with scalable Websites. Back when I had my hands in a few VIP sites I think the lowest pricing back then was maybe $3,000 to $4,000 a month, and now you can do it as low as $1,000 a month and you all provide a lot for that, so that&#8217;s impressive.</p>\n<p>Matt Mullenweg: That sounds about right, yeah. I&#8217;m not up on the latest there, but fundamentally my business philosophy is to get the best stuff in the hands of as many users for as low a price as possible, and we&#8217;re just relentless in kind of cutting the costs, bringing things down, trying to leverage the best and newest technology to do so.</p>\n<p>Brian Krogsgard: How are you attacking the very high end, so that a store that may grow up on WooCommerce doesn&#8217;t feel like they have to leave WooCommerce once it hits a certain scale? One of the things that I feel like people have been, I&#8217;ve been hearing from consultants especially, is that they get to a certain size and then they&#8217;re really struggling with WooCommerce, and then something like Shopify ends up being the answer. How is WooCommerce going to compete in that realm to be the platform for Macy&#8217;s or who knows what? Some big company with lots of orders and lots of stuff, so that you can keep them throughout the life cycle?</p>\n<p>Matt Mullenweg: Yeah, I think my take on that problem, because ultimately what we want to do is be more scalable in Shopify and also a better user experience, and right now I would say they&#8217;re ahead in both. There hasn&#8217;t been as good a feedback loop. The thing that made WordPress so scalable was there was a tight feedback loop between the host, the agencies building the biggest sites, WordPress.com itself being a big site, and the core development. So that meant that when we had bottlenecks, we were able to solve them often in core in ways that were ultra scalable in Webscale.</p>\n<p>Matt Mullenweg: WordPress.com is on its own one of the largest sites on the Internet, so that&#8217;s the same software that you can download and use, which is kind of wild. For WooCommerce, that loop isn&#8217;t as strong so one of the things I&#8217;ve been encouraging the team to try to do myself is get a tighter loop between the host and the people building the big sites and the WooCommerce core team, so that they can figure out versus having five different plugins that try to address the scalability in different and often subpar ways, really get that built into core, with the sort of Web scale, knowing everything we&#8217;ve known in 15 years of building WordPress, what&#8217;s going to make it so it can scale to thousands of orders per second, hundreds of millions of rows.</p>\n<p>Brian Krogsgard: Two more questions, real quick.</p>\n<p>Matt Mullenweg: We can do so, by the way. It&#8217;s a very tractable problem. We will solve that. Solving that is something that will happen within the next six to 18 months. Solving the user experience to catch up with Shopify is also improving the user experience, or BigCommerce rather, I think will take longer. That&#8217;s more of a five to 10 year goal.</p>\n<p>Brian Krogsgard: I personally think that gives both the WordPress ecosystem, the WooCommerce ecosystem and Automatic directly a massive value proposition, if that can be accomplished. I think WordPress now people, you never feel like you have to leave WordPress because you got too big.</p>\n<p>Matt Mullenweg: Yeah.</p>\n<p>Brian Krogsgard: And as that can be accomplished, and that was a massive accomplishment for WordPress. For a long time that wasn&#8217;t true, and now that, if that can be done on the e-commerce side of things, or commerce broadly not just necessarily WooCommerce, I think that will be fantastic for everybody involved.</p>\n<p>Matt Mullenweg: By the way, I just want to point that out, just to pause. Think how little, how many other examples of software you can think of that the consumer version also works when you run it at an industrial global scale?</p>\n<p>Brian Krogsgard: I have no idea. I&#8217;m not very-</p>\n<p>Matt Mullenweg: It&#8217;s not very common. I think it&#8217;s one of the things the WordPress community should really be proud of, because that is highly unusual. And as we&#8217;re one of the only ultra-successful consumer open source startups, projects, communities, whatever, I think pointing to that sort of scalability is a big thing as well.</p>\n<p>Brian Krogsgard: So, one question is Automatic has investors. We just saw Slack, Lyft and Uber all file for becoming public companies. When I think, what&#8217;s the option for Automatic, one of however many successful startups where you have investors, they know you&#8217;re a successful startup. They know that there&#8217;s opportunity for them to succeed in that. That&#8217;s long-term revenue stream, remaining a private company. It&#8217;s private equity. It&#8217;s going public, or it&#8217;s acquisition. Do you have any thoughts in terms of what makes you happiest as a company and as a business owner, and what do you think is best for the way Automatic interfaces with the broader WordPress community?</p>\n<p>Matt Mullenweg: It&#8217;s hard for me to imagine being a public company CEO, any harder than leading an open source project.</p>\n<p>Brian Krogsgard: I&#8217;ve thought about that a great deal. I think you actually fit the mold for what Wall Street might like in terms of the leader of a public company. I will say, that&#8217;s my bet. My best is one day Automatic would go public, and we figure out how that works in terms of all the private, public components and the open source side of things. But yeah, I&#8217;m curious-</p>\n<p>Matt Mullenweg: I think it&#8217;s actually a possibility. By the way, I could see other WordPress companies going public, probably WPEngine is the closest to the gates there.</p>\n<p>Brian Krogsgard: Well good, GoDaddy and EIG are public.</p>\n<p>Matt Mullenweg: They are, yeah, so there will be other open source WordPress either based or WordPress will be a part of their business public companies, likely before Automatic as well. I think that&#8217;s a great path for us. Automatic has investors. They are minority investors, so the sort of existential future of the company is in the hand of myself and the other people who own the majority of the shares of Automatic. I think there&#8217;s lots of options. The people you point to, Uber or Lyft, Slack, et cetera, to varying degrees have built some pretty impressive things. I admire some more than others, but also have reached a scale that&#8217;s kind of far beyond where companies generally go public.</p>\n<p>Brian Krogsgard: Yeah, they really have. It&#8217;s been-</p>\n<p>Matt Mullenweg: What that illustrates is that the private market is actually a lot more liquid and has a lot more capital available for when and how that needs the company or the ecosystem or whatever to grow.</p>\n<p>Brian Krogsgard: So I could surmise from that that you don&#8217;t feel like there&#8217;s a rush?</p>\n<p>Matt Mullenweg: I won&#8217;t even speak to my own personal things, but say just in the industry there&#8217;s less of a rush, so that is the plus and minus of so much capital moving from the public markets into the private markets. So people like Fidelity, T. Rowe Price et cetera that used to only do public companies now invest in private companies. That&#8217;s great for the companies, because by the way as a private company, you don&#8217;t have the kind of quarterly scrutiny that you do when you&#8217;re public, and I think it&#8217;s actually easier to out-innovate and out-flank public companies when you are private, which is one thing I personally like. But that said, it does keep more of that growth in the hands of only sophisticated investors.</p>\n<p>Brian Krogsgard: I completely agree.</p>\n<p>Matt Mullenweg: So there is a lot more of that upside that is no longer in the hands of what is commonly referred to as the retail investor. I would love for anyone who loves Automatic&#8217;s products to be able to own a share of the company, even if it&#8217;s just one share. That&#8217;s not really possible under the current sort of regulatory frameworks, and for good reasons, by the way. As we saw with the kind of ICO craze, there&#8217;s a reason all these protections for consumers and public market, public company standards exist.</p>\n<p>Matt Mullenweg: But in the meantime, at Automatic we will continue to hold ourselves to public company standards, but really build in an extremely long-term way. If there&#8217;s an idol there, I&#8217;d say it&#8217;s Amazon, and try to make the best possible user experience, best possible products. If we continue to do that, I think from a business point of view we will have an array of options available to us and any number of choices.</p>\n<p>Brian Krogsgard: And as a leader yourself of the WordPress community and Automatic, what&#8217;s one big thing that you learned this year that you hope to improve upon in 2019?</p>\n<p>Matt Mullenweg: Hmm, I know you&#8217;re probably thinking about like a big thing, but I&#8217;m actually going to say a small thing.</p>\n<p>Brian Krogsgard: It can be small.</p>\n<p>Matt Mullenweg: It&#8217;s really important, which is how much you can &#8230; What is the one thing everyone listening to this is doing right now?</p>\n<p>Brian Krogsgard: Focusing, I hope?</p>\n<p>Matt Mullenweg: Breathing.</p>\n<p>Brian Krogsgard: Oh, okay.</p>\n<p>Matt Mullenweg: And you probably weren&#8217;t thinking about it, but now you are thinking about it. You&#8217;re breathing right now.</p>\n<p>Brian Krogsgard: I am.</p>\n<p>Matt Mullenweg: And it is amazing how much you can influence your mindset, your state of mind, your mood, your everything, through breath. Just as an exercise, where everyone puts their hand on their belly and takes a big breath and pushes your hand out as you take it in, Brian, are you doing it?</p>\n<p>Brian Krogsgard: Oh, sorry. I do. I feel good.</p>\n<p>Matt Mullenweg: It has an immediate effect on you.</p>\n<p>Brian Krogsgard: It does. You know, actually that&#8217;s how we discipline our son often. A three-year-old is a very emotional being, so if they&#8217;re upset one of the first things that you can do with them is just tell them, &#8220;Let&#8217;s take a deep breath together.&#8221; So you take that deep breath and the response is also very immediate, the way they calm down and settle down and think more clearly because they took that breath, so that&#8217;s interesting.</p>\n<p>Matt Mullenweg: That&#8217;s all of us, and also by the way, this is not something new. This goes back thousands of years.</p>\n<p>Brian Krogsgard: You didn&#8217;t just invent this?</p>\n<p>Matt Mullenweg: No, no, you know there&#8217;s so many, there&#8217;s so much prior art here, but I&#8217;d encourage people to check it out. Also check out, when the videos go up, the Joanna Barsh talk, and Alexis Lloyd both had sort of almost like guided meditations and exercises. I think this is one of the next big areas for people who aren&#8217;t familiar with to discover. They&#8217;re actually really, really powerful, and it&#8217;s been huge for me. In an extraordinarily busy and what might otherwise be seen as extremely stressful year, it was actually one of my best years of my life.</p>\n<p>Brian Krogsgard: Awesome.</p>\n<p>Matt Mullenweg: I do have to watch a clock, and I do have to run now.</p>\n<p>Brian Krogsgard: That&#8217;s fine. I&#8217;m happy to hear that. Thank you for spending so much time with me. It was great talking to you, and we&#8217;ll catch everybody next time.</p>\n<p>Matt Mullenweg: Thank you. I&#8217;ll see you all, and thank you to all Post Status readers.</p>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 12 Dec 2018 14:45:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Brian Krogsgard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WPTavern: State of the Word 2018: WordPress Embraces the Block Editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86291\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wptavern.com/state-of-the-word-2018-wordpress-embraces-the-block-editor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:13953:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/12/PIC_20181208_161427272.jpeg?ssl=1\"><img /></a>photo credit: WP Tavern</p>\n<p>WordCamp US kicked off in Nashville over the weekend, following the release of WordPress 5.0. In the first 48 hours, 5.0 had been downloaded more than 2.8 million times. It passed 3 million Saturday night.</p>\n<p>&#8220;There&#8217;s been a lot that&#8217;s been going on, so I&#8217;d like to allow WordPress the chance to re-introduce itself,&#8221; Matt Mullenweg said during the preamble of his <a href=\"https://www.youtube.com/watch?v=aWlfp-1Q19I\" rel=\"noopener\" target=\"_blank\">State of the Word</a> address. He invoked the four freedoms as the project&#8217;s constitution and called the community back to its roots. </p>\n<p>“It&#8217;s the reason we&#8217;re here,” Mullenweg said. “WordPress isn&#8217;t a physical thing; it&#8217;s not a set of code. It&#8217;s kind of an idea.  WordPress is backed by the full faith and credit of every person and company that depends on it.”  </p>\n<p>He reiterated the project’s mission to democratize publishing and recast his vision for advancing the open web.</p>\n<p>&#8220;Like I said a few years ago, we&#8217;re building a web operating system, an operating system for the open, independent web and a platform that others can truly build on,” Mullenweg said.</p>\n<p>WordPress’ 32.5% market share and its commercial ecosystem, which Mullenweg estimates at $10 billion/year,  give the project the resources to make a powerful impact on the future of the web. </p>\n<h3>Mullenweg Builds a Compelling Case for the Block Editor</h3>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/12/wcus-sotw.jpg?ssl=1\"><img /></a>photo credit: <a href=\"https://twitter.com/WordCampUS/status/1071531659579789313\">WCUS Photography Team</a></p>\n<p>Mullenweg drove home the necessity of Gutenberg by showing a selection of videos where new users struggled to accomplish simple tasks in the old editor.  Their experiences were accompanied by painful commentary:</p>\n<ul>\n<li>&#8220;This feels like writing a blog back in 2005.”</li>\n<li>&#8220;This was very finnicky; this does not work.”</li>\n<li>&#8220;How would I add a caption? I have no clue.”</li>\n</ul>\n<p>Mullenweg described how he used to effortlessly switch back and forth between the visual and HTML editors prior to WordPress 5.0 but realized that not all users are able to do this.  </p>\n<p>”This has been our editor experience for over a decade now and many of us have learned to deal with it,” he said.</p>\n<p>He followed up with a video demonstrating how much easier these tasks are in the new block editor and identified blocks as the way forward for WordPress.</p>\n<p>Some attendees commented after the fact on how the user testing videos, paired up against an expert using Gutenberg, seemed unbalanced and they would have liked to see videos of new users attempting the same tasks in the new editor. The goal of that segment, however, seemed to be more aimed at communicating the need for Gutenberg and the possibilities it opens up once users have had the chance to grow into it.</p>\n<h3>Mullenweg Urges Attendees to &#8220;Learn Blocks Deeply&#8221;</h3>\n<p>Millions of early adopters have already embraced the block editor during phase 1 of the Gutenberg project, which closed out with 1.2 million active installs and 1.2 million posts written. There have already been 277 WordCamp talks on Gutenberg, 555 meetup events focused on the new editor, and more than 1,000 blog posts discussing it.</p>\n<p>Blocks are taking over the world of WordPress. Version 5.0 shipped with 70 native blocks and there are already more than 100 third-party blocks in existence and 1,000 configurations related to that. </p>\n<p>“Blocks are predictable, tactile, and can be simple like a text block, or as rich as an e-commerce interface,” Mullenweg said. He described them as the new DNA of WordPress, from which users can create anything they can imagine. </p>\n<p>Mullenweg showcased two sites built using the block editor, the <a href=\"https://theindigomill.com/\" rel=\"noopener\" target=\"_blank\">Indigo Mill</a> and <a href=\"https://www.luminasolar.com/\" rel=\"noopener\" target=\"_blank\">Lumina Solar</a>. These beautiful sites open the imagination to what Gutenberg is capable of bringing to websites.</p>\n<p>WordPress.org will be highlighting plugins and themes to push the block ecosystem forward. There are also more than 100 Gutenberg-ready themes available to users on the directory and <a href=\"https://wordpress.org/plugins/browse/blocks/\" rel=\"noopener\" target=\"_blank\">a new Gutenberg block tag that is currently live for plugins</a>. It will also be available for themes soon. </p>\n<p>Mullenweg highlighted tools like the create-guten-block toolkit, Block Lab, and Lazy Blocks that are making it easy for developers to create their own blocks. Block collections and libraries are also emerging. He said one of the priorities for 2019 is to build a WordPress.org directory for discovering blocks and a way to seamlessly install them.</p>\n<p>Building on the homework he gave to WordPress developers in 2015, to “<a href=\"https://wptavern.com/state-of-the-word-2015-javascript-and-api-driven-interfaces-are-the-future-of-wordpress\" rel=\"noopener\" target=\"_blank\">Learn JavaScript Deeply</a>,” Mullenweg urged the community to “Learn Blocks Deeply.”  Blocks provide a host of opportunities to improve the user experience beyond what Gutenberg’s creators could have imagined in the beginning.</p>\n<h3>Gutenberg Phase 2: Navigation Menu Block, Widget blocks, Theme Content Areas</h3>\n<p>Mullenweg announced the next phases for the Gutenberg project. Phase 2 has already begun and focuses on site customization, expanding the block interface to other aspects of content management.  This includes creating a navigation menu block. Reimagining menus is will be challenging, and Mullenweg said they may even get renamed during the process.</p>\n<p>Phase 2 goals also include porting all widgets over to blocks and registering theme content areas in Gutenberg. An early version of phase 2 will be in the Gutenberg plugin so anyone wanting to be part of testing can reactivate it.</p>\n<p>During the Q&#038;A time, one attendee asked a question about how this phase seems to include very little about making layout capabilities more robust. He asked if Mullenweg plans to let those the marketplace handle those layout decision or if core will define a layout language. Mullenweg responded that it may be more prudent to see what others in the ecosystem are doing and cherry pick and adopt the best solutions. He also remarked that it would be exciting if users could switch between different page builders in the future and not lose their content. </p>\n<h3>Gutenberg Phases 3 and 4: Collaboration and Core Support for Multilingual Sites</h3>\n<p>Mullenweg announced that Gutenberg phase 3, targeted for 2020, will focus on collaboration, multi-user editing, and workflows. Phase 4 (2020+) is aimed at developing an official way for WordPress to support multilingual sites. When asked what that will look like from a technical standpoint, given the many existing solutions already available, Mullenweg said he didn’t want to prescribe anything yet, as it’s still in the experimental stage.</p>\n<p>Other major announcements included a highly anticipated bump in the minimum PHP version required for using WordPress. By April 2019, PHP 5.6 will be the minimum PHP version for WordPress, and by December 2019, the requirement will be updated to PHP 7.</p>\n<p>WordPress releases are going to come faster in the future, as Gutenberg development has set a new pace for iteration. Mullenweg said he would like WordPress to get to the point where users are not thinking about what version they are on but instead choose a channel where they can easily run betas or the stable version.</p>\n<h3>Mullenweg Acknowledges Mistakes Made and Lessons Learned in the 5.0 Release Process</h3>\n<p>WordPress 5.0 was one of the longest and most controversial release cycles in the project’s history. Those outside the inner circle of decision-making endured a great deal of uncertainty, as dates were announced and then missed, with secondary dates thrown out in favor of pushing 5.0 out with just three days’ notice. </p>\n<p>“We were scared to announce a new release date after missing our previous one,” Mullenweg said, acknowledging the controversial release date. He said this seemed to create a lot of fear and uncertainty until they announced a new date. The dates seemed to come out of the blue and were stressful for the community. </p>\n<p>Mullenweg highlighted the lessons they learned in the process of releasing 5.0: </p>\n<ul>\n<li>Need the various teams across WordPress working together better</li>\n<li>Need to keep learning JavaScript, even more deeply</li>\n<li>Importance of triage and code freezes</li>\n<li>Always announce release dates</li>\n</ul>\n<p>Mullenweg noted that WordPress 5.0’s beta releases were tested 100 times more than other releases, which he said contributed to Gutenberg becoming more robust before landing in 5.0. However, these positives seemed to be overshadowed by several critical breakdowns in communication that many feel betrayed the community’s trust.</p>\n<p>He noted that people used the plugin review system as a way to vote on Gutenberg and that perhaps the community needs a different medium for expressing those kinds of things. Users did this because they felt it was one of the only feedback mechanisms where they had a voice. Negative reviews piled on in the early days of the plugin’s development but they continued steadily throughout the feature plugin’s journey into core. After 5.0 was released, negative <a href=\"https://wordpress.org/support/plugin/gutenberg/reviews/\" rel=\"noopener\" target=\"_blank\">reviews on the Gutenberg plugin</a> have continued to pour in, and its rating has fallen to 2.2/5 stars.</p>\n<h3>Growing Pains and a Call for Transparency</h3>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/12/wcus2018.jpg?ssl=1\"><img /></a>photo credit: David Bisset for <a href=\"https://poststatus.com/\">Post Status</a></p>\n<p>Mullenweg said that Gutenberg development happened entirely in the public eye, surfacing many challenges associated with developing open source software in public. The code was public, but the most important decisions were made behind closed doors. This was compounded by the developer community voicing frustrations during core dev chats and on social media. </p>\n<p>During the Q&#038;A segment, several audience members called for more transparency in the release process, noting that most of the posts and announcements regarding 5.0 came from Automattic employees. Morten Rand-Hendriksen, who has become somewhat of a community firebrand at WordCamp Q&#038;A’s, received applause for his question regarding the use of the word “we” in connection to posts on the make blogs. He pressed Mullenweg for more insight into where these decisions are made. </p>\n<p>Mullenweg said the “we” he meant in regards to 5.0 release dates referred to a private channel where the release leads discussed it. He said with so many people showing up to the dev chats, the discussions became difficult.</p>\n<p>&#8220;I don&#8217;t just go in a cave and come up with these things,&#8221; Mullenweg said. “A lot of people were showing up [to dev chats] who had never contributed to WordPress before and were crowding out the discussion of the core team.” He also said the private conversations were “every bit as feisty as the public one,” except there weren’t any drive-by opinions. </p>\n<p>To those on the outside, these meetings appeared to be secret, as they were never referenced or summarized on the make blogs. This left the developer community wondering where these decisions were coming from and whether or not they had a voice.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Gutenberg was developed in public, but too many decisions were made in silos and not clearly communicated. This can be improved for 5.1 and beyond <a href=\"https://twitter.com/hashtag/WCUS?src=hash&ref_src=twsrc%5Etfw\">#WCUS</a></p>\n<p>&mdash; K. Adam White (@kadamwhite) <a href=\"https://twitter.com/kadamwhite/status/1071539824358764544?ref_src=twsrc%5Etfw\">December 8, 2018</a></p></blockquote>\n<p></p>\n<p>During the Q&#038;A, Mulllenweg said he listened to vigorous discussion and diverse viewpoints from release leads coming from different companies, while gathering as much information as possible from reading reviews, blog posts, and comments from the community. He described this process as part of the art of trying to make sense of all the different things people are saying and balance that.</p>\n<p>Supporting a BDFL-led project requires a certain amount of trust that the leadership is listening. Over the past several weeks Mullenweg has made a strong effort to <a href=\"https://wptavern.com/mullenweg-ramps-up-communication-ahead-of-wordpress-5-0-release-rc2-now-available\" rel=\"noopener\" target=\"_blank\">keep the channels of communication open</a>.  </p>\n<p>The painful user testing videos Mullenweg shared demonstrated how desperately WordPress needed to grow out of its old editor. It isn’t often that core makes changes that affect nearly every corner of the WordPress ecosystem at the same time. This experience came with its fair share of growing pains. Despite communication missteps during the 5.0 release process, Mullenweg has successfully navigated the project through this rocky transition. Although WordCamp US attendees seemed road weary after 5.0, they were united by a shared desire to move forward and continue working together with the leadership that has kept WordPress on the course of growth and improvement for the past 15 years.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Dec 2018 16:23:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Matt: State of the Word 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=48685\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://ma.tt/2018/12/state-of-the-word-2018/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1048:\"<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Over the weekend I was in Nashville with over a thousand other WordPress enthusiasts. I met a ton of people, learned a lot, and was able to share the annual State of the Word address with the audience, which is a big summary of what WordPress has been up to and where it&#8217;s going. This year we covered user testing, Gutenberg, 5.0, the future phases of Gutenberg, all the latest and greatest blocks, new minimum PHP requirements, the adoption of 5.0, and some event and community updates. You can also <a href=\"https://www.slideshare.net/photomatt/wordpress-state-of-the-word-2018\">see just the slides</a>. The <a href=\"https://www.youtube.com/watch?v=v2aNNlC8TUE\">Q&amp;A is here in a separate video</a>.</p>\n\n\n\n<p>If you&#8217;d like a text summary and commentary on the speech, <a href=\"https://poststatus.com/state-of-the-word-2018/\">Post Status</a> and <a href=\"https://wptavern.com/state-of-the-word-2018-wordpress-embraces-the-block-editor\">WP Tavern</a> both have good write-ups.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Dec 2018 05:00:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"Post Status: Matt Mullenweg’s State of The Word, 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://poststatus.com/?post_type=poststatus_notes&p=49929\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://poststatus.com/state-of-the-word-2018/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8440:\"<p>Matt started by “reintroducing WordPress” and the four freedoms, stressing that “WordPress isn&#8217;t a physical thing or code, it&#8217;s an idea.” Additionally, a “robust commercial ecosystem” supports WordPress, and Matt noted that current estimates indicate WordPress generates about $10 Billion (USD) annually.</p>\n<p>After two years of development and just after WordPress 5.0 officially launched, it&#8217;s not surprising the focus of Matt&#8217;s talk was on Gutenberg. “We&#8217;ve gotten a lot of questions about why we are doing certain things&#8230; why we are working on Gutenberg. And it&#8217;s good to return to users to find that,” Matt acknowledged.</p>\n<h3>Enhancing editor usability</h3>\n<p>A video of new WordPress users testing the classic editor (WordPress 4.9) was shown projected on the big screens over the stage. These clips primarily showed people having difficulties with relatively simple tasks in the editor.</p>\n<p>Matt&#8217;s point was that we&#8217;ve become accustomed to the custom editor&#8217;s quirks, but blocks offer a better experience — from copying and pasting from Microsoft Word and Google Docs into WordPress to quickly creating a responsive website.</p>\n<h3>Community Gutenberg adoption</h3>\n<p>Matt continued with a summary of how Gutenberg has performed in Phase 1 of its release. Before the WordPress 5.0 release, 1.2 million active installs and 1.2 million posts were published, with about 39,000 posts written daily. Phase 1 had 8,684 commits and over 340 contributors. The &#8216;Gutenberg&#8217; tag is already available for plugins in the WordPress repo, and it will be “coming soon” for themes.</p>\n<p>Notably, over 100 Gutenberg themes are already present in the WordPress repo — including the new Twenty Nineteen theme. Matt highlighted two websites — <a href=\"http://theindigomill.com\">The Indigo Mill</a> and <a href=\"http://luminasolar.com\">Lumina Solar</a> — as examples where Gutenberg blocks have been used well to create effective layouts. Matt riffed on the &#8220;Learn JavaScript Deeply&#8221; mantra by repeating &#8220;Learn Blocks Deeply.&#8221; Blocks are the DNA of the new editor. Currently, 70 native blocks and over 100 third-party blocks exist for Gutenberg.</p>\n<h3>Community Gutenberg development</h3>\n<p>He highlighted some of the third party blocks in the wild:</p>\n<ul>\n<li><a href=\"https://yoast.com/yoast-seo-8-0-introducing-the-yoast-seo-gutenberg-sidebar-a-revamped-meta-box/\">Yoast SEO</a></li>\n<li><a href=\"https://github.com/kevinbazira/algori-360-image\">360 Image</a></li>\n<li><a href=\"https://www.ampproject.org/latest/blog/the-official-amp-plugin-for-wordpress/\">Google AMP w/ Gutenberg Integration</a></li>\n<li><a href=\"https://wordpress.org/plugins/dropit/\">Drop It</a></li>\n<li><a href=\"https://wordpress.org/plugins/ecwid-shopping-cart/\">Ecwid Ecommerce Shopping Cart</a></li>\n<li><a href=\"https://woocommerce.com/posts/making-it-easier-to-add-products-to-posts-and-pages-with-the-products-block-for-gutenberg/\">WooCommerce Products Block</a></li>\n<li><a href=\"https://www.bigcommerce.com/wordpress-ecommerce-plugin/\">BigCommerce</a></li>\n<li><a href=\"https://www.wpzoom.com/plugins/new-plugin-released-recipe-card-blocks-for-gutenberg/\">Recipe Card Blocks</a></li>\n<li><a href=\"https://wordpress.org/plugins/tarot/\">Tarot</a></li>\n<li><a href=\"https://twitter.com/dmsnell23/status/1063126946350096389\">Sketch Block</a></li>\n<li><a href=\"https://jetpack.com/support/jetpack-blocks/form-block/\">Jetpack Form Block</a></li>\n<li><a href=\"https://sortabrilliant.com/guidepost/\">Guidepost</a></li>\n<li><a href=\"https://sortabrilliant.com/ghostwriter/\">Ghost Writing</a></li>\n<li><a href=\"https://sortabrilliant.com/spoileralert/\">Spoiler Alert</a></li>\n<li><a href=\"https://wordpress.org/plugins/caxton/\">Caxton Shape Divider Block</a></li>\n</ul>\n<p>Matt mentioned several block libraries and frameworks that have appeared:</p>\n<ul>\n<li><a href=\"http://editorblockswp.com\">editorblockswp.com</a></li>\n<li><a href=\"http://gutenberghub.com\">gutenberghub.com</a></li>\n<li><a href=\"http://gutenbergcloud.org\">gutenbergcloud.org</a></li>\n<li><a href=\"https://getblocklab.com\">getblocklab.com</a></li>\n<li><a href=\"https://wordpress.org/plugins/lazy-blocks/\">Lazy Blocks</a></li>\n</ul>\n<h3>Mobile Apps</h3>\n<p>Matt gave the audience an update regarding the WordPress native mobile apps: In the past month, app users published 1.3M posts and uploaded 3.1M photos and videos. Gutenberg will be going into the mobile apps, with a beta release expected in February 2019; I heard February 22nd is the current target date for a beta release.</p>\n<h3>The Next Phases of Gutenberg</h3>\n<p>Matt highlighted the next phases of Gutenberg&#8217;s evolution, which included new information about Phases Three and Four:</p>\n<h4>Phase One</h4>\n<p>Fundamental blocks for writing and editing in the backend editor. These are complete now, although Matt later said that work on the editor would continue.</p>\n<h4>Phase Two</h4>\n<p>Customizing outside of the page/post content will be the next point of emphasis. It may include widgets, menus, and miscellaneous content. Matt notes that menus “will need a bit more experimentation”. &#8220;2019&#8221;.</p>\n<h4>Phase Three</h4>\n<p>Collaboration, multi-user editing in Gutenberg, and workflows. The target for this to phase to be complete is “2020+.”</p>\n<h4>Phase Four</h4>\n<p>&#8220;An official way&#8221; for WordPress to support multilingual sites. Also slated for “2020+.”</p>\n<h3>Other Announcements</h3>\n<p>There were several non-Gutenberg tidbits of note:</p>\n<h4>Auto updates on major versions of WordPress</h4>\n<p>On a list of items to work on in 2019, Matt said he wanted to make it a goal to add optional auto-updates for plugins, themes, and major versions of WordPress.</p>\n<h4>Updated minimum PHP versions</h4>\n<p><a href=\"https://make.wordpress.org/core/2018/12/08/updating-the-minimum-php-version/\">A proposal written</a> by Gary Pendergast makes a case for WordPress to start updating its minimum PHP versions. The proposed plan is to move to PHP 5.6 by April 2019 and to PHP 7.0 by &#8220;as early as&#8221; December 2019. Notably, security support for PHP 5.6 expires in a few days, and the &#8220;end of life&#8221; for PHP 7.0 <a href=\"http://php.net/supported-versions.php\">just passed</a>.</p>\n<p>After Matt mentioned this proposal, it received an enormous amount of applause — far more applause than most of the Gutenberg news that came earlier, and Matt noticed. It is definitely welcome news!</p>\n<h4>WordPress release adoption</h4>\n<p>During the life of the WordPress 4.9 branch, there were over 173 million downloads with 68.4% of all known WordPress installs running 4.9.</p>\n<p>Matt notes that the early adoption numbers for WordPress 5.0 were very similar to WordPress 4.7, which was also a December release back in 2016.</p>\n<h4>Lessons learned in 2018</h4>\n<p>Matt took time to summarize the lessons he learned in 2018, starting with the need for teams to improve how they work together: “There should be no reason for accessibility, testing, and other teams not to be working together since these features should be a feature of everything we develop from the very beginning.” No doubt this came as a response to the concerns about accessibility in Gutenberg that surfaced before WordPress 5.0 was released.</p>\n<h3>Community Update</h3>\n<p>Matt offered some community-related data as well:</p>\n<ul>\n<li><strong>WordCamps:</strong> In 2018 there were 145 WordCamps in 48 countries, with over 45,000 tickets sold. A total of 1,300 organizers (a 33% increase!), 2,651 speakers, and 1,175 sponsors made it all possible.</li>\n<li><strong>Meetups:</strong> This year saw 50% member growth in meetup attendance, with over 687 meetup groups and 5,400 meetup events.</li>\n</ul>\n<p>And with that, he began Q&amp;A.</p>\n<p>You can view the <a href=\"https://www.youtube.com/watch?v=r5b-N2RmxS8\">State of the Word on YouTube</a> in full, and it should become available on WordPress TV very soon.</p>\n<div id=\"attachment_49969\" class=\"wp-caption aligncenter\"><img class=\"wp-image-49969 size-large\" src=\"https://cdn.poststatus.com/wp-content/uploads/2018/12/wcus-2018-sotw-5542-752x439.jpg\" alt=\"\" width=\"752\" height=\"439\" /><p class=\"wp-caption-text\">Photos by <a href=\"https://wpsessions.com\">Brian Richards</a>, for Post Status.</p></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 10 Dec 2018 15:45:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"David Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WPTavern: AMP Plugin for WordPress Version 1.0 Introduces Gutenberg-Integrated AMP Validation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86248\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://wptavern.com/amp-plugin-for-wordpress-version-1-0-introduces-gutenberg-integrated-amp-validation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2620:\"<p><a href=\"https://amp-wp.org/amp-plugin-1-0-stable-release/\" rel=\"noopener\" target=\"_blank\">Version 1.0</a> of the official AMP plugin for WordPress was released on the eve of WordCamp US, after two years in development by contributors from Automattic, XWP, and Google. This first stable version has a massive <a href=\"https://wordpress.org/plugins/amp/#developers\" rel=\"noopener\" target=\"_blank\">changelog</a> with 30 people credited for their contributions. The plugin is now considered ready for production and is active on more than 300,000 sites.</p>\n<p>Version 1.0 interfaces with the new editor that landed in WordPress 5.0. It will display warnings for AMP-invalid markup on a per-block basis, so users don&#8217;t have to guess what content is generating an issue.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/12/notices-in-blocks-1024x736.png?ssl=1\"><img /></a></p>\n<p>This release also introduces a compatibility tool that offers detailed information on AMP validation errors. It functions like a debugging page where users can see which URLs are generating errors, along with the site component (plugin, theme, or core) where the markup originates.</p>\n<p>Version 1.0 includes granular controls for selecting which templates will be served as AMP. This allows for a more gradual adoption across a site. Users can also opt for Native mode to have the entire site served as AMP.</p>\n<p>The plugin has been updated to support four of WordPress&#8217; default themes, including Twenty Fifteen, Twenty Sixteen, Twenty Seventeen, and Twenty Nineteen. The documentation for <a href=\"https://github.com/xwp/wordpress-develop/pull/307\" rel=\"noopener\" target=\"_blank\">how AMP was added to these bundled themes</a> serves as an example for how theme developers can make their own themes AMP-compatible. </p>\n<p>WordPress users who opt to use AMP on their sites will have a more successful experience with this version, thanks to the improved UI for handling AMP validation errors and the new interface for limiting AMP-support to certain templates.</p>\n<p>The AMP for WordPress project is also sporting a new <a href=\"https://amp-wp.org/\" rel=\"noopener\" target=\"_blank\">website</a> that features a collection of AMP-ready plugins and themes and a showcase of sites using AMP. It also has extensive <a href=\"https://amp-wp.org/documentation/getting-started/\" rel=\"noopener\" target=\"_blank\">documentation</a> for implementors, site owners, and developers. The site provides a central place for news and resources related to the project and its expanding ecosystem of compatible extensions.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 07 Dec 2018 06:51:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WPTavern: WordPress 5.0 “Bebo” Released, Lays A Foundation for the Platform’s Future\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86229\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wptavern.com/wordpress-5-0-bebo-released-lays-a-foundation-for-the-platforms-future\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9407:\"<p>In 2016 at WordCamp US in Philadelphia, PA, <a href=\"https://wptavern.com/state-of-the-word-2016-mullenweg-pushes-calypso-as-future-of-wordpress-interface-proposes-major-changes-to-release-cycle\">Matt Mullenweg announced</a> to the world that a new post and page editor would be coming to WordPress. &#8220;The editor does not represent the core of WordPress publishing,&#8221; Mullenweg said.</p>\n\n\n\n<p>His <a href=\"https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/\">vision of the editor</a> was geared towards a more block-based approach that unifies widgets, shortcodes, and other areas of WordPress. Today, that vision has become a reality with the <a href=\"https://wordpress.org/news/2018/12/bebo/\">release of WordPress 5.0</a> featuring <a href=\"https://matiasventura.com/post/gutenberg-or-the-ship-of-theseus/\">project Gutenberg</a>. <br /></p>\n\n\n\n<div class=\"wp-block-image\"><img />The New Editor in WordPress 5.0</div>\n\n\n\n<p>Instead of a large blank canvas, content is broken up into a series of individual blocks that are independent from the content as a whole. For example, you can edit the HTML of one block without it affecting other blocks. </p>\n\n\n\n<p>The editor comes with more than 16 blocks to add content. You can add more blocks by <a href=\"https://wptavern.com/gutenberg-block-library-provides-a-searchable-index-of-individual-blocks\">installing and activating plugins.</a><br /></p>\n\n\n\n<div class=\"wp-block-image\"><img />Some of the Blocks That Are Available in WordPress 5.0</div>\n\n\n\n<p>Each block typically has two areas where you can manipulate its content. The Toolbar, which displays when hovering over a block, and the Inspector located in the right-hand sidebar. The Inspector houses less-often used settings that require more screen space. <br /></p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Between the top toolbar, block toolbar, inspector, block mover, and hidden elements that don&#8217;t appear unless hovered over, there are a lot of user interface buttons. I suggest spending time crafting a test post to get familiar with what each button does. </p>\n\n\n\n<p>To see the new editor in action, check out the following demo video. </p>\n\n\n\nA Short Demo of The New Editor in Action\n\n\n\n<p>If you&#8217;re not ready for the new editor or discover incompatibilities with themes or plugins, you can install the <a href=\"https://wordpress.org/plugins/classic-editor/\">Classic Editor</a> plugin. This plugin will disable the new editor and replace it with the one in WordPress 4.9.8 and below. The WordPress development team <a href=\"https://make.wordpress.org/core/2018/11/07/classic-editor-plugin-support-window/\">has committed</a> to supporting the plugin until December 31st, 2021. </p>\n\n\n\n<p>Those who use assistive technology and experience accessibility issues with the new editor are encouraged to install the Classic Editor plugin until the issues are fixed. <br /></p>\n\n\n\n<h2>Twenty Nineteen: A Fully Compatible Default Theme<br /></h2>\n\n\n\n<p>WordPress 5.0 comes with a new default theme called <a href=\"https://make.wordpress.org/core/2018/10/16/introducing-twenty-nineteen/\">Twenty Nineteen</a> that is fully compatible with the new editor. It includes front-end and back-end styles to provide a What You See Is What You Get experience. It also supports the Wide and Full image alignment options. <br /></p>\n\n\n\n<div class=\"wp-block-image\"><img />Twenty Nineteen Front-End on the Left, Back-End on the Right</div>\n\n\n\n<p>You can see the theme in action on <a href=\"https://ma.tt/\">Matt Mullenweg&#8217;s site</a>.</p>\n\n\n\n<h2>What Happens to Existing Content?<br /></h2>\n\n\n\n<p>Content not created in the new editor is placed into a Classic block. This block mimics the old editor and provides users a choice to migrate it into blocks. However, migrating content into blocks is not required. Most content shouldn&#8217;t be affected by updating to WordPress 5.0. </p>\n\n\n\n<h2>Where to Get Help Using the New Editor</h2>\n\n\n\n<p>For new users, the editor might be an intuitive experience but for many WordPress veterans, it introduces a steep learning curve. After all, the previous editor has existed for more than 10 years. </p>\n\n\n\n<p>At the moment, there is a Gutenberg handbook for <a href=\"https://wordpress.org/gutenberg/handbook/designers-developers/\">Developers</a> and <a href=\"https://wordpress.org/gutenberg/handbook/contributors/\">Contributors</a> but not for Users. Work <a href=\"https://github.com/WordPress/gutenberg/issues/11252\">is underway</a> by the Docs team and other volunteer contributors to put together an initial document to release in 2019. </p>\n\n\n\n<p>Until the official handbook is published, you&#8217;ll need to seek help and education elsewhere.</p>\n\n\n\n<h3>WordPress 5.0 Essential Training</h3>\n\n\n\n<p>Morten Rand-Hendriksen, an educator for LinkedIn Learning has published <a href=\"https://www.linkedin.com/learning/wordpress-5-essential-training/?trk=insiders_23476852_learning\">a course</a> that walks users through the new editor. It&#8217;s available to view for free for the next three weeks. </p>\n\n\n\n<h3>Gutenberg Times<br /></h3>\n\n\n\n<p>Birgit Pauli-Haack has been keeping tabs on Gutenberg&#8217;s development for more than a year. <a href=\"https://gutenbergtimes.com\">Gutenberg Times</a> contains relevant information about the editor for <a href=\"https://gutenbergtimes.com/category/for-users/\">users</a> and <a href=\"https://gutenbergtimes.com/category/for-developers/\">developers</a>. </p>\n\n\n\n<h3>WordPress Support Forums<br /></h3>\n\n\n\n<p>Volunteers are standing by ready to answer your questions. If you think you&#8217;ve discovered a bug, incompatibility, or are experiencing trouble with the new editor, please post it in the <a href=\"https://wordpress.org/support/forum/how-to-and-troubleshooting/\">support forums</a>. </p>\n\n\n\n<h3>WordPress 5.0 Field Guide</h3>\n\n\n\n<p>The <a href=\"https://make.wordpress.org/core/2018/12/06/wordpress-5-0-field-guide/\">WordPress 5.0 field guide</a> provides important links and information for developers and users related to this release. <br /></p>\n\n\n\n<h2>WordPress 5.0 Is the Beginning of A New Journey</h2>\n\n\n\n<p>While WordPress 5.0 introduces a new editor, it also lays the foundation for what&#8217;s to come. The first phase of project Gutenberg was the editor. The second phase is the Customizer with a focus on full-site layouts. The third and fourth phases will be shared and discussed by Mullenweg at this year&#8217;s WordCamp US.</p>\n\n\n\n<p>The new editor is part of a long process to reinvent WordPress. Matías Ventura, Co-lead of the Gutenberg project succinctly explains why the need for Gutenberg exists. <br /></p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>WordPress has always been about the user experience, and that needs to continue to evolve under newer demands. Gutenberg is an attempt at fundamentally addressing those needs, based on the idea of content blocks. It’s an attempt to improve how users interact with their content in a fundamentally visual way, while at the same time giving developers the tools to create more fulfilling experiences for the people they are helping.</p><p>How can such a vision happen without dismantling, rebuilding, fragmenting, or breaking the WordPress ship that for over a decade has been carrying the thoughts, joys, and livelihoods of millions of people and more than a quarter of the web?</p><p>The ship, like Theseus’, needs to continue sailing while we upgrade the materials that make it. It needs to adapt to welcome new people, those that find it too rough to climb on board, too slippery a surface, too unwelcoming a sight, while retaining its essence of liberty. This is not an easy challenge—not in the slightest. </p><p>Indeed, <a href=\"https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/\">we called it Gutenberg for a reason</a>, for both its challenges and opportunities, for what it can represent in terms of continuity and change. It is an ambitious project and it needs the whole WordPress community to succeed.</p><cite><a href=\"https://matiasventura.com/post/gutenberg-or-the-ship-of-theseus/\">Matías Ventura, Co-lead of the Gutenberg project.<br /></a></cite></blockquote>\n\n\n\n<p>As the new editor <a href=\"https://wordpress.org/download/counter/\">makes its way</a> across the world, it will be interesting to see what the reactions are from users who experience it for the first time. It will also be interesting to see what the <a href=\"https://twitter.com/photomatt/status/1069327043618320385\">developer community builds</a> that takes the editor to new heights. </p>\n\n\n\n<p>WordPress 5.0 is the <a href=\"https://www.linkedin.com/pulse/gutenberg-morten-rand-hendriksen\">beginning of a new journey</a> for the project. One that will have bumpy roads, new discoveries, and plenty of opportunities to learn. So saddle up and keep your hands and arms inside the vehicle until it makes a complete stop. <br /></p>\n\n\n\n<p>WordPress 5.0 is named after <a href=\"https://en.wikipedia.org/wiki/Bebo_Vald%C3%A9s\">Bebo Valdés</a> who was a Cuban pianist, bandleader, composer and arranger. The release was led by Matt Mullenweg with Allan Cole, Anthony Burchell, Gary Pendergast, Josepha Haden Chomphosy, Laurel Fulford, Omar Reiss, Daniel Bachhuber, Matías Ventura, Miguel Fonseca, Tammie Lister, Matthew Riley MacPherson as co-leads. At least 423 people contributed to the release. <br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 06 Dec 2018 21:38:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"Dev Blog: WordPress 5.0 “Bebo”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6328\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/news/2018/12/bebo/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:43656:\"<h2>Say Hello to the New Editor</h2>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>We’ve made some big upgrades to the editor. Our new block-based editor is the first step toward an exciting new future with a streamlined editing experience across your site. You’ll have more flexibility with how content is displayed, whether you are building your first site, revamping your blog, or write code for a living.</p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Gutenberg.jpg?fit=2400%2C1200&ssl=1\" alt=\"\" class=\"wp-image-6331\" /></div>\n\n\n\n<h2>Building with Blocks</h2>\n\n\n\n<p>The new block-based editor won’t change the way any of your content looks to your visitors. What it will do is let you insert any type of multimedia in a snap and rearrange to your heart’s content. Each piece of content will be in its own block; a distinct wrapper for easy maneuvering. If you’re more of an HTML and CSS sort of person, then the blocks won’t stand in your way. WordPress is here to simplify the process, not the outcome.</p>\n\n\n\n\n\n\n\n<p>We have tons of blocks available by default, and more get added by the community every day. Here are a few of the blocks to help you get started:</p>\n\n\n\n<ul class=\"wp-block-gallery columns-4 is-cropped\"><li class=\"blocks-gallery-item\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Paragraph.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6340\" />Paragraph</li><li class=\"blocks-gallery-item\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Heading.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6341\" />Heading</li><li class=\"blocks-gallery-item\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Preformatted.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6342\" />Preformatted</li><li class=\"blocks-gallery-item\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Quote.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6343\" />Quote</li><li class=\"blocks-gallery-item\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Image.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6344\" />Image</li><li class=\"blocks-gallery-item\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Gallery.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6345\" />Gallery</li><li class=\"blocks-gallery-item\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Cover-Image.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6346\" />Cover</li><li class=\"blocks-gallery-item\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Video.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6347\" />Video</li><li class=\"blocks-gallery-item\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Audio.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6348\" />Audio</li><li class=\"blocks-gallery-item\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Column.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6349\" />Columns</li><li class=\"blocks-gallery-item\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-File.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6350\" />File</li><li class=\"blocks-gallery-item\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Code.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6351\" />Code</li><li class=\"blocks-gallery-item\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-List.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6352\" />List</li><li class=\"blocks-gallery-item\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Button.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6353\" />Button</li><li class=\"blocks-gallery-item\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-Embeds.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6354\" />Embeds</li><li class=\"blocks-gallery-item\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Block-Icon-More.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6355\" />More</li></ul>\n\n\n\n<h2>Freedom to Build, Freedom to Write</h2>\n\n\n\n<p>This new editing experience provides a more consistent treatment of design as well as content. If you’re building client sites, you can create reusable blocks. This lets your clients add new content anytime, while still maintaining a consistent look and feel.</p>\n\n\n\n\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>A Stunning New Default Theme</h2>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2018/12/twenty-nineteen.jpg?fit=2400%2C1600&ssl=1\" alt=\"\" class=\"wp-image-6358\" /></div>\n\n\n\n<p>Introducing Twenty Nineteen, a new default theme that shows off the power of the new editor.</p>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2018/12/block-editor-1024x683.jpg?resize=632%2C422&ssl=1\" alt=\"\" class=\"wp-image-6359\" /><div class=\"wp-block-media-text__content\">\n<h3 id=\"mce_9\">Designed for the block editor</h3>\n\n\n\n<p>Twenty Nineteen features custom styles for the blocks available by default in 5.0. It makes extensive use of editor styles throughout the theme. That way, what you create in your content editor is what you see on the front of your site.<br /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/typography-1.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6427\" /><div class=\"wp-block-media-text__content\">\n<h3 id=\"mce_18\">Simple, type-driven layout</h3>\n\n\n\n<p>Featuring ample whitespace, and modern sans-serif headlines paired with classic serif body text, Twenty Nineteen is built to be beautiful on the go. It uses system fonts to increase loading speed. No more long waits on slow networks!</p>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2018/12/twenty-nineteen-versatile.gif?w=632&ssl=1\" alt=\"\" class=\"wp-image-6361\" /><div class=\"wp-block-media-text__content\">\n<h3 id=\"mce_24\">Versatile design for all sites</h3>\n\n\n\n<p>Twenty Nineteen is designed to work for a wide variety of use cases. Whether you’re running a photo blog, launching a new business, or supporting a non-profit, Twenty Nineteen is flexible enough to fit your needs.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link has-text-color\" href=\"https://wordpress.org/themes/twentynineteen/\">Give Twenty Nineteen a try</a></div>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Developer Happiness</h2>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Protect.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6362\" /><div class=\"wp-block-media-text__content\">\n<h3 id=\"mce_34\">Protect</h3>\n\n\n\n<p>Blocks provide a comfortable way for users to change content directly, while also ensuring the content structure cannot be easily disturbed by accidental code edits. This allows the developer to control the output, building polished and semantic markup that is preserved through edits and not easily broken.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2018/12/Compose.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6363\" /><div class=\"wp-block-media-text__content\">\n<h3 id=\"mce_39\">Compose</h3>\n\n\n\n<p>Take advantage of a wide collection of APIs and interface components to easily create blocks with intuitive controls for your clients. Utilizing these components not only speeds up development work but also provide a more consistent, usable, and accessible interface to all users.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Create.jpg?w=632&ssl=1\" alt=\"\" class=\"wp-image-6364\" /><div class=\"wp-block-media-text__content\">\n<h3 id=\"mce_45\">Create</h3>\n\n\n\n<p>The new block paradigm opens up a path of exploration and imagination when it comes to solving user needs. With the unified block insertion flow, it’s easier for your clients and customers to find and use blocks for all types of content. Developers can focus on executing their vision and providing rich editing experiences, rather than fussing with difficult APIs.</p>\n</div></div>\n\n\n\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link has-text-color\" href=\"https://wordpress.org/gutenberg/handbook/\">Learn how to get started</a></div>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Keep it Classic</h2>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2018/12/Classic.jpg?fit=2400%2C1130&ssl=1\" alt=\"\" class=\"wp-image-6365\" /></div>\n\n\n\n<p>Prefer to stick with the familiar Classic Editor? No problem! Support for the Classic Editor plugin will remain in WordPress through 2021.</p>\n\n\n\n<p>The Classic Editor plugin restores the previous WordPress editor and the Edit Post screen. It lets you keep using plugins that extend it, add old-style meta boxes, or otherwise depend on the previous editor. To install, visit your plugins page and click the “Install Now” button next to “Classic Editor”. After the plugin finishes installing, click “Activate”. That’s it!</p>\n\n\n\n<p>Note to users of assistive technology: if you experience usability issues with the block editor, we recommend you continue to use the Classic Editor.</p>\n\n\n\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link has-text-color\" href=\"https://wordpress.org/plugins/classic-editor/\">Check out the Classic Editor</a></div>\n\n\n\n<p>This release is named in homage to the pioneering Cuban jazz musician <a href=\"https://en.wikipedia.org/wiki/Bebo_Vald%C3%A9s\">Bebo Valdés</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>The Squad</h2>\n\n\n\n<p>This release was led by <a href=\"http://ma.tt/\">Matt Mullenweg</a>, along with co-leads <a href=\"https://www.allancole.com/\">Allan Cole</a>, <a href=\"http://antpb.com/\">Anthony Burchell</a>, <a href=\"https://pento.net/\">Gary Pendergast</a>, <a href=\"https://josepha.blog/\">Josepha Haden Chomphosy</a>, <a href=\"https://laurel.blog/\">Laurel Fulford</a>, <a href=\"https://yoast.com/about-us/team/omar-reiss/\">Omar Reiss</a>, <a href=\"https://danielbachhuber.com/\">Daniel Bachhuber</a>, <a href=\"https://matiasventura.com/\">Matías Ventura</a>, <a href=\"https://lamda.blog/\">Miguel Fonseca</a>, <a href=\"https://tam.blog/\">Tammie Lister</a>, <a href=\"https://tofumatt.com/\">Matthew Riley MacPherson</a>. They were ably assisted by the following fabulous folks. There were 423 contributors with props in this release. Pull up some Bebo Valdés on your music service of choice, and check out some of their profiles:</p>\n\n\n<a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abdulwahab610\">Abdul Wahab</a>, <a href=\"https://profiles.wordpress.org/abdullahramzan\">Abdullah Ramzan</a>, <a href=\"https://profiles.wordpress.org/abhijitrakas\">Abhijit Rakas</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/afraithe\">afraithe</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais\">Ahmad Awais</a>, <a href=\"https://profiles.wordpress.org/ahmadawais\">ahmadawais</a>, <a href=\"https://profiles.wordpress.org/airathalitov\">Airat Halitov</a>, <a href=\"https://profiles.wordpress.org/ajitbohra\">Ajit Bohra</a>, <a href=\"https://profiles.wordpress.org/schlessera\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/albertomedina\">albertomedina</a>, <a href=\"https://profiles.wordpress.org/aldavigdis\">aldavigdis</a>, <a href=\"https://profiles.wordpress.org/akirk\">Alex Kirk</a>, <a href=\"https://profiles.wordpress.org/alexsanford1\">Alex Sanford</a>, <a href=\"https://profiles.wordpress.org/babaevan\">Alexander Babaev</a>, <a href=\"https://profiles.wordpress.org/xyfi\">Alexander Botteram</a>, <a href=\"https://profiles.wordpress.org/alexis\">alexis</a>, <a href=\"https://profiles.wordpress.org/alexislloyd\">Alexis Lloyd</a>, <a href=\"https://profiles.wordpress.org/arush\">Amanda Rush</a>, <a href=\"https://profiles.wordpress.org/amedina\">amedina</a>, <a href=\"https://profiles.wordpress.org/nosolosw\">Andr&#233;s</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andreamiddleton\">Andrea Middleton</a>, <a href=\"https://profiles.wordpress.org/euthelup\">Andrei Lupu</a>, <a href=\"https://profiles.wordpress.org/andreiglingeanu\">andreiglingeanu</a>, <a href=\"https://profiles.wordpress.org/aduth\">Andrew Duthie</a>, <a href=\"https://profiles.wordpress.org/sumobi\">Andrew Munro</a>, <a href=\"https://profiles.wordpress.org/anevins\">Andrew Nevins</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/androb\">Andrew Roberts</a>, <a href=\"https://profiles.wordpress.org/andrewtaylor-1\">Andrew Taylor</a>, <a href=\"https://profiles.wordpress.org/andrewserong\">andrewserong</a>, <a href=\"https://profiles.wordpress.org/apeatling\">Andy Peatling</a>, <a href=\"https://profiles.wordpress.org/ameeker\">Angie Meeker</a>, <a href=\"https://profiles.wordpress.org/annaharrison\">Anna Harrison</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/arnaudban\">ArnaudBan</a>, <a href=\"https://profiles.wordpress.org/arshidkv12\">Arshid</a>, <a href=\"https://profiles.wordpress.org/aprakasa\">Arya Prakasa</a>, <a href=\"https://profiles.wordpress.org/artisticasad\">Asad</a>, <a href=\"https://profiles.wordpress.org/mrasharirfan\">Ashar Irfan</a>, <a href=\"https://profiles.wordpress.org/asvinballoo\">Asvin Balloo</a>, <a href=\"https://profiles.wordpress.org/atanasangelovdev\">Atanas Angelov</a>, <a href=\"https://profiles.wordpress.org/b-07\">Bappi</a>, <a href=\"https://profiles.wordpress.org/bcolumbia\">bcolumbia</a>, <a href=\"https://profiles.wordpress.org/belcherj\">belcherj</a>, <a href=\"https://profiles.wordpress.org/blowery\">Ben Lowery</a>, <a href=\"https://profiles.wordpress.org/caxco93\">Benjamin Eyzaguirre</a>, <a href=\"https://profiles.wordpress.org/benjamin_zekavica\">Benjamin Zekavica</a>, <a href=\"https://profiles.wordpress.org/benlk\">benlk</a>, <a href=\"https://profiles.wordpress.org/kau-boy\">Bernhard Kau</a>, <a href=\"https://profiles.wordpress.org/bernhard-reiter\">Bernhard Reiter</a>, <a href=\"https://profiles.wordpress.org/betsela\">betsela</a>, <a href=\"https://profiles.wordpress.org/bhargavmehta\">Bhargav Mehta</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bph\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/bobbingwide\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/boblinthorst\">boblinthorst</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bradyvercher\">Brady Vercher</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/bpayton\">Brandon Payton</a>, <a href=\"https://profiles.wordpress.org/brentswisher\">Brent Swisher</a>, <a href=\"https://profiles.wordpress.org/technosiren\">Brianna Privett</a>, <a href=\"https://profiles.wordpress.org/briannaorg\">briannaorg</a>, <a href=\"https://profiles.wordpress.org/bronsonquick\">Bronson Quick</a>, <a href=\"https://profiles.wordpress.org/bandonrandon\">Brooke.</a>, <a href=\"https://profiles.wordpress.org/burhandodhy\">Burhan Nasir</a>, <a href=\"https://profiles.wordpress.org/cantothemes\">CantoThemes</a>, <a href=\"https://profiles.wordpress.org/cathibosco\">cathibosco</a>, <a href=\"https://profiles.wordpress.org/chetan200891\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/chetansatasiya\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/ketuchetan\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chrisl27\">Chris Lloyd</a>, <a href=\"https://profiles.wordpress.org/crunnells\">Chris Runnells</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/chriskmnds\">chriskmnds</a>, <a href=\"https://profiles.wordpress.org/pixelverbieger\">Christian Sabo</a>, <a href=\"https://profiles.wordpress.org/christophherr\">Christoph Herr</a>, <a href=\"https://profiles.wordpress.org/claudiosanches\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/coderkevin\">coderkevin</a>, <a href=\"https://profiles.wordpress.org/copons\">Copons</a>, <a href=\"https://profiles.wordpress.org/courtney0burton\">courtney0burton</a>, <a href=\"https://profiles.wordpress.org/mitogh\">Crisoforo Gaspar</a>, <a href=\"https://profiles.wordpress.org/littlebigthing\">Csaba (LittleBigThings)</a>, <a href=\"https://profiles.wordpress.org/csabotta\">csabotta</a>, <a href=\"https://profiles.wordpress.org/danieltj\">Daniel James</a>, <a href=\"https://profiles.wordpress.org/talldanwp\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/danielhw\">danielhw</a>, <a href=\"https://profiles.wordpress.org/daniloercoli\">daniloercoli</a>, <a href=\"https://profiles.wordpress.org/dannycooper\">DannyCooper</a>, <a href=\"https://profiles.wordpress.org/nerrad\">Darren Ethier (nerrad)</a>, <a href=\"https://profiles.wordpress.org/davemoran118\">davemoran118</a>, <a href=\"https://profiles.wordpress.org/davidbinda\">David Binovec</a>, <a href=\"https://profiles.wordpress.org/dcavins\">David Cavins</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David Kennedy</a>, <a href=\"https://profiles.wordpress.org/dryanpress\">David Ryan</a>, <a href=\"https://profiles.wordpress.org/davidsword\">David Sword</a>, <a href=\"https://profiles.wordpress.org/jdtrower\">David Trower</a>, <a href=\"https://profiles.wordpress.org/folletto\">Davide \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/davidherrera\">davidherrera</a>, <a href=\"https://profiles.wordpress.org/davisshaver\">Davis</a>, <a href=\"https://profiles.wordpress.org/dciso\">dciso</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/dsmart\">Derek Smart</a>, <a href=\"https://profiles.wordpress.org/designsimply\">designsimply</a>, <a href=\"https://profiles.wordpress.org/dlocc\">Devin Walker</a>, <a href=\"https://profiles.wordpress.org/deviodigital\">Devio Digital</a>, <a href=\"https://profiles.wordpress.org/dfangstrom\">dfangstrom</a>, <a href=\"https://profiles.wordpress.org/dhanendran\">Dhanendran</a>, <a href=\"https://profiles.wordpress.org/diegoliv\">Diego de Oliveira</a>, <a href=\"https://profiles.wordpress.org/diegoreymendez\">diegoreymendez</a>, <a href=\"https://profiles.wordpress.org/dingo_bastard\">dingo-d</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dency\">Dixita Dusara</a>, <a href=\"https://profiles.wordpress.org/dixitadusara\">Dixita Dusara Gohil</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/donnapep\">Donna Peplinskie</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/dsawardekar\">dsawardekar</a>, <a href=\"https://profiles.wordpress.org/dsifford\">dsifford</a>, <a href=\"https://profiles.wordpress.org/duanestorey\">Duane Storey</a>, <a href=\"https://profiles.wordpress.org/edpittol\">Eduardo Pittol</a>, <a href=\"https://profiles.wordpress.org/chopinbach\">Edwin Cromley</a>, <a href=\"https://profiles.wordpress.org/ehg\">ehg</a>, <a href=\"https://profiles.wordpress.org/electricfeet\">ElectricFeet</a>, <a href=\"https://profiles.wordpress.org/eliorivero\">Elio Rivero</a>, <a href=\"https://profiles.wordpress.org/epointal\">Elisabeth Pointal</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/elrae\">elrae</a>, <a href=\"https://profiles.wordpress.org/enodekciw\">enodekciw</a>, <a href=\"https://profiles.wordpress.org/ephoxjames\">ephoxjames</a>, <a href=\"https://profiles.wordpress.org/ephoxmogran\">ephoxmogran</a>, <a href=\"https://profiles.wordpress.org/sewmyheadon\">Eric Amundson</a>, <a href=\"https://profiles.wordpress.org/ericnmurphy\">ericnmurphy</a>, <a href=\"https://profiles.wordpress.org/etoledom\">etoledom</a>, <a href=\"https://profiles.wordpress.org/circlecube\">Evan Mullins</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy\">fabiankaegy</a>, <a href=\"https://profiles.wordpress.org/fabs_pim\">fabs_pim</a>, <a href=\"https://profiles.wordpress.org/faishal\">Faishal</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/floriansimeth\">Florian Simeth</a>, <a href=\"https://profiles.wordpress.org/foobar4u\">foobar4u</a>, <a href=\"https://profiles.wordpress.org/foreverpinetree\">foreverpinetree</a>, <a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/fuyuko\">fuyuko</a>, <a href=\"https://profiles.wordpress.org/gma992\">Gabriel Maldonado</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/doomwaxer\">Gary Thayer</a>, <a href=\"https://profiles.wordpress.org/garyjones\">garyjones</a>, <a href=\"https://profiles.wordpress.org/soulseekah\">Gennady Kovshenin</a>, <a href=\"https://profiles.wordpress.org/babbardel\">George Olaru</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/georgeh\">georgeh</a>, <a href=\"https://profiles.wordpress.org/gnif\">gnif</a>, <a href=\"https://profiles.wordpress.org/goldsounds\">goldsounds</a>, <a href=\"https://profiles.wordpress.org/grappler\">Grappler</a>, <a href=\"https://profiles.wordpress.org/greg-raven\">Greg Raven</a>, <a href=\"https://profiles.wordpress.org/gziolo\">Grzegorz Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/bordoni\">Gustavo Bordoni</a>, <a href=\"https://profiles.wordpress.org/gwwar\">gwwar</a>, <a href=\"https://profiles.wordpress.org/hardeepasrani\">Hardeep Asrani</a>, <a href=\"https://profiles.wordpress.org/hblackett\">hblackett</a>, <a href=\"https://profiles.wordpress.org/helen\">Helen Hou-Sandi</a>, <a href=\"https://profiles.wordpress.org/luehrsen\">Hendrik Luehrsen</a>, <a href=\"https://profiles.wordpress.org/herbmiller\">herbmiller</a>, <a href=\"https://profiles.wordpress.org/herregroen\">Herre Groen</a>, <a href=\"https://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>, <a href=\"https://profiles.wordpress.org/hypest\">hypest</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianstewart\">ianstewart</a>, <a href=\"https://profiles.wordpress.org/ianbelanger\">ibelanger</a>, <a href=\"https://profiles.wordpress.org/icaleb\">iCaleb</a>, <a href=\"https://profiles.wordpress.org/idpokute\">idpokute</a>, <a href=\"https://profiles.wordpress.org/igorsch\">Igor</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/imonly_ik\">Imran Khalid</a>, <a href=\"https://profiles.wordpress.org/intronic\">intronic</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/ireneyoast\">Irene Strikkers</a>, <a href=\"https://profiles.wordpress.org/ismailelkorchi\">Ismail El Korchi</a>, <a href=\"https://profiles.wordpress.org/israelshmueli\">israelshmueli</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jd55\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jakept\">Jacob Peattie</a>, <a href=\"https://profiles.wordpress.org/jagnew\">jagnew</a>, <a href=\"https://profiles.wordpress.org/jahvi\">jahvi</a>, <a href=\"https://profiles.wordpress.org/jnylen0\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jamestryon\">jamestryon</a>, <a href=\"https://profiles.wordpress.org/jamiehalvorson\">jamiehalvorson</a>, <a href=\"https://profiles.wordpress.org/jdembowski\">Jan Dembowski</a>, <a href=\"https://profiles.wordpress.org/janalwin\">janalwin</a>, <a href=\"https://profiles.wordpress.org/jaswrks\">Jason Caldwell</a>, <a href=\"https://profiles.wordpress.org/octalmage\">Jason Stallings</a>, <a href=\"https://profiles.wordpress.org/yingling017\">Jason Yingling</a>, <a href=\"https://profiles.wordpress.org/vengisss\">Javier Villanueva</a>, <a href=\"https://profiles.wordpress.org/jhoffm34\">Jay Hoffmann</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/jblz\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/jeffpaul\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jipmoors\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">JJJ</a>, <a href=\"https://profiles.wordpress.org/sephsekla\">Joe Bailey-Roberts</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joemaller\">joemaller</a>, <a href=\"https://profiles.wordpress.org/joen\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/j-falk\">Johan Falk</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnny5\">John Godley</a>, <a href=\"https://profiles.wordpress.org/johndyer\">johndyer</a>, <a href=\"https://profiles.wordpress.org/johnpixle\">JohnPixle</a>, <a href=\"https://profiles.wordpress.org/johnwatkins0\">johnwatkins0</a>, <a href=\"https://profiles.wordpress.org/jomurgel\">jomurgel</a>, <a href=\"https://profiles.wordpress.org/jonsurrell\">Jon Surrell</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/joostdevalk\">Joost de Valk</a>, <a href=\"https://profiles.wordpress.org/koke\">Jorge Bernal</a>, <a href=\"https://profiles.wordpress.org/jorgefilipecosta\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/ieatwebsites\">Jose Fremaint</a>, <a href=\"https://profiles.wordpress.org/shelob9\">Josh Pollock</a>, <a href=\"https://profiles.wordpress.org/jvisick77\">Josh Visick</a>, <a href=\"https://profiles.wordpress.org/joshuawold\">Joshua Wold</a>, <a href=\"https://profiles.wordpress.org/joyously\">Joy</a>, <a href=\"https://profiles.wordpress.org/jrf\">jrf</a>, <a href=\"https://profiles.wordpress.org/jryancard\">jryancard</a>, <a href=\"https://profiles.wordpress.org/jsnajdr\">jsnajdr</a>, <a href=\"https://profiles.wordpress.org/julienmelissas\">JulienMelissas</a>, <a href=\"https://profiles.wordpress.org/kopepasah\">Justin Kopepasah</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K.Adam White</a>, <a href=\"https://profiles.wordpress.org/kallehauge\">Kallehauge</a>, <a href=\"https://profiles.wordpress.org/kalpshit\">KalpShit Akabari</a>, <a href=\"https://profiles.wordpress.org/codebykat\">Kat Hagan</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/kevinwhoffman\">Kevin Hoffman</a>, <a href=\"https://profiles.wordpress.org/khleomix\">khleomix</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/kjellr\">Kjell Reigstad</a>, <a href=\"https://profiles.wordpress.org/kluny\">kluny</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/xkon\">Konstantinos Xenos</a>, <a href=\"https://profiles.wordpress.org/krutidugade\">krutidugade</a>, <a href=\"https://profiles.wordpress.org/lancewillett\">Lance Willett</a>, <a href=\"https://profiles.wordpress.org/notlaura\">Lara Schenck</a>, <a href=\"https://profiles.wordpress.org/leahkoerper\">leahkoerper</a>, <a href=\"https://profiles.wordpress.org/lloyd\">lloyd</a>, <a href=\"https://profiles.wordpress.org/loicblascos\">Lo&#239;c Blascos</a>, <a href=\"https://profiles.wordpress.org/lucasstark\">Lucas Stark</a>, <a href=\"https://profiles.wordpress.org/lucasrolff\">LucasRolff</a>, <a href=\"https://profiles.wordpress.org/luigipulcini\">luigipulcini</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/lucaskowalski\">Luke Kowalski</a>, <a href=\"https://profiles.wordpress.org/lukepettway\">Luke Pettway</a>, <a href=\"https://profiles.wordpress.org/luminus\">Luminus</a>, <a href=\"https://profiles.wordpress.org/lynneux\">lynneux</a>, <a href=\"https://profiles.wordpress.org/macbookandrew\">macbookandrew</a>, <a href=\"https://profiles.wordpress.org/maedahbatool\">Maedah Batool</a>, <a href=\"https://profiles.wordpress.org/mahdiyazdani\">Mahdi Yazdani</a>, <a href=\"https://profiles.wordpress.org/mahmoudsaeed\">mahmoudsaeed</a>, <a href=\"https://profiles.wordpress.org/travel_girl\">Maja Benke</a>, <a href=\"https://profiles.wordpress.org/mkaz\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/marina_wp\">marina_wp</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mariusvw\">mariusvw</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/mapk\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/vindl\">Marko Andrijasevic</a>, <a href=\"https://profiles.wordpress.org/martinlugton\">martinlugton</a>, <a href=\"https://profiles.wordpress.org/m-e-h\">Marty Helmick</a>, <a href=\"https://profiles.wordpress.org/mathiu\">mathiu</a>, <a href=\"https://profiles.wordpress.org/webdevmattcrom\">Matt Cromwell</a>, <a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/mattgeri\">MattGeri</a>, <a href=\"https://profiles.wordpress.org/mboynes\">Matthew Boynes</a>, <a href=\"https://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"https://profiles.wordpress.org/maurobringolf\">maurobringolf</a>, <a href=\"https://profiles.wordpress.org/maximebj\">Maxime BERNARD-JACQUET</a>, <a href=\"https://profiles.wordpress.org/mayukojpn\">Mayo Moriyama</a>, <a href=\"https://profiles.wordpress.org/meetjey\">meetjey</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mendezcode\">mendezcode</a>, <a href=\"https://profiles.wordpress.org/woodent\">Micah Wood</a>, <a href=\"https://profiles.wordpress.org/wpscholar\">Micah Wood</a>, <a href=\"https://profiles.wordpress.org/mdawaffe\">Michael Adams (mdawaffe)</a>, <a href=\"https://profiles.wordpress.org/michaelhull\">Michael Hull</a>, <a href=\"https://profiles.wordpress.org/mnelson4\">Michael Nelson</a>, <a href=\"https://profiles.wordpress.org/mizejewski\">Michele Mizejewski</a>, <a href=\"https://profiles.wordpress.org/jbpaul17\">Migrated to @jeffpaul</a>, <a href=\"https://profiles.wordpress.org/mihaivalentin\">mihaivalentin</a>, <a href=\"https://profiles.wordpress.org/stubgo\">Miina Sikk</a>, <a href=\"https://profiles.wordpress.org/simison\">Mikael Korpela</a>, <a href=\"https://profiles.wordpress.org/mihai2u\">Mike Crantea</a>, <a href=\"https://profiles.wordpress.org/mike-haydon-swo\">Mike Haydon</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikeselander\">Mike Selander</a>, <a href=\"https://profiles.wordpress.org/mikehaydon\">mikehaydon</a>, <a href=\"https://profiles.wordpress.org/mikeyarce\">Mikey Arce</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/milana_cap\">Milana Cap</a>, <a href=\"https://profiles.wordpress.org/gonzomir\">Milen Petrinski - Gonzo</a>, <a href=\"https://profiles.wordpress.org/milesdelliott\">milesdelliott</a>, <a href=\"https://profiles.wordpress.org/mimo84\">mimo84</a>, <a href=\"https://profiles.wordpress.org/0mirka00\">mirka</a>, <a href=\"https://profiles.wordpress.org/mmtr86\">mmtr86</a>, <a href=\"https://profiles.wordpress.org/boemedia\">Monique Dubbelman</a>, <a href=\"https://profiles.wordpress.org/mor10\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/mostafas1990\">Mostafa Soufi</a>, <a href=\"https://profiles.wordpress.org/motleydev\">motleydev</a>, <a href=\"https://profiles.wordpress.org/mpheasant\">mpheasant</a>, <a href=\"https://profiles.wordpress.org/mrmadhat\">mrmadhat</a>, <a href=\"https://profiles.wordpress.org/mrwweb\">mrwweb</a>, <a href=\"https://profiles.wordpress.org/msdesign21\">msdesign21</a>, <a href=\"https://profiles.wordpress.org/mtias\">mtias</a>, <a href=\"https://profiles.wordpress.org/desideveloper\">Muhammad Irfan</a>, <a href=\"https://profiles.wordpress.org/mukesh27\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/munirkamal\">munirkamal</a>, <a href=\"https://profiles.wordpress.org/mmaumio\">Muntasir Mahmud</a>, <a href=\"https://profiles.wordpress.org/mzorz\">mzorz</a>, <a href=\"https://profiles.wordpress.org/nagayama\">nagayama</a>, <a href=\"https://profiles.wordpress.org/nfmohit\">Nahid F. Mohit</a>, <a href=\"https://profiles.wordpress.org/nao\">Naoko Takano</a>, <a href=\"https://profiles.wordpress.org/napy84\">napy84</a>, <a href=\"https://profiles.wordpress.org/nateconley\">nateconley</a>, <a href=\"https://profiles.wordpress.org/nativeinside\">Native Inside</a>, <a href=\"https://profiles.wordpress.org/greatislander\">Ned Zimmerman</a>, <a href=\"https://profiles.wordpress.org/buzztone\">Neil Murray</a>, <a href=\"https://profiles.wordpress.org/nicbertino\">nic.bertino</a>, <a href=\"https://profiles.wordpress.org/notnownikki\">Nicola Heald</a>, <a href=\"https://profiles.wordpress.org/nielslange\">Niels Lange</a>, <a href=\"https://profiles.wordpress.org/nikschavan\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/nitrajka\">nitrajka</a>, <a href=\"https://profiles.wordpress.org/njpanderson\">njpanderson</a>, <a href=\"https://profiles.wordpress.org/nshki\">nshki</a>, <a href=\"https://profiles.wordpress.org/hideokamoto\">Okamoto Hidetaka</a>, <a href=\"https://profiles.wordpress.org/oskosk\">oskosk</a>, <a href=\"https://profiles.wordpress.org/otto42\">Otto</a>, <a href=\"https://profiles.wordpress.org/pareshradadiya-1\">Paresh Radadiya</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pauldechov\">Paul Dechov</a>, <a href=\"https://profiles.wordpress.org/paulstonier\">Paul Stonier</a>, <a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"https://profiles.wordpress.org/pedromendonca\">Pedro Mendon&#231;a</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pglewis\">pglewis</a>, <a href=\"https://profiles.wordpress.org/tyrannous\">Philipp Bammes</a>, <a href=\"https://profiles.wordpress.org/piersb\">piersb</a>, <a href=\"https://profiles.wordpress.org/wizzard_\">Pieter Daalder</a>, <a href=\"https://profiles.wordpress.org/pilou69\">pilou69</a>, <a href=\"https://profiles.wordpress.org/delawski\">Piotr Delawski</a>, <a href=\"https://profiles.wordpress.org/poena\">poena</a>, <a href=\"https://profiles.wordpress.org/postphotos\">postphotos</a>, <a href=\"https://profiles.wordpress.org/potbot\">potbot</a>, <a href=\"https://profiles.wordpress.org/prtksxna\">Prateek Saxena</a>, <a href=\"https://profiles.wordpress.org/pratikthink\">Pratik K. Yadav</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/psealock\">psealock</a>, <a href=\"https://profiles.wordpress.org/ptasker\">ptasker</a>, <a href=\"https://profiles.wordpress.org/rachelmcr\">Rachel</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rahmohn\">Rahmohn</a>, <a href=\"https://profiles.wordpress.org/rahmon\">Rahmon</a>, <a href=\"https://profiles.wordpress.org/rahulsprajapati\">Rahul Prajapati</a>, <a href=\"https://profiles.wordpress.org/rakshans1\">rakshans1</a>, <a href=\"https://profiles.wordpress.org/ramonopoly\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/lamosty\">Rastislav Lamos</a>, <a href=\"https://profiles.wordpress.org/revgeorge\">revgeorge</a>, <a href=\"https://profiles.wordpress.org/youknowriad\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rianrietveld\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/richtabor\">Rich Tabor</a>, <a href=\"https://profiles.wordpress.org/richsalvucci\">richsalvucci</a>, <a href=\"https://profiles.wordpress.org/riddhiehta02\">Riddhi Mehta</a>, <a href=\"https://profiles.wordpress.org/rileybrook\">rileybrook</a>, <a href=\"https://profiles.wordpress.org/noisysocks\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/sanchothefat\">Robert O\'Rourke</a>, <a href=\"https://profiles.wordpress.org/robertsky\">robertsky</a>, <a href=\"https://profiles.wordpress.org/_dorsvenabili\">Rocio Valdivia</a>, <a href=\"https://profiles.wordpress.org/rohittm\">Rohit Motwani</a>, <a href=\"https://profiles.wordpress.org/magicroundabout\">Ross Wintle</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/ryo511\">ryo511</a>, <a href=\"https://profiles.wordpress.org/sagarprajapati\">Sagar Prajapati</a>, <a href=\"https://profiles.wordpress.org/samikeijonen\">Sami Keijonen</a>, <a href=\"https://profiles.wordpress.org/smyoon315\">Sang-Min Yoon</a>, <a href=\"https://profiles.wordpress.org/tinkerbelly\">sarah semark</a>, <a href=\"https://profiles.wordpress.org/scottmweaver\">Scott Weaver</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sergioestevao\">SergioEstevao</a>, <a href=\"https://profiles.wordpress.org/azchughtai\">Shahjehan Ali</a>, <a href=\"https://profiles.wordpress.org/shaileesheth\">Shailee Sheth</a>, <a href=\"https://profiles.wordpress.org/sharaz\">Sharaz Shahid</a>, <a href=\"https://profiles.wordpress.org/giventofly76\">Shaun sc</a>, <a href=\"https://profiles.wordpress.org/shaunandrews\">shaunandrews</a>, <a href=\"https://profiles.wordpress.org/shooper\">Shawn Hooper</a>, <a href=\"https://profiles.wordpress.org/shenkj\">shenkj</a>, <a href=\"https://profiles.wordpress.org/sikander\">sikander</a>, <a href=\"https://profiles.wordpress.org/pross\">Simon Prosser</a>, <a href=\"https://profiles.wordpress.org/siriokun\">siriokun</a>, <a href=\"https://profiles.wordpress.org/sirjonathan\">sirjonathan</a>, <a href=\"https://profiles.wordpress.org/sirreal\">sirreal</a>, <a href=\"https://profiles.wordpress.org/sisanu\">Sisanu</a>, <a href=\"https://profiles.wordpress.org/skorasaurus\">skorasaurus</a>, <a href=\"https://profiles.wordpress.org/butimnoexpert\">Slushman</a>, <a href=\"https://profiles.wordpress.org/ssousa\">Sofia Sousa</a>, <a href=\"https://profiles.wordpress.org/somtijds\">SOMTIJDS</a>, <a href=\"https://profiles.wordpress.org/soean\">Soren Wrede</a>, <a href=\"https://profiles.wordpress.org/spocke\">spocke</a>, <a href=\"https://profiles.wordpress.org/stagger-lee\">Stagger Lee</a>, <a href=\"https://profiles.wordpress.org/sstoqnov\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stevehenty\">Steve Henty</a>, <a href=\"https://profiles.wordpress.org/charlestonsw\">Store Locator Plus</a>, <a href=\"https://profiles.wordpress.org/strategio\">strategio</a>, <a href=\"https://profiles.wordpress.org/stuartfeldt\">stuartfeldt</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/tacrapo\">tacrapo</a>, <a href=\"https://profiles.wordpress.org/talldan\">talldan</a>, <a href=\"https://profiles.wordpress.org/tammie_l\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/themeroots\">ThemeRoots</a>, <a href=\"https://profiles.wordpress.org/tfrommen\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/thrijith\">Thrijith Thankachan</a>, <a href=\"https://profiles.wordpress.org/hedgefield\">Tim Hengeveld</a>, <a href=\"https://profiles.wordpress.org/timgardner\">timgardner</a>, <a href=\"https://profiles.wordpress.org/timmydcrawford\">Timmy Crawford</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tmatsuur\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tjnowell\">Tom J Nowell</a>, <a href=\"https://profiles.wordpress.org/tlxo\">Toni Laakso</a>, <a href=\"https://profiles.wordpress.org/skithund\">Toni Viemer&#246;</a>, <a href=\"https://profiles.wordpress.org/tobifjellner\">Tor-Bjorn Fjellner</a>, <a href=\"https://profiles.wordpress.org/toro_unit\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/torontodigits\">TorontoDigits</a>, <a href=\"https://profiles.wordpress.org/mirucon\">Toshihiro Kanai</a>, <a href=\"https://profiles.wordpress.org/itowhid06\">Towhidul Islam</a>, <a href=\"https://profiles.wordpress.org/travislopes\">Travis Lopes</a>, <a href=\"https://profiles.wordpress.org/truongwp\">truongwp</a>, <a href=\"https://profiles.wordpress.org/tjfunke001\">Tunji Ayoola</a>, <a href=\"https://profiles.wordpress.org/twoelevenjay\">twoelevenjay</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/vaishalipanchal\">Vaishali Panchal</a>, <a href=\"https://profiles.wordpress.org/vishalkakadiya\">Vishal Kakadiya</a>, <a href=\"https://profiles.wordpress.org/vtrpldn\">Vitor Paladini</a>, <a href=\"https://profiles.wordpress.org/volodymyrkolesnykov\">volodymyrkolesnykov</a>, <a href=\"https://profiles.wordpress.org/walterebert\">Walter Ebert</a>, <a href=\"https://profiles.wordpress.org/warmarks\">warmarks</a>, <a href=\"https://profiles.wordpress.org/webmandesign\">WebMan Design &#124; Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/websupporter\">websupporter</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/earnjam\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/williampatton\">williampatton</a>, <a href=\"https://profiles.wordpress.org/willybahuaud\">Willy Bahuaud</a>, <a href=\"https://profiles.wordpress.org/yahil\">Yahil Madakiya</a>, <a href=\"https://profiles.wordpress.org/yingles\">yingles</a>, <a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/fierevere\">Yui</a>, <a href=\"https://profiles.wordpress.org/youthkee\">Yusuke Takahashi</a>, <a href=\"https://profiles.wordpress.org/ze3kr\">ze3kr</a>, <a href=\"https://profiles.wordpress.org/zebulan\">zebulan</a>, <a href=\"https://profiles.wordpress.org/ziyaddin\">Ziyaddin Sadigov</a>, and <a href=\"https://profiles.wordpress.org/mypacecreator\">のむらけい (Kei Nomura)</a>.\n\n\n\n<p>Finally, thanks to all the community translators who worked on WordPress 5.0. Their efforts bring WordPress 5.0 fully translated to 37 languages at release time, with more on the way.</p>\n\n\n\n<p>If you want to follow along or help out, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> and our <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n\n\n\n<p>Thanks for choosing WordPress!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 06 Dec 2018 19:28:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"Post Status: WordPress 5.0 marks a new era for the world’s most popular CMS\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://poststatus.com/?p=49548\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"https://poststatus.com/wordpress-5-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5170:\"<p>WordPress 5.0, &#8220;<a href=\"https://wordpress.org/news/2018/12/bebo/\">Bebo</a>,&#8221; is a shift of the highest order for the platform. Block-based editing, under the name of &#8220;Gutenberg,&#8221; is an entirely new way to publish content. It adds a world of flexibility when writing, and it opens the gates for transforming much of the broader WordPress experience moving forward.</p>\n<p></p>\n<p>TinyMCE has been the core of the WordPress writing experience for, well, forever. Users will be able to continue using TinyMCE with the <a href=\"https://wordpress.org/plugins/classic-editor/\">Classic Editor</a> plugin, which will be especially useful for those web applications with significant amounts of structured content that will take time and reprogramming to fit the new editing experience.</p>\n<p>The need for a new editor has been a wide-held concern in the WordPress community for a long time. Gutenberg has been more than two years in the making, and it involved dozens of full-time or near full-time contributors at times. Automattic, the company behind WordPress.com and other popular WordPress products, has invested a great deal in Gutenberg&#8217;s development, as have many other companies and individuals — but the bulk of development and decision-making has been by Automattic employees.</p>\n<p>There have been critiques that the process for decision making has been too closed off and rushed toward the end of the development cycle for the purpose of delivery by WordCamp US despite ongoing concerns, particularly around accessibility.</p>\n<p>5.0 had to ship eventually, and the process has been a long one. It was a complete shift from the traditional development cycles, which <a href=\"https://poststatus.com/interview-matt-mullenweg-new-wordpress-release-cycle/\">I discussed with Matt Mullenweg</a> at WordCamp US two years ago.</p>\n<p>I have personally held the view that now is as good a time as any to release 5.0, though the exact timing is a burden on folks traveling to WCUS, particularly considering that it was just a few days notice; it is putting a kink in the plans of many.</p>\n<p>Timing aside, Gutenberg is, I believe, an important step and a big test for WordPress. It is imperative that the platform evolves to be both more powerful and easier to use — an enormously difficult dual challenge that I have advocated as an important feat to accomplish for several years now.</p>\n<p>WordPress is the easiest full-featured content management system to use. But it is more difficult than many alternative publishing platforms — particularly hosted ones. Drastic changes, like Gutenberg, are necessary to continue being a preferred platform for end users. Being easy to use and customize got WordPress to the dominant position it is in today, and I believe it is extremely important to continue in that trajectory to maintain that position.</p>\n<p>At the same time, as WordPress is being used in ever more advanced applications, developers need powerful, scalable solutions. WordPress has made great strides over the years to accommodate this use case, from various APIs to assist in new data structure creation, to the REST API. Gutenberg offers much promise to continue this trend, as it is quite extendable and also flexible for deployment on the web, in native apps, and on both front-ends and backends.</p>\n<p>I believe 5.0 is a huge step forward for the platform. The journey is not without its issues, and there is much work to do, but WordPress needed and continues to need big changes and advancements to maintain its position at the top of the content management food chain.</p>\n<p>People are using WordPress for all sorts of things, whether traditional publishing, eCommerce, application frameworks, and much more. I’m excited to see what Gutenberg brings to further these applications. Strictly as an editor, it’s far from perfect, but it’s an important step in the right direction.</p>\n<h2>Get familiar with WordPress 5.0</h2>\n<p>Here are some links to places to learn more about the new editing experience and WordPress 5.0.</p>\n<ul>\n<li><a href=\"https://wordpress.org/news/2018/12/bebo/\">WordPress 5.0 release post</a></li>\n<li><a href=\"https://wordpress.org/gutenberg/handbook/\">Gutenberg designer and developer handbook</a></li>\n<li><a href=\"https://wordpress.org/gutenberg/\">WordPress.org/Gutenberg</a> teaser, where you can use it live.</li>\n<li><a href=\"https://make.wordpress.org/core/2018/12/06/wordpress-5-0-field-guide/\">WordPress 5.0 Field Guide</a></li>\n<li>Gutenberg <a href=\"https://github.com/WordPress/gutenberg\">on GitHub</a> (This will be deprecated but offers a nice history.)</li>\n<li><a href=\"https://make.wordpress.org/core/2018/12/06/the-rest-api-in-wordpress-5-0/\">Changes to the REST API</a></li>\n<li><a href=\"https://make.wordpress.org/core/2018/12/06/media-5-0-guide/\">Media in 5.0</a></li>\n<li>The <a href=\"https://make.wordpress.org/core/2018/10/16/introducing-twenty-nineteen/\">Twenty Nineteen</a> default theme and Gutenberg support <a href=\"https://make.wordpress.org/core/2018/12/06/block-editor-support-in-existing-default-themes/\">in other default themes</a>.</li>\n</ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 06 Dec 2018 17:31:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Brian Krogsgard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"WPTavern: WPWeekly Episode 340 – Twas the Night Before 5.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=86219&preview=true&preview_id=86219\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wptavern.com/wpweekly-episode-340-twas-the-night-before-5-0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1802:\"<p>In this episode, <a href=\"http://jjj.me\">John James Jacoby</a> and I are joined by Matt Mullenweg, co-creator of the WordPress project. We discussed a number of topics that have been making the rounds across the community such as:</p>\n<ul>\n<li>The WordPress 5.0 release strategy and how it will evolve once it&#8217;s released.</li>\n<li>Whether or not Gutenberg is ready and what ready means.</li>\n<li>Having Automatticians in project leadership roles and what roles WordPress core contributors can or will have going forward.</li>\n<li>ClassicPress, Publicious, and other forks.</li>\n<li>Gutenberg and Accessibility.</li>\n<li>Communication, feedback mechanisms, and trying to make sure everybody can participate in the conversation.</li>\n</ul>\n<p>We also talked about the long-term vision of Gutenberg. Near the end of the interview, Matt described some of the innovative things he&#8217;s seen built with the new editor.</p>\n<p>To round out the show, we sent shoutouts to Alex Mills who <a href=\"https://alex.blog/2018/11/30/my-cancer-just-wont-give-up/\">recently discovered</a> that he will need to battle through leukemia again.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Thursday, December 13th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p>Subscribe to <a href=\"https://play.google.com/music/listen?u=0#/ps/Ir3keivkvwwh24xy7qiymurwpbe\">WordPress Weekly via Google Play</a></p>\n<p><strong>Listen To Episode #340:</strong><br />\n</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 06 Dec 2018 03:32:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"BuddyPress: BuddyPress 4.1.0 maintenance release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=282488\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://buddypress.org/2018/12/buddypress-4-1-0-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:332:\"<p>Immediately available is BuddyPress 4.1.0. This maintenance release fixes 3 bugs related to last week&#8217;s 4.0.0 release, and is a recommended upgrade for all BuddyPress installations.</p>\n<p>For complete details on the release, visit the <a href=\"https://codex.buddypress.org/releases/version-4-1-0/\">4.1.0 changelog</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 Dec 2018 16:18:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Boone Gorges\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"Matt: Interview on Gutenberg and Future of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=48667\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://ma.tt/2018/12/interview-on-gutenberg-and-future-of-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:863:\"<p>Yesterday I was able to have a great conversation with Adam from WP Crafter, a popular Youtube channel with over five million views. Adam said it was his first interview but you can&#8217;t tell, we had an excellent conversation that covered Gutenberg, the 5.0 release, why WordPress has done well so far, and what&#8217;s coming in the future. If you&#8217;d like more context than text or tweets can give for what&#8217;s happening in WordPress today, check it out.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Of course Friday and Saturday are <a href=\"https://2018.us.wordcamp.org\">WordCamp US</a>, which returns to Nashville this year. Everything will be live-streamed for free, including my State of the Word presentation on Saturday, you just need to <a href=\"https://2018.us.wordcamp.org/tickets/\">pick up a free streaming ticket</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 Dec 2018 14:16:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"WPTavern: WordPress 5.0 Targeted for December 6, Prompting Widespread Outcry Ahead of WordCamp US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86065\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://wptavern.com/wordpress-5-0-targeted-for-december-6-prompting-widespread-outcry-ahead-of-wordcamp-us\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7290:\"<p>During last week&#8217;s core dev chat, Matt Mullenweg urged developers to consider WordPress 5.0 as &#8220;coming as soon as possible.&#8221; Nevertheless, his decision to set Thursday, December 6, for the <a href=\"https://make.wordpress.org/core/2018/12/04/new-5-0-target-date/\" rel=\"noopener\" target=\"_blank\">new release date</a> has taken many by surprise. </p>\n<p>Official feedback channels and social media erupted with largely negative feedback on the decision, as the new release date has 5.0 landing the day before WordCamp US begins. This is a travel day for many attending the conference. It also means both of the planned follow-up releases will be expected during the upcoming weeks when many have scheduled time off for major world holidays.</p>\n<p>Yoast CEO Joost de Valk, one of the most vocal critics of the 5.0 timelime, <a href=\"https://twitter.com/yoast/status/1069880401055895553\" rel=\"noopener\" target=\"_blank\">posted a public message of dissent</a> that resonated with many on Twitter:</p>\n<blockquote><p>We vehemently disagree with the decision to release WordPress 5.0 on December 6th, and think it&#8217;s irresponsible and disrespectful towards the community. </p>\n<p>However, we&#8217;re now going to try and support the community as well as possible and we hope to show everyone that Gutenberg is indeed a huge step forward.</p></blockquote>\n<p>Although Gutenberg as a project has strong support from many large companies in the WordPress ecosystem, much of the current uproar is rooted in a communication published in early October that indicated <a href=\"https://make.wordpress.org/core/2018/10/03/proposed-wordpress-5-0-scope-and-schedule/\" rel=\"noopener\" target=\"_blank\">5.0 would be pushed to January</a> if it missed the first set of planned release dates:</p>\n<blockquote><p>We know there is a chance that 5.0 will need additional time, so these dates can slip by up to 8 days if needed. If additional time beyond that is required, we will instead aim for the following dates:</p>\n<p>Secondary RC 1: January 8, 2019</p>\n<p>Secondary Release: January 22, 2019</p>\n<p>Should we need to switch to the secondary dates, this will be communicated as soon as we’re aware.</p></blockquote>\n<p>Companies made plans based on this schedule, but after those dates passed Mullenweg was unwilling to commit to honoring the previous communication. The plan from the outset may have been to &#8220;play it by ear&#8221; and incorporate new information as it became available, but the developer community had been counting on the published deadlines to be definitive.</p>\n<p>&#8220;This decision was made in disregard to earlier specific timelines and promises, and does not take the realities on the ground into account,&#8221; Morten Rand-Hendricksen <a href=\"https://twitter.com/mor10/status/1070013237205204992?s=19\" rel=\"noopener\" target=\"_blank\">said</a>. &#8220;I agree with @yoast it is both irresponsible and disrespectful.&#8221;</p>\n<p>Although reactions on Twitter run the gamut from unbridled optimism to full on outrage, many of those commenting on the schedule have fallen into resignation, convinced that community feedback never really mattered when it came to scheduling the release.</p>\n<p>Mullenweg&#8217;s rationale behind announcing the release date with three days notice is that Gutenberg and/or the Classic Editor are already active on more than 1.3 million sites. Users do not have to upgrade to WordPress 5.0 until they are ready. If they opt for the Classic Editor, the editing experience &#8220;will be indistinguishable from 4.9.8.&#8221; </p>\n<p>Users who are informed enough to make this choice will be well-prepared when they see that 5.0 update in their dashboards. However, one of the chief concerns is that millions of WordPress users will update without testing. Plugin developers are scrambling to ship compatibility updates and support staff will need to be on hand to help users navigate any incompatibilities or bugs in the new editing experience. Hundreds of WordPress professionals will be traveling to WordCamp US when 5.0 is expected to ship, which poses challenges for supporting users who experience problems with the update.</p>\n<p>&#8220;I do not think the attendees of WCUS are more important than much larger portion of the WordPress community who does not (and cannot) attend, and there are numerous ways to deal with 5.0 before or after the 6th if that particular day is inconvenient for someone, regardless of the reason,&#8221; Mullenweg <a href=\"https://make.wordpress.org/core/2018/12/04/new-5-0-target-date/#comment-34686\" rel=\"noopener\" target=\"_blank\">said</a> in response to comments regarding the date conflicting with travel plans.</p>\n<p>The release date <a href=\"https://make.wordpress.org/core/2018/12/04/new-5-0-target-date/\" rel=\"noopener\" target=\"_blank\">announcement</a> has well over 100 comments from frustrated contributors and developers expressing concerns, and Mullenweg has been responsive in the comments. He has recently <a href=\"https://wptavern.com/mullenweg-ramps-up-communication-ahead-of-wordpress-5-0-release-rc2-now-available\" rel=\"noopener\" target=\"_blank\">ramped up communication</a> ahead of the release, regularly attending core dev chats, adding dedicated office hours to connect with the community one-on-one, and answering some of the most pressing Gutenberg questions on his blog in a lengthy but inspiring <a href=\"https://ma.tt/2018/11/a-gutenberg-faq/\" rel=\"noopener\" target=\"_blank\">FAQ post</a>. </p>\n<p>Despite these communication efforts, contributors who are not employed by Automattic have said they feel this release has been plagued by a lack of transparency regarding decision-making. Many WordPress core committers, core contributors, and former release leads have <a href=\"https://wptavern.com/wordpress-5-0-rc-expected-on-u-s-thanksgiving-holiday-despite-last-minute-pushback-from-contributors\" rel=\"noopener\" target=\"_blank\">pushed back</a> on releasing before January to no avail. Their concerns and disappointments during the process hang like a dark cloud over what should be an exciting time for the future of WordPress.</p>\n<p>&#8220;No matter how bad the process around WordPress 5.0 might have been, finally setting a release date was the only right step following the RCs,&#8221; WordPress core developer Dominik Schilling <a href=\"https://twitter.com/ocean90/status/1069874387870978048\" rel=\"noopener\" target=\"_blank\">said</a>. &#8220;Let&#8217;s see if it&#8217;s also the beginning for doing it better to get back on releases which everyone will love.&#8221;</p>\n<p><a href=\"https://gemservers.com/\" rel=\"noopener\" target=\"_blank\">John Teague</a>, who runs an 11-person operation, managing 210 enterprise hosting clients, summarized how many are feeling ahead of WordPress 5.0 shipping out this week.</p>\n<p>&#8220;I so want to be supportive of this release,&#8221; Teague said. &#8220;But between the top down, heavily Automattic managed process, poor release communication, super short RC2, RC3, punting on accessibility, and now this two-day notice to 5.0 release &#8211; it reminds me of an old Air Force saying when instructors sent barely trained pilots up for their first solo:  </p>\n<p>&#8216;Send em up and let God grade em.\'&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 Dec 2018 07:37:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"HeroPress: WordPress made me walk 700km to Berlin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=2658\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"https://heropress.com/essays/wordpress-made-me-walk-700km-to-berlin/#utm_source=rss&utm_medium=rss&utm_campaign=wordpress-made-me-walk-700km-to-berlin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9401:\"<img width=\"960\" height=\"480\" src=\"https://s20094.pcdn.co/wp-content/uploads/2018/12/120518-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Nothing happens in your comfort zone. Go beyond and find the magic.\" /><p>Since the year 2000 I was employed at a big IT hardware/software/services firm. After about 9 years I was not feeling quite happy about how things went. Let’s say that the plans the company had with me did not really line up with the monthly reward. So, I quit and started my own company, <a href=\"https://nostromo.nl/\">nostromo.nl</a> in June 2009 (<a href=\"https://twitter.com/mbootsman/status/2090725144\">Tweetproof</a>). The goal was to serve customers by designing/developing and maintaining websites.</p>\n<h3>A new beginning</h3>\n<p>Now the challenge begins. Where do I start, who do I call? “Hello, do you need a new website? I just started my company and I can help you”. Why would I be the right person to help this company with their new website? The first thing I learned was to be sure of myself. I know what I can do and the customer needs help, probably because they are not so skillful in building websites.</p>\n<p>After a month I was talking with a potential customer, my first one (!), and I got the quotation signed. I was going to build my own CMS, and I soon realized (the hard way) that was not the way to go. I had to do a CMS comparison and WordPress won.</p>\n<h3>Here comes WordPress</h3>\n<p>The ease of use and the extensive documentation for developers convinced me. After having built numerous websites, and offering maintenance services to customers, I wanted  to know who the people were that built WordPress. Why? Well, because I was using free software and I was making money with it. That didn’t feel right, I wanted to give something back.</p>\n<p>Browsing support forums and IRC (that&#8217;s something like Slack, but without the GIFs) I quickly became aware of the WordPress community and felt I wanted to get to know these great people.</p>\n<h3>WordCamp &#8211; how it changed me</h3>\n<p>It was 2010 when I learned about a thing called WordCamp in The Netherlands. The entrance ticket was cheap and I could attend talks by inspiring people. On November 6th 2010, I was waiting in line at the registration desk. It was my turn, and someone from behind the desk said; “Hey, nostromo!”. It was <a href=\"https://twitter.com/remkusdevries\">Remkus de Vries</a>, he recognized me from my avatar on Twitter and those two words made me feel welcome immediately. This moment I remember very vividly and it marks the point where my enthusiasm for the WordPress community was sparked to life.</p>\n<h3>I volunteer &#8211; a lot</h3>\n<p>Giving back to the community got defined. Translating, helping out in the Dutch official WordPress support forum, organizing meetups/WordCamps (The Netherlands, the first WordCamp Europe, and WordCamp Rotterdam) and helping others join and be active in the WordPress community. These were some of the things I did, and yes, I had to push the brake on voluntary jobs sometimes, because I also needed to be productive and profitable in my business. Since that first WordCamp I have met amazing, inspiring and skillful people (in random order). I haven’t met new people, I met new friends.</p>\n<h3>Volunteering &#8211; taking it to the next level</h3>\n<p>It was June 4th 2018 when I got a weird idea. Yeah, that sometimes happens. Impulsive as I am, I tweeted it:</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">I&#039;m thinking about walking to the next <a href=\"https://twitter.com/hashtag/WCEU?src=hash&ref_src=twsrc%5Etfw\">#WCEU</a>. Needs some planning of course, and funding / sponsoring. Will launch a separate website after this years edition.</p>\n<p>&mdash; ??&#x200d;<img src=\"https://s.w.org/images/core/emoji/11/72x72/2642.png\" alt=\"♂\" class=\"wp-smiley\" /> Marcel Bootsman (@mbootsman) <a href=\"https://twitter.com/mbootsman/status/1003666255994376192?ref_src=twsrc%5Etfw\">June 4, 2018</a></p></blockquote>\n<p></p>\n<p>Little did I know, there was a body part that had a big objection. While planning to go to Belgrade for WordCamp Europe 2018 this happened:</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Good morning. Going to see doctor later, I have a sore knee and walking is merely possible. Great timing, body&#8230; <a href=\"https://twitter.com/hashtag/WCEU?src=hash&ref_src=twsrc%5Etfw\">#WCEU</a></p>\n<p>&mdash; ??&#x200d;<img src=\"https://s.w.org/images/core/emoji/11/72x72/2642.png\" alt=\"♂\" class=\"wp-smiley\" /> Marcel Bootsman (@mbootsman) <a href=\"https://twitter.com/mbootsman/status/1006400794617352192?ref_src=twsrc%5Etfw\">June 12, 2018</a></p></blockquote>\n<p></p>\n<p>And yes, I had to cancel our trip (my wife was going to join) and ended up laying in bed for about a week with an inflamed knee. I received antibiotics from the doctor and gladly the pain and inflammation disappeared. That aside, at the end of WCEU 2018 it was announced that WCEU 2019 was going to be in Berlin. I was happy, since that’s really close (about 700 km) to where I live.</p>\n<p>Currently I am training, I’ve planned my route and I am looking for places to sleep in Germany. Please see this website <a href=\"http://walktowc.eu\">walktowc.eu</a> for more information. Since this hike is probably going to gain some attention in the community, I had another idea. Why not use this as a means to raise money, for a good cause. Walking 700 km in about 30 days is a challenge, and if I can get enough attention, raising money might work out. Now I just had to find a good cause to raise money for&#8230;</p>\n<h3>Raising funds for DonateWC</h3>\n<p>I have known <a href=\"https://twitter.com/motherofcode\">Ines van Essen</a> for a few years now and in September 2017 she started a thing called <a href=\"https://donatewc.org/\">DonateWC</a>. After a successful initial funding campaign they sent their first recipient to <a href=\"https://donatewc.org/sponsorship-recipients/were-sending-a-speaker-to-wordcamp-cape-town/\">WordCamp Capetown</a> in October 2017. Seeing this made me believe this is another sign of how friendly and supporting the WordPress community is, to make sure that people are able to attend WordCamps, while they do not have the financial means to do so. The community supports community members, and that’s the reason why I chose DonateWC as the cause I’m going to raise funds for. And as a side effect also raise awareness of the existence of DonateWC.</p>\n<h3>My message to you</h3>\n<p>Don’t feel obliged to do things you don’t like.</p>\n<p>Do things you like.</p>\n<p>Start volunteering.</p>\n<p>Build your network.</p>\n<p>Enjoy the community.</p>\n<p>Step (or walk) out of your comfort zone.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Nothing happens in your comfort zone. Go beyond and find the magic. <a href=\"https://t.co/Rm4zDtT5JL\">pic.twitter.com/Rm4zDtT5JL</a></p>\n<p>&mdash; ??&#x200d;<img src=\"https://s.w.org/images/core/emoji/11/72x72/2642.png\" alt=\"♂\" class=\"wp-smiley\" /> Marcel Bootsman (@mbootsman) <a href=\"https://twitter.com/mbootsman/status/971276691447386120?ref_src=twsrc%5Etfw\">March 7, 2018</a></p></blockquote>\n<p></p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: WordPress made me walk 700km to Berlin\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=WordPress%20made%20me%20walk%20700km%20to%20Berlin&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-made-me-walk-700km-to-berlin%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: WordPress made me walk 700km to Berlin\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-made-me-walk-700km-to-berlin%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-made-me-walk-700km-to-berlin%2F&title=WordPress+made+me+walk+700km+to+Berlin\" rel=\"nofollow\" target=\"_blank\" title=\"Share: WordPress made me walk 700km to Berlin\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/wordpress-made-me-walk-700km-to-berlin/&media=https://heropress.com/wp-content/uploads/2018/12/120518-150x150.jpg&description=WordPress made me walk 700km to Berlin\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: WordPress made me walk 700km to Berlin\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/wordpress-made-me-walk-700km-to-berlin/\" title=\"WordPress made me walk 700km to Berlin\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/wordpress-made-me-walk-700km-to-berlin/\">WordPress made me walk 700km to Berlin</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 Dec 2018 07:00:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Marcel Bootsman\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Dev Blog: WordPress 5.0 RC3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6322\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2018/12/wordpress-5-0-rc3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2755:\"<p>The third release candidate for WordPress 5.0 is now available!</p>\n\n\n\n<p><strong>WordPress 5.0 will be released on </strong><a href=\"https://make.wordpress.org/core/2018/12/04/new-5-0-target-date/\"><strong>December 6, 2018</strong></a>. This is a big release and needs&nbsp;<em>your</em>&nbsp;help—if you haven’t tried 5.0 yet, now is the time!</p>\n\n\n\n<p>To test WordPress 5.0, you can use the&nbsp;<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin or you can&nbsp;<a href=\"https://wordpress.org/wordpress-5.0-RC3.zip\">download the release candidate here</a>&nbsp;(zip).</p>\n\n\n\n<p>For details about what to expect in WordPress 5.0, please see the&nbsp;<a href=\"https://wordpress.org/news/2018/11/wordpress-5-0-release-candidate/\">first release candidate post</a>.</p>\n\n\n\n<p>This release candidate includes a fix for some scripts not loading on subdirectory installs (<a href=\"https://core.trac.wordpress.org/ticket/45469\">#45469</a>), and user locale settings not being loaded in the block editor (<a href=\"https://core.trac.wordpress.org/ticket/45465\">#45465</a>). Twenty Nineteen has also had a couple of minor tweaks.</p>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.0 and update the&nbsp;<em>Tested up to</em>&nbsp;version in the readme to 5.0. If you find compatibility problems, please be sure to post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>&nbsp;so we can figure those out before the final release. An in-depth field guide to developer-focused changes is coming soon on the&nbsp;<a href=\"https://make.wordpress.org/core/\">core development blog</a>. In the meantime, you can review the&nbsp;<a href=\"https://make.wordpress.org/core/tag/5.0+dev-notes/\">developer notes for 5.0</a>.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a>&nbsp;</p>\n\n\n\n<p>If you think you’ve found a bug, you can post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a>&nbsp;in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report,&nbsp;<a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find&nbsp;<a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p><em>WordPress Five Point Oh<br />Is just a few days away!<br />Nearly party time!</em> <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f389.png\" alt=\"🎉\" class=\"wp-smiley\" /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Dec 2018 07:07:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Gary Pendergast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WPTavern: New Block Gallery Plugin Offers a Suite of Photo Gallery Blocks for Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=85195\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"https://wptavern.com/new-block-gallery-plugin-offers-a-suite-of-photo-gallery-blocks-for-gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3116:\"<p>The new Gutenberg editor has basic support for galleries with a few nice features, such as the ability to set the number of columns and automatically crop thumbnails for a more uniform appearance. If you need more control over your galleries, Rich Tabor&#8217;s <a href=\"https://wordpress.org/plugins/block-gallery/\" rel=\"noopener\" target=\"_blank\">Block Gallery</a> plugin is currently the best option made specifically for use with Gutenberg and WordPress 5.0+. It offers a suite of photo gallery blocks with minimal, tasteful styling that fits unobtrusively into virtually any site design. </p>\n<p>Block Gallery currently offers three different blocks, including masonry, fullscreen stacked, and a carousel slider. Each block has its own settings that offer more customization for the specific gallery type.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2018/10/Screen-Shot-2018-12-03-at-3.19.46-PM.png?ssl=1\"><img /></a></p>\n<p>The plugin also makes use of Gutenberg&#8217;s block transform utility to allow users to seamlessly transform galleries from one style to another with one click, as demonstrated in the video below.</p>\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>A demo of the new <a href=\"https://wordpress.org/plugins/block-gallery/\">Block Gallery WordPress Plugin</a>\n<p>&#8220;I built the Block Gallery plugin originally as a proving ground for exploring how my portfolio WordPress themes at ThemeBeans will interface with Gutenberg,&#8221; <a href=\"https://themebeans.com/\" rel=\"noopener\" target=\"_blank\">ThemeBeans</a> founder Rich Tabor said. &#8220;I do not particularly like the idea of disabling the block editor on portfolio custom post types, so I wanted to find a clever way for folks to use different sorts of galleries to showcase their art, illustrations, photos, etc. Block Gallery was born out of that exploration.&#8221;  </p>\n<p>Tabor said that although the core gallery block is much more robust than the classic editor’s gallery system, he wanted to give users more flexibility in how they display media. His favorite feature of the project is the ability to morph gallery blocks into different types.</p>\n<p>&#8220;That means every image, settings, display option, and color selection are each migrated instantly — if a user swaps out a selected gallery for a different type,&#8221; Tabor said. &#8220;For instance, folks can morph from a masonry gallery to a carousel slider in a single click, without having to re-upload/assign images or select any options. It’s all done behind the scenes, automagically.&#8221;</p>\n<p>Tabor&#8217;s Block Gallery plugin is a major leap forward for galleries in terms of usability. It offers a beautiful implementation of features that would have been difficult to imagine before the block editor. <a href=\"https://wordpress.org/plugins/block-gallery/\" rel=\"noopener\" target=\"_blank\">Block Gallery</a> currently has more than 400 active installs after a little more than month in the official directory. Watch for that number to jump as more people begin using the new editor when WordPress 5.0 is released. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 03 Dec 2018 22:29:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"Dev Blog: The Month in WordPress: November 2018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6318\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2018/12/the-month-in-wordpress-november-2018/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6607:\"<p>WordPress 5.0 is almost ready for release, including an all-new content editing experience. Volunteers all across the project are gearing up for the launch and making sure everything is ready. Read on to find out what&#8217;s been happening and how you can get involved.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.0 Close to Launch</h2>\n\n\n\n<p>The release date for WordPress 5.0 has not yet been set, but the second release candidate (RC) <a href=\"https://wordpress.org/news/2018/11/wordpress-5-0-rc2/\">is now available</a>. The final release date will be determined based on feedback and testing of this RC. The Core development team has been posting <a href=\"https://make.wordpress.org/core/2018/12/03/5-0-gutenberg-status-update-dec-3/\">daily updates</a> on the progress of their work on v5.0, with the number of open issues for this release decreasing every day.<br /></p>\n\n\n\n<p>The primary feature of this release is <a href=\"https://wordpress.org/gutenberg/\">the new editor</a> that will become the default WordPress experience going forward. A number of people have been seeking more direct feedback from the release leads about the progress of this release, which <a href=\"https://profiles.wordpress.org/matt/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>matt</a> has facilitated by hosting <a href=\"https://make.wordpress.org/core/2018/11/29/gutenberg-5-0-listening-office-hours/\">one-to-one discussions</a> with anyone in the community who wanted to talk with him about it. He has also published <a href=\"https://ma.tt/2018/11/a-gutenberg-faq/\">an extended FAQ</a> covering many of the questions people have been asking.<br /></p>\n\n\n\n<p>Alongside the development of the new editor, the Mobile team has been working hard to bring the WordPress mobile apps up to speed. They plan to make a beta version available <a href=\"https://make.wordpress.org/mobile/2018/11/15/gutenberg-in-the-apps-what-to-expect/\">in February 2019</a>.<br /></p>\n\n\n\n<p>Want to get involved in developing WordPress Core in 5.0 and beyond? Follow <a href=\"https://make.wordpress.org/core\">the Core team blog</a> and join the #core channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>New WordPress Support Platform Goes Live</h2>\n\n\n\n<p>WordPress user documentation has long been hosted on the <a href=\"https://codex.wordpress.org/\">WordPress Codex</a>, but for the past couple of years an ambitious project has been underway to move that content to a freshly-built WordPress-based platform. This project, named “HelpHub,” is now live and <a href=\"https://wordpress.org/support/\">the official home of WordPress Support</a>.<br /></p>\n\n\n\n<p>There is still plenty of content that needs to be migrated from the Codex to HelpHub, but the initial move is done and the platform is ready to have all WordPress’ user documentation moved across. HelpHub will be the first place for support, encouraging users to find solutions for themselves before posting in the <a href=\"https://wordpress.org/support/forums/\">forums</a>.<br /></p>\n\n\n\n<p>Want to get involved in populating HelpHub with content, or with its future development? Follow <a href=\"https://make.wordpress.org/docs/\">the Documentation team blog</a> and join the #docs channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Spanish WordPress Community Pushes Translations Forward</h2>\n\n\n\n<p>The WordPress community in Spain has been hard at work making sure as much of the WordPress project as possible is available in Spanish. <a href=\"https://es.wordpress.org/2018/11/07/logros-equipo-traducciones-wordpress-espana/\">They have recently translated more of the project than ever</a> — including WordPress Core, WordPress.org, the mobile apps and the top 120 plugins in the Directory.<br /></p>\n\n\n\n<p>This achievement has largely been possible due to the fact that <a href=\"https://make.wordpress.org/polyglots/teams/?locale=es_ES\">the Spanish translation team</a> has over 2,500 individuals contributing to it, making it the largest translation team across the whole project. <br /></p>\n\n\n\n<p>Want to get involved in translating WordPress into your local language? You can <a href=\"https://translate.wordpress.org/\">jump straight into translations</a>, follow <a href=\"https://make.wordpress.org/polyglots/\">the Polyglots team blog</a> and join the #polyglots channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul><li>All volunteer teams have checked in with their <a href=\"https://wordpress.org/news/2018/11/quarterly-updates-q3-2018/\">latest quarterly updates</a>.</li><li>The WordPress Support Team <a href=\"https://make.wordpress.org/support/2018/11/new-volunteer-orientation-for-wp-support-contributors-dec-9/\">is hosting an orientation</a> for new Support volunteers on December 9.</li><li><a href=\"https://2018.us.wordcamp.org/tickets/\">Tickets are now available</a> to watch the WordCamp US livestream for free.</li><li>WordPress Core <a href=\"https://core.trac.wordpress.org/ticket/45287\">has switched to a WP-CLI command</a> for generating localization files.</li><li>WordPress Coding Standards v1.2.0 <a href=\"https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/releases/tag/1.2.0\">has been released</a> with some really useful improvements.</li><li>The first ever <a href=\"https://2019.nordic.wordcamp.org/\">WordCamp Nordic</a> is taking place on March 7-8, 2019 with ticket sales now open.</li><li>The WordCamp Incubator program is going very well this year — <a href=\"https://make.wordpress.org/community/2018/11/27/wordcamp-incubator-2018-update-thread-november-edition/\">you can see the latest updates here</a>.</li><li>The Mobile Team is looking for testers for the upcoming v11.3 release of the WordPress mobile apps on <a href=\"https://make.wordpress.org/mobile/2018/11/21/call-for-testing-wordpress-for-android-11-3/\">Android</a> and <a href=\"https://make.wordpress.org/mobile/2018/11/21/call-for-testing-wordpress-for-ios-11-3/\">iOS</a>.</li><li>The WordCamp Europe team is looking for local communities to <a href=\"https://2019.europe.wordcamp.org/2018/11/29/call-for-host-city/\">apply to be the host city</a> for the 2020 event.</li></ul>\n\n\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please </em><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><em>submit it here</em></a><em>.</em><br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 03 Dec 2018 17:43:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Hugh Lashbrooke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"WPTavern: WordCamp Europe Opens the Call for Host City 2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86110\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wptavern.com/wordcamp-europe-opens-the-call-for-host-city-2020\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2379:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/11/wordcamp-eurpoe-2019.png?ssl=1\"><img /></a></p>\n<p>WordCamp Europe has opened the <a href=\"https://2019.europe.wordcamp.org/2018/11/29/call-for-host-city/\" rel=\"noopener\" target=\"_blank\">call for a host city for 2020</a>. Previous editions of the event have been held in Leiden, Sofia, Seville, Vienna, Paris, and Belgrade, and the next on deck is Berlin in 2019. Organizers are always working ahead for an event this size. In fact, the team plans together for the better part of a year before attendees arrive for the three-day event. The upcoming WCEU is currently being planned by a team of 66 organizers from 15 countries. </p>\n<p>Teams applying to host WordCamp Europe are required to have organized at least one or more successful WordCamps in a European city, with at least one recent one held in 2017 or 2018. The core organizing team will work with all applicants in the open to help them prepare the best applications possible, as detailed in the announcement:  </p>\n<blockquote><p>To guarantee total transparency during the process, all applicants receive the same help in the appropriate public channel of the WCEU Slack workspace. No question is considered or answered in a private message.</p></blockquote>\n<p>Three weekends in June 2020 are available to applicants as potential dates. Teams interested to apply are encouraged to begin filling out the <a href=\"https://docs.google.com/forms/d/e/1FAIpQLSfPd5InsSfaGXA1zRu_PJ435AGXXPlUYMuCqCBkEOKRNSrd7w/viewform\" rel=\"noopener\" target=\"_blank\">7-page survey</a> (which can be started and completed as information becomes available). It includes questions about the local community, previous WordCamps, possible venue(s), cost of living in the city, and other data that will be important to the selection committee. </p>\n<p>A preliminary online AMA session will be held December 13, 2018, to assist teams in answering questions about the application process. The deadline to apply to host the event is February 28, 2019. Applicants will receive a decision by March 15, 2019, and the final selection will be announced during the closing remarks in Berlin next June. Check out the call for host cities <a href=\"https://2019.europe.wordcamp.org/2018/11/29/call-for-host-city/\" rel=\"noopener\" target=\"_blank\">announcement</a> for more information.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 03 Dec 2018 16:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"WPTavern: Mullenweg Ramps Up Communication Ahead of WordPress 5.0 Release, RC2 Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://wptavern.com/mullenweg-ramps-up-communication-ahead-of-wordpress-5-0-release-rc2-now-available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5209:\"<p><a href=\"https://wordpress.org/news/2018/11/wordpress-5-0-rc2/\" rel=\"noopener\" target=\"_blank\">WordPress 5.0 RC2</a> was released today with 15 notable updates, including improvements to block preview styling, browser-specific bug fixes, and other changes. RC2 was released simultaneously with <a href=\"https://make.wordpress.org/core/2018/11/30/whats-new-in-gutenberg-30th-november/\" rel=\"noopener\" target=\"_blank\">Gutenberg version 4.6</a>. </p>\n<p>The official release date for WordPress 5.0 has not yet been announced, because it depends on feedback from RC2 testing. Contributors&#8217; uneasiness with not having an official release date seemed to reach a critical tipping point during this week&#8217;s WordPress dev chat, as many participants pressured Matt Mullenweg, who is leading the release, to give more information on when they can expect 5.0. </p>\n<p>&#8220;It is very important that we have a release date to aim for,&#8221; ACF founder Elliot Condon said. &#8220;I’m finding the current &#8216;waiting game&#8217; quite stressful, and I suspect a few other developers will share the same feeling.&#8221;</p>\n<p>Tensions were high as contributors cited various reasons for wanting a date, including companies needing support staff on hand, upcoming holidays, documentation planning, and the importance of user trust.</p>\n<p>&#8220;We&#8217;re determining the release date based on the open issues,&#8221; Mullenweg said. &#8220;Please consider it as coming as soon as possible, when everything is resolved.&#8221;</p>\n<p>&#8220;I hope it&#8217;s clear we&#8217;re trying to get this out as soon as possible, but don&#8217;t yet have enough data to announce an official date. As mentioned last week we have done a number of December releases in the past, and may this time, but don&#8217;t have enough data to announce a new date yet.&#8221;</p>\n<p>Mullenweg also urged dev chat attendees to keep in mind that any site administrators can install the Classic Editor plugin to keep the current editing experience, regardless of the 5.0 release date. He said the date will be announced via a P2 post, not during a dev chat.</p>\n<p>&#8220;If you want to know what to plan on, please don&#8217;t hold anything back based on expected dates, please test or deploy the RCs, that&#8217;s what they&#8217;re for,&#8221; Mullenweg said. </p>\n<p>In the meantime, Mullenweg is spending the weekend taking questions from the community during <a href=\"https://make.wordpress.org/core/2018/11/29/gutenberg-5-0-listening-office-hours/\" rel=\"noopener\" target=\"_blank\">24 office hours slots</a>. He also published a lengthy post titled &#8220;<a href=\"https://ma.tt/2018/11/a-gutenberg-faq/\" rel=\"noopener\" target=\"_blank\">WordPress 5.0: A Gutenberg FAQ</a>,&#8221; which reaffirms WordPress&#8217; mission in the context of Gutenberg. It answers questions like &#8220;Why do we need Gutenberg at all?&#8221; and &#8220;Why blocks?&#8221;</p>\n<p>&#8220;I knew we would be taking a big leap,&#8221; Mullenweg said. &#8220;But it’s a leap we need to take, and I think the end result is going to open up many new opportunities for everyone in the ecosystem, and for those being introduced to WordPress for the first time. It brings us closer to our mission of democratizing publishing for everyone.&#8221;</p>\n<p>The stats Mullenweg cited about previously having 9 major WordPress releases in December (34% of all releases in the last decade) indicate that a December release may still be on the table. His post addresses the perceived urgency behind getting Gutenberg out the door and into the hands of users. In evaluating WordPress 5.0&#8217;s readiness, he said it&#8217;s important to differentiate between the code being ready and the community being ready.</p>\n<p>&#8220;In the recent debate over Gutenberg readiness, I think it’s important to understand the difference between Gutenberg being ready code-wise (it is now), and whether the entire community is ready for Gutenberg,&#8221; Mullenweg said.</p>\n<p>&#8220;It will take some time — we’ve had 15 years to polish and perfect core, after all — but the global WordPress community has some of the world’s most talented contributors and we can make it as good as we want to make it.&#8221;</p>\n<p>The post also offers a preview of where Gutenberg is going in the next site customization phase and how it will change the way users build their sites.</p>\n<p>&#8220;The Editor is just the start,&#8221; he said. &#8220;In upcoming phases blocks will become a fundamental part of entire site templates and designs. It’s currently a struggle to use the Customizer and figure out how to edit sections like menus, headers, and footers. With blocks, people will be able to edit and manipulate everything on their site without having to understand where WordPress hides everything behind the scenes.&#8221;</p>\n<p>Mullenweg said he plans to talk more about the next phases following site customization during the State of the Word address at WordCamp US. If you have questions about Gutenberg and where it&#8217;s headed, the comments are open on his <a href=\"https://ma.tt/2018/11/a-gutenberg-faq/\" rel=\"noopener\" target=\"_blank\">post</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 01 Dec 2018 03:15:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: Let Us Know If You’re Hosting a WordCamp US Watch Party\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86150\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wptavern.com/let-us-know-if-youre-hosting-a-wordcamp-us-watch-party\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:505:\"<p>WordCamp US is next weekend and if you&#8217;re unable to attend, you can watch from home via the <a href=\"https://wptavern.com/wordcamp-us-2018-livestream-tickets-now-available\">free livestream</a>. However, some WordPress meetup groups host watch parties. These parties generally include food, beverages, and a large projection screen. </p>\n\n\n\n<p>If you&#8217;re hosting one of these parties, please let us know about it in the comments. Tell us the location and what attendees can expect. <br /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 01 Dec 2018 01:11:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"Dev Blog: WordPress 5.0 RC2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=6287\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2018/11/wordpress-5-0-rc2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3298:\"<p>The second release candidate for WordPress 5.0 is now available!</p>\n\n\n\n<p>This is an important milestone, as we near the release of WordPress 5.0. A final release date will be announced soon, based on feedback from this release candidate. Things are appearing very stable and we hope to announce a date soon. This is a big release and needs <em>your</em> help—if you haven’t tried 5.0 yet, now is the time! </p>\n\n\n\n<p>To test WordPress 5.0, you can use the&nbsp;<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin or you can&nbsp;<a href=\"https://wordpress.org/wordpress-5.0-RC2.zip\">download the release candidate here</a>&nbsp;(zip).</p>\n\n\n\n<p>For details about what to expect in WordPress 5.0, please see the <a href=\"https://wordpress.org/news/2018/11/wordpress-5-0-release-candidate/\">previous release candidate post</a>.</p>\n\n\n\n<h2>Significant changes</h2>\n\n\n\n<ul><li>We stopped rendering&nbsp;<em>AdminNotices</em>&nbsp;compatibility component, as this previous attempt at backward compatibility was bringing in numerous incompatible banners and notices from plugins.</li><li>An update to the parser to better deal with malformed HTML that could cause a loop. We&#8217;re only aware of this in the wild being triggered once in the <a href=\"https://gutenstats.blog/\">over a million posts</a> made with Gutenberg, but it caused a loop so we wanted to fix for RC2.</li></ul>\n\n\n\n<h2>Cosmetic and minor changes in RC2</h2>\n\n\n\n<ul><li>Accessibility: Simplify sidebar tabs&nbsp;aria-labels.</li><li>Make the&nbsp;Image&nbsp;Link URL field readonly.</li><li>Internationalization: Merge&nbsp;similar text strings that differed only in capitalization.</li><li>CSS: Improve block preview&nbsp;styling.</li><li>CSS: Fix&nbsp;visual issues&nbsp;with&nbsp;Button&nbsp;block text wrap.</li><li>Fix&nbsp;getSelectedBlockClientId selector.</li><li>Fix&nbsp;Classic&nbsp;block&nbsp;not showing galleries on a grid.</li><li>Fix an issue where the block toolbar&nbsp;would cause an image to jump&nbsp;downwards when the&nbsp;<em>wide</em>&nbsp;or&nbsp;<em>full</em>&nbsp;alignments were activated.</li><li>Move editor specific styles&nbsp;from style.scss to editor.scss in&nbsp;Cover&nbsp;block.</li><li>Fix modals&nbsp;in Microsoft Edge browser.</li><li>Fix Microsoft IE11 focus loss&nbsp;after TinyMCE init.&nbsp;Add&nbsp;IE check.</li><li>Fix Microsoft IE11 input when mounting TinyMCE.</li><li>Change @package names&nbsp;to WordPress.</li></ul>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language other than English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a>&nbsp;</p>\n\n\n\n<p>If you think you’ve found a bug, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<pre class=\"wp-block-verse\"><em>RC bittersweet.<br />We welcome in Gutenberg,<br />Vale Gutenbeard.</em></pre>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Nov 2018 23:16:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Gary Pendergast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WPTavern: Gutenberg Times to Host Live Q&amp;A with Gutenberg Leads on Friday, November 30\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=85908\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://wptavern.com/gutenberg-times-to-host-live-qa-with-gutenberg-leads-on-friday-november-30\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1224:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2018/11/creating-gutenberg-q-and-a.jpg?ssl=1\"><img /></a></p>\n<p>Birgit Pauli-Haack, curator of the <a href=\"https://gutenbergtimes.com/\" rel=\"noopener\" target=\"_blank\">Gutenberg Times</a> website, is hosting a Q&#038;A session with Gutenberg&#8217;s phase 1 design and development leads on Friday, November 30, at 2pm ET (19:00 UTC). Matias Ventura, Tammie Lister, and Joen Asmussen will join Pauli-Haack to discuss their journey &#8220;Creating Gutenberg&#8221; over the past two years.</p>\n<p>If you have any pressing questions about Gutenberg&#8217;s architecture, design, or the future of the project, this event is a good opportunity to speak to members of the team who have been building it full-time. The Q&#038;A is free to watch but attendees who want to participate with questions will need to <a href=\"https://zoom.us/webinar/register/6915430666443/WN_d_ejr1e0T0Se1YpyoU0Ojg\" rel=\"noopener\" target=\"_blank\">register</a>. There are 100 seats available. Pauli-Haack will also be live-streaming the session to the <a href=\"https://www.youtube.com/channel/UCSD3LG2kSHdr7llRSHaylxw\" rel=\"noopener\" target=\"_blank\">Gutenberg Times YouTube channel</a>. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Nov 2018 00:48:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"Matt: WordPress 5.0: A Gutenberg FAQ\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=48628\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"https://ma.tt/2018/11/a-gutenberg-faq/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:18327:\"<p><em>Update: </em><a href=\"https://wordpress.org/news/2018/12/bebo/\"><em>On December 6th we released WordPress 5.0</em></a><em>. It was definitely the most controversial release in a while, but the usage and adoption metrics are looking similar to previous releases. I&#8217;m looking forward to continuing to iterate on the new block editor!</em></p>\n\n\n\n<p>We are nearing the release date for WordPress 5.0 and Gutenberg, one of the most important and exciting projects I’ve worked on in my <a href=\"https://ma.tt/2018/05/wordpress-at-15/\">15 years</a> with this community. <br /></p>\n\n\n\n<p>I knew we would be taking a big leap. But it’s a leap we need to take, and I think the end result is going to open up many new opportunities for everyone in the ecosystem, and for those being introduced to WordPress for the first time. It brings us closer to our mission of democratizing publishing for everyone.<br /></p>\n\n\n\n<p>I recently visited WordCamp Portland to talk about Gutenberg and WordPress 5.0, which will also include the new default theme <a href=\"https://make.wordpress.org/core/2018/10/16/introducing-twenty-nineteen/\">Twenty Nineteen</a>, which you’re seeing me test out on this very site. There were some great questions and testimonials about Gutenberg, so I’d urge you to watch the <a href=\"https://wordpress.tv/2018/11/08/matt-mullenweg-qa-at-wordcamp-portland-2018/\">full video</a> and <a href=\"https://wptavern.com/matt-mullenweg-addresses-controversies-surrounding-gutenberg-at-wordcamp-portland-qa\">read the WP Tavern recap</a>. I&#8217;ve also visited meetups, responded to review threads, kept an eye on support, and I&#8217;m in the middle of <a href=\"https://make.wordpress.org/core/2018/11/29/gutenberg-5-0-listening-office-hours/\">office hours with the core community</a>.<br /></p>\n\n\n\n<p>As we head toward the release date and <a href=\"https://2018.us.wordcamp.org/\">WordCamp US</a>, I&#8217;ve put many questions and answers into a Gutenberg FAQ below. For those who have other questions, I will be checking the comments here. <br /></p>\n\n\n\n<p>It’s an exciting time, and I’m thrilled to be working with y’all on this project. </p>\n\n\n\n<img />Not the ship of Theseus\n\n\n\n<h2>What is Gutenberg? </h2>\n\n\n\n<p>Gutenberg, for those who aren&#8217;t actively following along, is a brand new Editor for WordPress &#8212; contributors have been working on it since January 2017 and it&#8217;s one of the most significant changes to WordPress in years. It&#8217;s built on the idea of using &#8220;blocks&#8221; to write and design posts and pages. <br /></p>\n\n\n\n<p>This will serve as the foundation for future improvements to WordPress, including blocks as a way not just to design posts and pages, but also entire sites. <br /></p>\n\n\n\n<p>The overall goal is to simplify the first-time user experience of WordPress &#8212; for those who are writing, editing, publishing, and designing web pages. The editing experience is intended to give users a better visual representation of what their post or page will look like when they hit publish. As I wrote in <a href=\"https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/\">my post last year</a>, &#8220;Users will finally be able to build the sites they see in their imaginations.&#8221; <br /></p>\n\n\n\n<p>Matías Ventura, team lead for Gutenberg, <a href=\"https://matiasventura.com/post/gutenberg-or-the-ship-of-theseus/\">wrote an excellent post</a> about the vision for Gutenberg, saying, “It’s an attempt to improve how users interact with their content in a fundamentally visual way, while at the same time giving developers the tools to create more fulfilling experiences for the people they are helping.”</p>\n\n\n\n<h2>Why do we need Gutenberg at all? </h2>\n\n\n\n<p>For many of us already in the WordPress community, it can be easy to forget the learning curve that exists for people being introduced to WordPress for the first time. Customizing themes, adding shortcodes, editing widgets and menus &#8212; there’s an entire language that one must learn behind the scenes in order to make a site or a post look like you want it to look. <br /></p>\n\n\n\n<p>Over the past several years, JavaScript-based applications have created opportunities to simplify the user experience in consumer apps and software. Users’ expectations have changed, and the bar has been raised for simplicity. It is my deep belief that WordPress must evolve to improve and simplify its own user experience for first-time users. <br /></p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">What can you do in 137 lines in <a href=\"https://twitter.com/hashtag/Gutenberg?src=hash&ref_src=twsrc%5Etfw\">#Gutenberg</a>? <a href=\"https://t.co/zLINZGMXMe\">pic.twitter.com/zLINZGMXMe</a></p>&mdash; Dennis Snell (@dmsnell23) <a href=\"https://twitter.com/dmsnell23/status/1063126946350096389?ref_src=twsrc%5Etfw\">November 15, 2018</a></blockquote>\n</div>\n\n\n\n<h2>Why blocks? </h2>\n\n\n\n<p>The idea with blocks was to create a new common language across WordPress, a new way to connect users to plugins, and replace a number of older content types &#8212; things like shortcodes and widgets &#8212; that one had to be well-versed in the idiosyncrasies of WordPress to understand. <br /></p>\n\n\n\n<p>The block paradigm is not a new one &#8212; in fact many great plugins have already shown the promise of blocks with page design in WordPress. Elementor, one of the pioneers in this space, has now introduced <a href=\"https://elementor.com/blog/blocks-for-gutenberg/\">a new collection of Gutenberg blocks</a> to showcase what’s possible: <br /></p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<h2>Why change the Editor? </h2>\n\n\n\n<p>The Editor is where most of the action happens in WordPress’s daily use, and it was a place where we could polish and perfect the block experience in a contained environment. <br /></p>\n\n\n\n<p>Additionally, the classic Editor was built primarily for text &#8212; articles have become increasingly multimedia, with social media embeds, maps, contact forms, photo collages, videos, and GIFs. It was time for a design paradigm that allowed us to move past the messy patchwork of shortcodes and text. <br /></p>\n\n\n\n<p>The Editor is just the start. In upcoming phases blocks will become a fundamental part of entire site templates and designs. It’s currently a struggle to use the Customizer and figure out how to edit sections like menus, headers, and footers. With blocks, people will be able to edit and manipulate everything on their site without having to understand where WordPress hides everything behind the scenes. <br /></p>\n\n\n\n<h2>What does Automattic get out of this? </h2>\n\n\n\n<p>There have been posts recently asking questions about Automattic’s involvement in Gutenberg compared to other contributors and companies. There is no secret conspiracy here &#8212; as project lead I was able to enlist the help of dozens of my colleagues to contribute to this project, and I knew that a project of this size would require it. Automattic aims to have 5% of its people dedicated to WordPress community projects, which at its current size would be about 42 people full-time. The company is a bit behind that now (~35 full-time), and the company is growing a lot next year, so look for 10-15 additional people working on core and community projects.&nbsp;<br /></p>\n\n\n\n<p>In the end, Gutenberg is similar to many other open source projects &#8212; Automattic will benefit from it, but so will everyone else in the WordPress community (and even <a href=\"https://drupalgutenberg.org/\">the Drupal community</a>). It’s available for everyone under the GPL. If the goal was purely to benefit Automattic it would have been faster, easier, and created an advantage for Automattic to have Gutenberg just on WP.com. That wasn&#8217;t, and isn&#8217;t, the point.</p>\n\n\n\n<h2>Is Gutenberg ready? </h2>\n\n\n\n<p>Absolutely. Our original goal with Gutenberg was to get it on 100,000 sites to begin testing &#8212; it’s now already on <a href=\"https://gutenstats.blog/\">more than 1 million sites</a>, and it’s the fastest-growing plugin in WordPress history. There is a lot of user demand.<br /></p>\n\n\n\n<p>The goal was to both test Gutenberg on as many sites as possible before the 5.0 release, and also to encourage plugin developers to make sure their plugins and services will be ready. With everyone pitching in, we can make this the most <em>anti-climactic</em> release in WordPress history. &nbsp;<br /></p>\n\n\n\n<p>In the recent debate over Gutenberg readiness, I think it&#8217;s important to understand the difference between Gutenberg being ready code-wise (it is now), and whether the entire community is ready for Gutenberg.<br /></p>\n\n\n\n<p>It will take some time &#8212; we&#8217;ve had 15 years to polish and perfect core, after all &#8212; but the global WordPress community has some of the world&#8217;s most talented contributors and we can make it as good as we want to make it. <br /></p>\n\n\n\n<p>There is also a new opportunity to dramatically expand the WordPress contributor community to include more designers and JavaScript engineers. With JavaScript apps there are also new opportunities for designing documentation and support right on the page, so that help arrives right where you need it. <br /></p>\n\n\n\n<p>Someone described Gutenberg to me as “WordPress in 3D.” I like the sound of that. Blocks are like layers you can zoom in and out of. The question now is: What are we going to build with this new dimension? </p>\n\n\n\n<h2>Do I have to switch to Gutenberg when WordPress 5.0 is released? </h2>\n\n\n\n<p>Not at all. When it’s released, you get to choose what happens. You can install the <a href=\"https://wordpress.org/plugins/classic-editor/\">Classic Editor plugin</a> today and when 5.0 is released, nothing will change. We&#8217;ve commited to supporting and updating Classic Editor until 2022. If you’d like to <a href=\"https://wordpress.org/plugins/gutenberg/\">install Gutenberg early</a>, you can do that now too. The Classic Editor plugin has been available for 13 months now, and Gutenberg has been available for 18 months. Both have been heavily promoted since August 2018, and more than 1.3 million .org sites have opted-in already to either experience, so nothing will change for them when they update to 5.0.</p>\n\n\n\n<h2>How can I make sure I’m ready? </h2>\n\n\n\n<p>Before updating to 5.0, try out the <a href=\"https://wordpress.org/plugins/gutenberg/\">Gutenberg plugin</a> with your site to ensure it works with your existing plugins, and also to get comfortable with the new experience. Developers across the entire ecosystem are working hard to update their plugins, but your mileage and plugins may vary. And you can always use the Classic Editor to address any gaps.<br /></p>\n\n\n\n<p>As with every new thing, things might feel strange and new for a bit, but I’m confident once you start using it you’ll get comfy quickly and you won’t want to go back.</p>\n\n\n\n<p>The release candidate of 5.0 is stable and fine to develop against and test.</p>\n\n\n\n<h2>When will 5.0 be released?</h2>\n\n\n\n<p>We have had a stable RC1, which stands for first release candidate, and about to do our second one. There is only currently one known blocker and it&#8217;s cosmetic. The stability and open issues in the release candidates thus far makes me optimistic we can release soon, but as before the primary driver will be the stability and quality of the underlying software. We made the mistake prior of announcing dates when lots of code was still changing, and had to delay because of regressions and bugs. Now that things aren&#8217;t changing, we&#8217;re approaching a time we can commit to a date soon.</p>\n\n\n\n<h2>Is it terrible to do a release in December?</h2>\n\n\n\n<p>Some people think so, some don&#8217;t. There have been <a href=\"https://wordpress.org/about/roadmap/\">9 major WordPress releases</a> in previous Decembers. December releases actually comprise 34% of our major releases in the past decade.</p>\n\n\n\n<h2>Can I set it up so only certain users get to use Gutenberg? </h2>\n\n\n\n<p>Yes, and soon. We’re going to be doing another update to the Classic Editor before the 5.0 release to give it a bit more fine-grained user control &#8212; we’ve heard requests for options that allow certain users or certain roles and post types to have Gutenberg while others have Classic Editor. </p>\n\n\n\n<h2>What happens after 5.0? </h2>\n\n\n\n<p>We’ve been doing a release of Gutenberg every two weeks, and 5.0 isn’t going to stop that. We’ll do minor release to 5.0 (5.0.1, 5.0.2) fortnightly, with occasional breaks, so if there’s feedback that comes in, we can address it quickly. Many of the previous bugs in updates were from juggling between updates in the plugin and core, now that Gutenberg is in core it&#8217;s much easier and safer to incrementally update.</p>\n\n\n\n<h2>What about Gutenberg and accessibility? </h2>\n\n\n\n<p>We’ve had some important discussions about accessibility over the past few weeks and I am grateful for those who have helped raise these questions in the community. <br /></p>\n\n\n\n<p>Accessibility has been core to WordPress from the very beginning. It’s part of why we started – the adoption of web standards and accessibility.<br /></p>\n\n\n\n<p>But where I think we fell down was with project management &#8212; specifically, we had a team of volunteers that felt like they were disconnected from the rapid development that was happening with Gutenberg. We need to improve that. In the future I don’t know if it makes sense to have accessibility as a separate kind of process from the core development. It needs to be integrated at every single stage. <br /></p>\n\n\n\n<p>Still, we’ve accomplished a lot, as Matías <a href=\"https://make.wordpress.org/core/2018/10/18/regarding-accessibility-in-gutenberg/\">has written about</a>. There have been more than 200 closed issues related to accessibility since the very beginning. <br /></p>\n\n\n\n<p>We’re also taking the opportunity to fix some things that have had poor accessibility in WordPress from the beginning. <a href=\"https://codemirror.net/6/\">CodeMirror</a>, which is a code editor for templates, is not accessible, so we have some parts of WordPress that we really need to work on to make better. <br /></p>\n\n\n\n<p>Speaking of which, CodeMirror was seeking funding for their next version &#8212; Automattic has now <a href=\"https://codemirror.net/6/\">sponsored that funding</a> and in return it will be made available under the GPL, and that the next version of CodeMirror will be fully accessible. <br /></p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Great news ? Due to a substantial donation from <a href=\"https://twitter.com/automattic?ref_src=twsrc%5Etfw\">@automattic</a> our crowdfunding goal has been reached, and CodeMirror 6 is definitely happening!</p>&mdash; CodeMirror (@codemirror) <a href=\"https://twitter.com/codemirror/status/1054759532990218242?ref_src=twsrc%5Etfw\">October 23, 2018</a></blockquote>\n</div>\n\n\n\n<p>Finally, Automattic will be funding an accessibility study of WordPress, Gutenberg, and an evaluation of best practices across the web, to ensure WordPress is fully accessible and setting new standards for the web overall. </p>\n\n\n\n<h2>After WordPress 5.0, is the Gutenberg name going to stick around?</h2>\n\n\n\n<p>Sometimes code names can take on a life of their own. I think Gutenberg is still what we’ll call this project &#8212; it’s <a href=\"https://github.com/WordPress/gutenberg\">called that on GitHub</a>, and you’re also seeing it <a href=\"https://drupalgutenberg.org/\">adopted by other CMSes beyond WordPress</a> &#8212; but for those outside the community I can see it simply being known as “the new WordPress editor.” </p>\n\n\n\n<h2>With the adoption of React for Gutenberg, what do you see as the future for React and WordPress? </h2>\n\n\n\n<p>In 2015 I said <a href=\"https://wordpress.tv/2015/12/07/matt-mullenweg-state-of-the-word-2015/\">“Learn JavaScript deeply”</a> &#8212; then in 2016 we brought the <a href=\"https://developer.wordpress.org/rest-api/\">REST API</a> into Core. Gutenberg is the first major feature built entirely on the REST API, so if you are learning things today, learn JavaScript, and I can imagine a future wp-admin that’s 100% JavaScript talking to APIs. I’m excited to see that happen. <br /></p>\n\n\n\n<p>Now, switching to a pure JavaScript interface could break some backward compatibility, but a nice thing about Gutenberg is that it provides an avenue for all plugins to work through &#8212; it gives them a way to plug in to that. It can eliminate the need for what’s currently done in custom admin screens. &nbsp;<br /></p>\n\n\n\n<p>The other beautiful thing is that because Gutenberg essentially allows for translation into many different formats &#8212; it can publish to your web page, it can publish your RSS feed, AMP, it can publish blocks that can be translated into email for newsletters &#8212; there’s so much in the structured nature of Gutenberg and the semantic HTML that it creates and the grammar that’s used to parse it, can enable for other applications. <br /></p>\n\n\n\n<p>It becomes a little bit like a <em>lingua franca</em> that even crosses CMSes. There’s now these new cross-CMS Gutenberg blocks that will be possible. It’s not just WordPress anymore &#8212; it might be a JavaScript block that was written for Drupal that you install on your WordPress site. How would that have ever happened before? That’s why we took two years off &#8212; it’s why we’ve had everyone in the world working on this thing. It’s because we want it to be #WorthIt. <br /></p>\n\n\n\n<p>And WordPress 5.0 is just the starting line. We want to get it to that place where it’s not just better than what we have today, but a world-class, web-defining experience. It’s what we want to create and what everyone deserves. </p>\n\n\n\n<h2>Was this post published with Gutenberg?</h2>\n\n\n\n<p>Of course. <img src=\"https://s.w.org/images/core/emoji/11/72x72/1f604.png\" alt=\"😄\" class=\"wp-smiley\" /> No bugs, but I do see lots of areas we can continue to improve and I&#8217;m excited to get to work on future iterations.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 Nov 2018 23:56:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WPTavern: WPCampus Seeks to Raise $30K for Gutenberg Accessibility Audit\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=86032\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/wpcampus-seeks-to-raise-30k-for-gutenberg-accessibility-audit\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4364:\"<p>WPCampus is <a href=\"https://wpcampus.org/2018/11/fundraising-for-wpcampus-gutenberg-accessibility-audit/\" rel=\"noopener\" target=\"_blank\">seeking funding</a> to conduct an accessibility audit of WordPress&#8217; Gutenberg editor. The non-profit organization is dedicated to helping web professionals, educators, and others who work with WordPress in higher education. Educational institutions often have stricter legal obligations that require software to be WCAG 2.0 level AA compliant and many European institutions set the bar even higher at WCAG 2.1.</p>\n<p><a href=\"https://wptavern.com/wpcampus-is-pursuing-an-independent-accessibility-audit-of-gutenberg\" rel=\"noopener\" target=\"_blank\">WPCampus moved to spearhead an audit</a> after Automattic decided to forego Matt MacPherson&#8217;s <a href=\"https://wptavern.com/gutenberg-accessibility-audit-postponed-indefinitely\" rel=\"noopener\" target=\"_blank\">proposal</a> for Gutenberg to undergo an accessibility audit. Results of the audit will help WPCampus determine any potential legal risk for institutions upgrading to WordPress 5.0 and will also identify specific challenges that Gutenberg introduces for assistive technology users and others with accessibility needs.</p>\n<p>&#8220;A professional accessibility audit is a large expense for a small nonprofit like WPCampus,&#8221; WPCampus director Rachel Cherry said. &#8220;Accessibility is important to all of us in the WordPress community. We’re asking for your help to fund the audit and ensure this important research is completed.&#8221;</p>\n<p>WPCampus is still evaluating proposals from vendors and will announce its selection soon, along with an updated timeline for completing the audit. The organization has set its funding goal at $30,000, an amount that falls in the mid-range of the proposals the selection committee has received. If the campaign raises more than the amount required, WPCampus plans to designate the funds for other accessibility-related efforts, such as future audits and live captioning at conferences.</p>\n<p>Two days after launching the campaign, WPCampus has received $3,692 (12%) towards its funding goal. The organization plans to share the results of the audit and any supporting documents on its website.</p>\n<p>The comments published on the donations page demonstrate how strongly supporters feel about getting an audit and using that information to make Gutenberg a tool that anyone can use. The topic of accessibility is close to the heart for many donating to the campaign.</p>\n<p>&#8220;When I was navigating stores with three small children, stores which helped me with automatic doors, wide aisles, and shopping carts for a crowd often made the decision for me as to whether I could shop at all,&#8221; WordPress developer <a href=\"https://robincornett.com/\" rel=\"noopener\" target=\"_blank\">Robin Cornett</a> said. &#8220;As we create content and build tools for the internet, we should be doing all we can to ensure the best online experience we can for everyone.&#8221;</p>\n<p>WordPress co-founder <a href=\"https://mikelittle.org/\" rel=\"noopener\" target=\"_blank\">Mike Little</a> also donated to the campaign, with comments on how important accessibility is to fulfilling the project&#8217;s mission.</p>\n<p>&#8220;As the platform that democratizes publishing, we can&#8217;t allow new features in WordPress to take that away from users with accessibility needs,&#8221; Little said.</p>\n<p>&#8220;Accessibility matters to everyone — injured, encumbered, distracted, disabled, everyone,&#8221; WordPress consultant <a href=\"http://adrianroselli.com\" rel=\"noopener\" target=\"_blank\">Adrian Roselli</a> said. Accessibility in WordPress matters to my clients because some of their people require it in order to use the tool and therefore stay gainfully employed.&#8221;</p>\n<p>The audit proposed months ago has evolved to become a community effort funded by passionate supporters working in various capacities throughout the WordPress ecosystem. If WPCampus is successful in funding its campaign, this particular approach has the benefit of making it a more cooperative effort with more people invested in the process than if it were funded by a single company. WPCampus aims to release the audit report to the community by January 17, 2019 but the dates will depend on the arrangement with the vendor. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 Nov 2018 22:03:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"WPTavern: Drupal 8.7 to Introduce Layout Builder, Contributors Face Accessibility Challenges\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=85572\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://wptavern.com/drupal-8-7-to-introduce-layout-builder-contributors-face-accessibility-challenges\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6649:\"<p>WordPress 5.0 will soon replace the editor with the new Gutenberg editor as part of a multi-phase project to improve the experience of authoring rich content. Phase 2 will shift focus to tackle site customization, bringing more complex layout and page builder capabilities to Gutenberg.</p>\n<p>As this phase kicks off soon, it&#8217;s valuable to see what other platforms are doing on this front. Drupal has traditionally appealed to a more technical audience, and probably wouldn&#8217;t count Squarespace, Wix, and Tumblr among their competitors, but the project is getting more friendly towards site builders and content editors. Drupal has brought improvements to its usability, media, and layout experiences over the past few years in support of users who have demanded a more modern, simplified admin UI. The project is currently testing a visual design tool for building layouts.</p>\n<p>Two weeks ago, Drupal founder and project lead Dries Buytaert <a href=\"https://dri.es/why-drupal-layout-builder-is-so-unique-and-powerful\" rel=\"noopener noreferrer\" target=\"_blank\">previewed the new Layout Builder</a>, an experimental feature that is stabilizing and expected to land in Drupal 8.7 in May 2019. Layout Builder offers layouts for templated content, customizations to templated layouts, and custom pages. These uses are especially important when building sites with large amounts of content that occasionally require template overrides and one-off landing pages.</p>\n<p>Buytaert described how Layout Builder approaches the creation of one-off dynamic pages, which he said is similar to the capabilities found in services such as Squarespace and projects like Gutenberg for WordPress and Drupal: </p>\n<blockquote><p>A content author can start with a blank page, design a layout, and start adding blocks. These blocks can contain videos, maps, text, a hero image, or custom-built widgets (e.g. a Drupal View showing a list of the ten most popular gift baskets). Blocks can expose configuration options to the content author. For instance, a hero block with an image and text may offer a setting to align the text left, right, or center. These settings can be configured directly from a sidebar.</p></blockquote>\n<p>Buytaert&#8217;s demo video shows the Layout Builder in action. Its capabilities are similar to many of WordPress&#8217; third-party page builders, such as <a href=\"https://elementor.com/theme-builder/\" rel=\"noopener noreferrer\" target=\"_blank\">Elementor</a> and <a href=\"https://www.wpbeaverbuilder.com/\" rel=\"noopener noreferrer\" target=\"_blank\">Beaver Builder</a>.</p>\n<p></p>\n<h3>Layout Builder Poses Accessibility Challenges</h3>\n<p>Layout Builder is anchored on one of Drupal&#8217;s stronger features &#8211; the ability to create structured content, but it faces some of the same accessibility challenges that WordPress&#8217; Gutenberg editor has encountered. </p>\n<p>In his post introducing Layout Builder, Buytaert made some pointed remarks about Drupal&#8217;s commitment to accessibility:</p>\n<blockquote><p>Accessibility is one of Drupal&#8217;s core tenets, and building software that everyone can use is part of our core values and principles. A key part of bringing Layout Builder functionality to a &#8220;stable&#8221; state for production use will be ensuring that it passes our accessibility gate (Level AA conformance with WCAG and ATAG). This holds for both the authoring tool itself, as well as the markup that it generates. We take our commitment to accessibility seriously.</p></blockquote>\n<p>Some contributors are not as optimistic about Drupal being able to fulfill these bold claims in time to ship the feature in 8.7.0. Andrew Macpherson, one of the accessibility topic maintainers for Drupal 8 core, has <a href=\"https://www.drupal.org/project/drupal/issues/3007978#comment-12853731\" rel=\"noopener\" target=\"_blank\">proposed Layout Builder offer an alternative UI</a> that users can access without the visual preview UI.</p>\n<p>&#8220;Dries&#8217; blog post about layout builder yesterday says we&#8217;re on track to mark this as stable for D8.7.0,&#8221; Macpherson said. &#8220;I&#8217;m not at all optimistic about that, because as yet there is no feasible plan for how it can be made accessible.</p>\n<p>&#8220;A minimum viable product for Layout Builder accessibility would be at least one method which works, for each user task, for each input/output method. I don&#8217;t think we can say we have found a feasible approach. We&#8217;re in deeply experimental territory here &#8211; there isn&#8217;t a well-established, reliable pattern we can just copy to make the current layout builder accessible. Essentially, we&#8217;re making stuff up in a hurry, for a novel UI, with limited opportunity for design validation. There&#8217;s no guarantee that users are going to understand it, or find it easy to use. That&#8217;s why I&#8217;m not optimistic about it getting past the accessibility gate in time for D8.7.0.&#8221;</p>\n<p>Macpherson said that WCAG strongly advises against providing alternate versions but allows for them in instances where the main version cannot be made accessible.</p>\n<p>&#8220;I think we are effectively in this situation now, although we are still exploring ideas,&#8221; he said. </p>\n<p>Macpherson also recommended they continue striving to make the drag-and-drop, visual-preview layout builder UI accessible at the same time. He referenced emerging <a href=\"https://inclusivedesignprinciples.org/#offer-choice\" rel=\"noopener\" target=\"_blank\">principles of Inclusive Design</a> for application developers, which recommend &#8220;offering choice,&#8221; giving users different ways of completing tasks, especially those that may be complex or non-standard.</p>\n<p>&#8220;Eventually, I&#8217;d like to see BOTH layout builder UIs being accessible, and offer genuinely useful choices for everyone,&#8221; Macpherson said. &#8220;But let&#8217;s take the time to do it well, instead of hastily bolting on fixes for one type of interaction method at a time, in a rush to ship a single layout builder UI. &#8221;</p>\n<p>Macpherson&#8217;s proposal is still under consideration, but it provides an interesting perspective on similar challenges WordPress contributors are facing with Gutenberg. Modernizing UIs to make the site building experience more accessible for those who don&#8217;t know how to code has to be balanced with considerations for those who may not be able see very well or use a mouse. Drupal contributors are exploring providing an alternative accessible UI as a solution to empower more users to take advantage of the new Layout Builder.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 29 Nov 2018 04:31:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 09 Jan 2019 19:14:42 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Wed, 09 Jan 2019 19:00:30 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20130911133210\";}','no'),(439,'elementor_allow_tracking','no','yes'),(440,'elementor_tracker_notice','1','yes'),(532,'theme_mods_shapely','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:5;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1543962733;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:1:{i:0;s:6:\"text-2\";}s:12:\"sidebar-home\";a:0:{}s:15:\"footer-widget-1\";a:0:{}s:15:\"footer-widget-2\";a:0:{}s:15:\"footer-widget-3\";a:0:{}s:15:\"footer-widget-4\";a:0:{}}}}','yes'),(561,'theme_mods_orfeo','a:15:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:5;}s:29:\"hestia_contact_form_shortcode\";s:14:\"[pirate_forms]\";s:28:\"zerif_frontpage_was_imported\";s:9:\"not-zerif\";s:13:\"ti_prev_theme\";s:6:\"sydney\";s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1543963199;s:4:\"data\";a:10:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:1:{i:0;s:6:\"text-2\";}s:17:\"subscribe-widgets\";a:0:{}s:19:\"sidebar-woocommerce\";a:0:{}s:15:\"sidebar-top-bar\";a:0:{}s:14:\"header-sidebar\";a:0:{}s:17:\"sidebar-big-title\";a:0:{}s:18:\"footer-one-widgets\";a:0:{}s:18:\"footer-two-widgets\";a:0:{}s:20:\"footer-three-widgets\";a:0:{}}}s:31:\"hestia_feature_thumbnail_buffer\";s:0:\"\";s:24:\"hestia_feature_thumbnail\";s:0:\"\";s:12:\"header_image\";s:100:\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/cropped-night-79624_1920.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:244;s:3:\"url\";s:100:\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/cropped-night-79624_1920.jpg\";s:13:\"thumbnail_url\";s:100:\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/cropped-night-79624_1920.jpg\";s:6:\"height\";i:1105;s:5:\"width\";i:1920;}s:27:\"hestia_big_title_background\";s:96:\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/oie_12233124sFOrgQgu.jpg\";s:23:\"hestia_header_alignment\";s:6:\"center\";s:20:\"hestia_header_layout\";s:7:\"default\";s:11:\"custom_logo\";i:246;}','yes'),(542,'theme_mods_hestia','a:7:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:5;}s:29:\"hestia_contact_form_shortcode\";s:14:\"[pirate_forms]\";s:28:\"zerif_frontpage_was_imported\";s:9:\"not-zerif\";s:13:\"ti_prev_theme\";s:6:\"sydney\";s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1543962784;s:4:\"data\";a:10:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:1:{i:0;s:6:\"text-2\";}s:17:\"subscribe-widgets\";a:0:{}s:19:\"sidebar-woocommerce\";a:0:{}s:15:\"sidebar-top-bar\";a:0:{}s:14:\"header-sidebar\";a:0:{}s:17:\"sidebar-big-title\";a:0:{}s:18:\"footer-one-widgets\";a:0:{}s:18:\"footer-two-widgets\";a:0:{}s:20:\"footer-three-widgets\";a:0:{}}}}','yes'),(543,'hestia_contact_form_legacy','1','yes'),(544,'ti_about_recommended_plugins','a:1:{s:19:\"themeisle-companion\";s:7:\"visible\";}','yes'),(545,'hestia_install','1543962760','yes'),(765,'themeisle_sdk_active_notification','a:2:{s:3:\"key\";s:48:\"themeisle_companionThemeIsle_SDK_Feedback_Review\";s:4:\"time\";i:1546522473;}','yes'),(766,'neve_upsell_off_exp','1545226717','yes'),(548,'hestia_had_elementor','no','yes'),(549,'hestia_time_activated','1543962816','yes'),(732,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:31:\"wendell.koi@seaprosolutions.com\";s:7:\"version\";s:5:\"4.9.9\";s:9:\"timestamp\";i:1544793041;}','no'),(551,'display_neve_notice','yes','yes'),(929,'db_upgraded','','yes'),(253,'_elementor_installed_time','1543489902','yes'),(254,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:2:{s:5:\"block\";a:1:{s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}}s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}s:9:\"templates\";a:454:{i:0;a:14:{s:2:\"id\";s:4:\"5525\";s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520443532\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"14\";s:11:\"trend_index\";s:1:\"9\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:1;a:14:{s:2:\"id\";s:4:\"5533\";s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520443534\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"54\";s:11:\"trend_index\";s:2:\"31\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:2;a:14:{s:2:\"id\";s:4:\"5575\";s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443543\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"30\";s:11:\"trend_index\";s:2:\"14\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:3;a:14:{s:2:\"id\";s:4:\"5615\";s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443551\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"47\";s:11:\"trend_index\";s:2:\"29\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:4;a:14:{s:2:\"id\";s:4:\"5624\";s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443553\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"102\";s:11:\"trend_index\";s:2:\"88\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:5;a:14:{s:2:\"id\";s:4:\"5684\";s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443565\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"83\";s:11:\"trend_index\";s:2:\"61\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:6;a:14:{s:2:\"id\";s:4:\"5693\";s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443567\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"210\";s:11:\"trend_index\";s:3:\"215\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:7;a:14:{s:2:\"id\";s:4:\"5703\";s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443569\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"51\";s:11:\"trend_index\";s:2:\"30\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:8;a:14:{s:2:\"id\";s:4:\"5711\";s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443571\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"212\";s:11:\"trend_index\";s:3:\"269\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:9;a:14:{s:2:\"id\";s:4:\"5719\";s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443573\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"128\";s:11:\"trend_index\";s:2:\"98\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:10;a:14:{s:2:\"id\";s:4:\"5729\";s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443575\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"317\";s:11:\"trend_index\";s:3:\"318\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:11;a:14:{s:2:\"id\";s:4:\"5737\";s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443576\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"166\";s:11:\"trend_index\";s:3:\"160\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:12;a:14:{s:2:\"id\";s:4:\"5746\";s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443578\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/faq-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"191\";s:11:\"trend_index\";s:3:\"198\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:13;a:14:{s:2:\"id\";s:4:\"5755\";s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443580\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"101\";s:11:\"trend_index\";s:2:\"92\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:14;a:14:{s:2:\"id\";s:4:\"5764\";s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520443582\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/faq-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"faq\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"316\";s:11:\"trend_index\";s:3:\"322\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:15;a:14:{s:2:\"id\";s:4:\"5773\";s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";s:10:\"1520443584\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"41\";s:11:\"trend_index\";s:2:\"27\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:16;a:14:{s:2:\"id\";s:4:\"5783\";s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";s:10:\"1520443586\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"329\";s:11:\"trend_index\";s:3:\"305\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:17;a:14:{s:2:\"id\";s:4:\"5792\";s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";s:10:\"1520443588\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"215\";s:11:\"trend_index\";s:3:\"249\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:18;a:14:{s:2:\"id\";s:4:\"5801\";s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";s:10:\"1520443589\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"29\";s:11:\"trend_index\";s:2:\"15\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:19;a:14:{s:2:\"id\";s:4:\"5811\";s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";s:10:\"1520443591\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"107\";s:11:\"trend_index\";s:3:\"110\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:20;a:14:{s:2:\"id\";s:4:\"5820\";s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443593\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"178\";s:11:\"trend_index\";s:3:\"169\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:21;a:14:{s:2:\"id\";s:4:\"5828\";s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443595\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"304\";s:11:\"trend_index\";s:3:\"244\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:22;a:14:{s:2:\"id\";s:4:\"5836\";s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443597\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"114\";s:11:\"trend_index\";s:3:\"101\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:23;a:14:{s:2:\"id\";s:4:\"5844\";s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443599\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"290\";s:11:\"trend_index\";s:3:\"231\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:24;a:14:{s:2:\"id\";s:4:\"5852\";s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";s:10:\"1520443600\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-34/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"421\";s:11:\"trend_index\";s:3:\"415\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:25;a:14:{s:2:\"id\";s:4:\"5947\";s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443621\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"347\";s:11:\"trend_index\";s:3:\"348\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:26;a:14:{s:2:\"id\";s:4:\"5956\";s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443623\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"411\";s:11:\"trend_index\";s:3:\"386\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:27;a:14:{s:2:\"id\";s:4:\"5963\";s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443626\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"79\";s:11:\"trend_index\";s:2:\"49\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:28;a:14:{s:2:\"id\";s:4:\"5974\";s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443629\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"74\";s:11:\"trend_index\";s:2:\"68\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:29;a:14:{s:2:\"id\";s:4:\"5983\";s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443630\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:11:\"[\"featues\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"240\";s:11:\"trend_index\";s:3:\"235\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:30;a:14:{s:2:\"id\";s:4:\"5991\";s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443632\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"123\";s:11:\"trend_index\";s:3:\"126\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:31;a:14:{s:2:\"id\";s:4:\"5999\";s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520443634\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"90\";s:11:\"trend_index\";s:2:\"70\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:32;a:14:{s:2:\"id\";s:4:\"6008\";s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520443636\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"80\";s:11:\"trend_index\";s:2:\"73\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:33;a:14:{s:2:\"id\";s:4:\"6027\";s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";s:10:\"1520443639\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-5-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"55\";s:11:\"trend_index\";s:2:\"42\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:34;a:14:{s:2:\"id\";s:4:\"6036\";s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";s:10:\"1520443641\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-6-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"98\";s:11:\"trend_index\";s:2:\"94\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:35;a:14:{s:2:\"id\";s:4:\"6044\";s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443643\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"82\";s:11:\"trend_index\";s:2:\"67\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:36;a:14:{s:2:\"id\";s:4:\"6053\";s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520443645\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"172\";s:11:\"trend_index\";s:3:\"234\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:37;a:14:{s:2:\"id\";s:4:\"6063\";s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443647\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"157\";s:11:\"trend_index\";s:3:\"174\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:38;a:14:{s:2:\"id\";s:4:\"6071\";s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443649\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"160\";s:11:\"trend_index\";s:3:\"171\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:39;a:14:{s:2:\"id\";s:4:\"6079\";s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443651\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"282\";s:11:\"trend_index\";s:3:\"236\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:40;a:14:{s:2:\"id\";s:4:\"6089\";s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443653\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"181\";s:11:\"trend_index\";s:3:\"168\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:41;a:14:{s:2:\"id\";s:4:\"6097\";s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443655\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"271\";s:11:\"trend_index\";s:3:\"309\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:42;a:14:{s:2:\"id\";s:4:\"6106\";s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443657\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"331\";s:11:\"trend_index\";s:3:\"270\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:43;a:14:{s:2:\"id\";s:4:\"6114\";s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443659\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"366\";s:11:\"trend_index\";s:3:\"329\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:44;a:14:{s:2:\"id\";s:4:\"6122\";s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";s:10:\"1520443661\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"52\";s:11:\"trend_index\";s:2:\"34\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:45;a:14:{s:2:\"id\";s:4:\"6135\";s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443663\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"89\";s:11:\"trend_index\";s:2:\"99\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:46;a:14:{s:2:\"id\";s:4:\"6144\";s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520443664\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"155\";s:11:\"trend_index\";s:3:\"130\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:47;a:14:{s:2:\"id\";s:4:\"6152\";s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443666\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/stats-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"220\";s:11:\"trend_index\";s:3:\"224\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:48;a:14:{s:2:\"id\";s:4:\"6162\";s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443668\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"323\";s:11:\"trend_index\";s:3:\"282\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:49;a:14:{s:2:\"id\";s:4:\"6170\";s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443670\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"326\";s:11:\"trend_index\";s:3:\"315\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:50;a:14:{s:2:\"id\";s:4:\"6178\";s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443676\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"363\";s:11:\"trend_index\";s:3:\"374\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:51;a:14:{s:2:\"id\";s:4:\"6186\";s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443678\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/stats-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"398\";s:11:\"trend_index\";s:3:\"409\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:52;a:14:{s:2:\"id\";s:4:\"6196\";s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443680\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"106\";s:11:\"trend_index\";s:3:\"147\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:53;a:14:{s:2:\"id\";s:4:\"6204\";s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443681\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"208\";s:11:\"trend_index\";s:3:\"221\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:54;a:14:{s:2:\"id\";s:4:\"6212\";s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443684\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/features-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"88\";s:11:\"trend_index\";s:2:\"63\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:55;a:14:{s:2:\"id\";s:4:\"6220\";s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443685\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/features-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"features\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"93\";s:11:\"trend_index\";s:2:\"77\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:56;a:14:{s:2:\"id\";s:4:\"6230\";s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443687\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"362\";s:11:\"trend_index\";s:3:\"287\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:57;a:14:{s:2:\"id\";s:4:\"6239\";s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443689\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"37\";s:11:\"trend_index\";s:2:\"26\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:58;a:14:{s:2:\"id\";s:4:\"6249\";s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"73\";s:11:\"trend_index\";s:2:\"59\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:59;a:14:{s:2:\"id\";s:4:\"6258\";s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443693\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"376\";s:11:\"trend_index\";s:3:\"345\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:60;a:14:{s:2:\"id\";s:4:\"6266\";s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443695\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"59\";s:11:\"trend_index\";s:2:\"54\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:61;a:14:{s:2:\"id\";s:4:\"6274\";s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520443698\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/hero-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"99\";s:11:\"trend_index\";s:2:\"97\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:62;a:14:{s:2:\"id\";s:4:\"6017\";s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";s:10:\"1520520331\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"149\";s:11:\"trend_index\";s:3:\"148\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:63;a:14:{s:2:\"id\";s:4:\"4826\";s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520520544\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"275\";s:11:\"trend_index\";s:3:\"232\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:64;a:14:{s:2:\"id\";s:4:\"4835\";s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520520546\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"368\";s:11:\"trend_index\";s:3:\"266\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:65;a:14:{s:2:\"id\";s:4:\"4843\";s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520520548\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"384\";s:11:\"trend_index\";s:3:\"387\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:66;a:14:{s:2:\"id\";s:4:\"4854\";s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520520549\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"429\";s:11:\"trend_index\";s:3:\"350\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:67;a:14:{s:2:\"id\";s:4:\"4863\";s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520520551\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"270\";s:11:\"trend_index\";s:3:\"283\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:68;a:14:{s:2:\"id\";s:4:\"4871\";s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520520552\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"249\";s:11:\"trend_index\";s:3:\"225\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:69;a:14:{s:2:\"id\";s:4:\"4880\";s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";s:10:\"1520520554\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"370\";s:11:\"trend_index\";s:3:\"363\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:70;a:14:{s:2:\"id\";s:4:\"4889\";s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";s:10:\"1520520556\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"405\";s:11:\"trend_index\";s:3:\"365\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:71;a:14:{s:2:\"id\";s:4:\"4897\";s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520520557\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"92\";s:11:\"trend_index\";s:2:\"89\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:72;a:14:{s:2:\"id\";s:4:\"4905\";s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520520559\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"121\";s:11:\"trend_index\";s:3:\"111\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:73;a:14:{s:2:\"id\";s:4:\"4913\";s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520520561\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"247\";s:11:\"trend_index\";s:3:\"239\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:74;a:14:{s:2:\"id\";s:4:\"4921\";s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520520562\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"223\";s:11:\"trend_index\";s:3:\"304\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:75;a:14:{s:2:\"id\";s:4:\"4929\";s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520520564\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"61\";s:11:\"trend_index\";s:2:\"65\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:76;a:14:{s:2:\"id\";s:4:\"4939\";s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520520565\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"94\";s:11:\"trend_index\";s:2:\"72\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:77;a:14:{s:2:\"id\";s:4:\"4947\";s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520520567\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"182\";s:11:\"trend_index\";s:3:\"204\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:78;a:14:{s:2:\"id\";s:4:\"4955\";s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520520569\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"319\";s:11:\"trend_index\";s:3:\"268\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:79;a:14:{s:2:\"id\";s:4:\"4963\";s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520520570\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"374\";s:11:\"trend_index\";s:3:\"335\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:80;a:14:{s:2:\"id\";s:4:\"4971\";s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520520572\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"431\";s:11:\"trend_index\";s:3:\"433\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:81;a:14:{s:2:\"id\";s:4:\"4979\";s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520520573\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"417\";s:11:\"trend_index\";s:3:\"380\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:82;a:14:{s:2:\"id\";s:4:\"4987\";s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";s:10:\"1520520575\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"151\";s:11:\"trend_index\";s:3:\"124\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:83;a:14:{s:2:\"id\";s:4:\"4995\";s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";s:10:\"1520520577\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"360\";s:11:\"trend_index\";s:3:\"294\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:84;a:14:{s:2:\"id\";s:4:\"5007\";s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520520578\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"62\";s:11:\"trend_index\";s:2:\"52\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:85;a:14:{s:2:\"id\";s:4:\"5019\";s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520520580\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"165\";s:11:\"trend_index\";s:3:\"155\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:86;a:14:{s:2:\"id\";s:4:\"5027\";s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520520581\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"315\";s:11:\"trend_index\";s:3:\"340\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:87;a:14:{s:2:\"id\";s:4:\"5037\";s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520520583\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"273\";s:11:\"trend_index\";s:3:\"273\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:88;a:14:{s:2:\"id\";s:4:\"5057\";s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520520586\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"214\";s:11:\"trend_index\";s:3:\"242\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:89;a:14:{s:2:\"id\";s:4:\"5071\";s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520520588\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"279\";s:11:\"trend_index\";s:3:\"197\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:90;a:14:{s:2:\"id\";s:4:\"5082\";s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520520589\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"396\";s:11:\"trend_index\";s:3:\"326\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:91;a:14:{s:2:\"id\";s:4:\"5090\";s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520520591\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"193\";s:11:\"trend_index\";s:3:\"172\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:92;a:14:{s:2:\"id\";s:4:\"5098\";s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520520593\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"163\";s:11:\"trend_index\";s:3:\"170\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:93;a:14:{s:2:\"id\";s:4:\"5107\";s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520520594\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"361\";s:11:\"trend_index\";s:3:\"369\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:94;a:14:{s:2:\"id\";s:4:\"5115\";s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520520596\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"35\";s:11:\"trend_index\";s:2:\"23\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:95;a:14:{s:2:\"id\";s:4:\"5125\";s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520520597\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"230\";s:11:\"trend_index\";s:3:\"207\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:96;a:14:{s:2:\"id\";s:4:\"5133\";s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520520599\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"167\";s:11:\"trend_index\";s:3:\"163\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:97;a:14:{s:2:\"id\";s:4:\"5141\";s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520520601\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"199\";s:11:\"trend_index\";s:3:\"351\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:98;a:14:{s:2:\"id\";s:4:\"5149\";s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520520602\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"186\";s:11:\"trend_index\";s:3:\"306\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:99;a:14:{s:2:\"id\";s:4:\"5542\";s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520520681\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"158\";s:11:\"trend_index\";s:3:\"189\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:100;a:14:{s:2:\"id\";s:4:\"5550\";s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520520682\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-33/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"297\";s:11:\"trend_index\";s:3:\"286\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:101;a:14:{s:2:\"id\";s:4:\"5558\";s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520520684\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"116\";s:11:\"trend_index\";s:3:\"117\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:102;a:14:{s:2:\"id\";s:4:\"5567\";s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520520685\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"170\";s:11:\"trend_index\";s:3:\"193\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:103;a:14:{s:2:\"id\";s:4:\"5583\";s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520520689\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"254\";s:11:\"trend_index\";s:3:\"281\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:104;a:14:{s:2:\"id\";s:4:\"5591\";s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520520691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"109\";s:11:\"trend_index\";s:3:\"121\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:105;a:14:{s:2:\"id\";s:4:\"5599\";s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520520693\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"266\";s:11:\"trend_index\";s:3:\"257\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:106;a:14:{s:2:\"id\";s:4:\"5607\";s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";s:10:\"1520520695\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"156\";s:11:\"trend_index\";s:3:\"140\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:107;a:14:{s:2:\"id\";s:4:\"5634\";s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520520699\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"168\";s:11:\"trend_index\";s:3:\"190\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:108;a:14:{s:2:\"id\";s:4:\"5642\";s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520520701\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"236\";s:11:\"trend_index\";s:3:\"209\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:109;a:14:{s:2:\"id\";s:4:\"5650\";s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520520702\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"111\";s:11:\"trend_index\";s:3:\"109\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:110;a:14:{s:2:\"id\";s:4:\"5658\";s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520520704\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"201\";s:11:\"trend_index\";s:3:\"210\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:111;a:14:{s:2:\"id\";s:4:\"5667\";s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520520705\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"131\";s:11:\"trend_index\";s:3:\"106\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:112;a:14:{s:2:\"id\";s:4:\"5675\";s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520520707\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/cta-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"369\";s:11:\"trend_index\";s:3:\"341\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:113;a:14:{s:2:\"id\";s:4:\"5860\";s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520520746\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"136\";s:11:\"trend_index\";s:3:\"165\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:114;a:14:{s:2:\"id\";s:4:\"5869\";s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520520747\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"295\";s:11:\"trend_index\";s:3:\"313\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:115;a:14:{s:2:\"id\";s:4:\"5877\";s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";s:10:\"1520520749\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"403\";s:11:\"trend_index\";s:3:\"398\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:116;a:14:{s:2:\"id\";s:4:\"5885\";s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520520751\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"313\";s:11:\"trend_index\";s:3:\"352\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:117;a:14:{s:2:\"id\";s:4:\"5893\";s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";s:10:\"1520520752\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"239\";s:11:\"trend_index\";s:3:\"243\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:118;a:14:{s:2:\"id\";s:4:\"5904\";s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";s:10:\"1520520754\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"386\";s:11:\"trend_index\";s:3:\"434\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:119;a:14:{s:2:\"id\";s:4:\"5912\";s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";s:10:\"1520520755\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"433\";s:11:\"trend_index\";s:3:\"435\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:120;a:14:{s:2:\"id\";s:4:\"5921\";s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";s:10:\"1520520757\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"255\";s:11:\"trend_index\";s:3:\"228\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:121;a:14:{s:2:\"id\";s:4:\"5930\";s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";s:10:\"1520520758\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"71\";s:11:\"trend_index\";s:2:\"47\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:122;a:14:{s:2:\"id\";s:4:\"5939\";s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";s:10:\"1520520760\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"176\";s:11:\"trend_index\";s:3:\"211\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:123;a:14:{s:2:\"id\";s:4:\"7596\";s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";s:10:\"1521546999\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"36\";s:11:\"trend_index\";s:2:\"35\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:124;a:14:{s:2:\"id\";s:4:\"7615\";s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";s:10:\"1521547237\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"38\";s:11:\"trend_index\";s:2:\"32\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:125;a:14:{s:2:\"id\";s:4:\"7627\";s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";s:10:\"1521547332\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"91\";s:11:\"trend_index\";s:3:\"141\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:126;a:14:{s:2:\"id\";s:4:\"7638\";s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";s:10:\"1521547502\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"122\";s:11:\"trend_index\";s:2:\"93\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:127;a:14:{s:2:\"id\";s:4:\"7663\";s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";s:10:\"1521547761\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"58\";s:11:\"trend_index\";s:2:\"25\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:128;a:14:{s:2:\"id\";s:4:\"7650\";s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";s:10:\"1521557736\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"84\";s:11:\"trend_index\";s:3:\"105\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:129;a:14:{s:2:\"id\";s:4:\"7686\";s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";s:10:\"1521558047\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"85\";s:11:\"trend_index\";s:2:\"91\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:130;a:14:{s:2:\"id\";s:4:\"4676\";s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";s:10:\"1522014215\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/footer_7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"196\";s:11:\"trend_index\";s:3:\"229\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:131;a:14:{s:2:\"id\";s:4:\"7997\";s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";s:10:\"1524582343\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-014/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"117\";s:11:\"trend_index\";s:2:\"66\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:132;a:14:{s:2:\"id\";s:4:\"7982\";s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1524582468\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-013/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"296\";s:11:\"trend_index\";s:3:\"216\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:133;a:14:{s:2:\"id\";s:4:\"7959\";s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1524582605\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-012/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"198\";s:11:\"trend_index\";s:3:\"183\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:134;a:14:{s:2:\"id\";s:4:\"7950\";s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1524582631\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-011/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"269\";s:11:\"trend_index\";s:3:\"167\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:135;a:14:{s:2:\"id\";s:4:\"7937\";s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1524582665\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/footer-010/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"225\";s:11:\"trend_index\";s:3:\"173\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:136;a:14:{s:2:\"id\";s:4:\"7927\";s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1524582691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"184\";s:11:\"trend_index\";s:3:\"146\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:137;a:14:{s:2:\"id\";s:4:\"7917\";s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1524582788\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"115\";s:11:\"trend_index\";s:2:\"76\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:138;a:14:{s:2:\"id\";s:4:\"7904\";s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";s:10:\"1524582814\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"227\";s:11:\"trend_index\";s:3:\"205\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:139;a:14:{s:2:\"id\";s:4:\"7837\";s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";s:10:\"1524582852\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"406\";s:11:\"trend_index\";s:3:\"395\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:140;a:14:{s:2:\"id\";s:4:\"7852\";s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";s:10:\"1524582875\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"250\";s:11:\"trend_index\";s:3:\"240\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:141;a:14:{s:2:\"id\";s:4:\"7862\";s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";s:10:\"1524582903\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"152\";s:11:\"trend_index\";s:3:\"144\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:142;a:14:{s:2:\"id\";s:4:\"7871\";s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";s:10:\"1524582927\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"118\";s:11:\"trend_index\";s:2:\"96\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:143;a:14:{s:2:\"id\";s:4:\"7884\";s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";s:10:\"1524582944\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"31\";s:11:\"trend_index\";s:3:\"177\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:144;a:14:{s:2:\"id\";s:4:\"7892\";s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";s:10:\"1524583015\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/footer-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"129\";s:11:\"trend_index\";s:3:\"100\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:145;a:14:{s:2:\"id\";s:4:\"4212\";s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443248\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"130\";s:11:\"trend_index\";s:3:\"122\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:146;a:14:{s:2:\"id\";s:4:\"7825\";s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";s:10:\"1524583273\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"86\";s:11:\"trend_index\";s:2:\"45\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:147;a:14:{s:2:\"id\";s:4:\"4227\";s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443250\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"340\";s:11:\"trend_index\";s:3:\"324\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:148;a:14:{s:2:\"id\";s:4:\"7812\";s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";s:10:\"1524583298\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"108\";s:11:\"trend_index\";s:3:\"102\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:149;a:14:{s:2:\"id\";s:4:\"4235\";s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443251\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"314\";s:11:\"trend_index\";s:3:\"237\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:150;a:14:{s:2:\"id\";s:4:\"7724\";s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1524583367\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"48\";s:11:\"trend_index\";s:2:\"21\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:151;a:14:{s:2:\"id\";s:4:\"4244\";s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443253\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"400\";s:11:\"trend_index\";s:3:\"402\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:152;a:14:{s:2:\"id\";s:4:\"7734\";s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1524583436\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"49\";s:11:\"trend_index\";s:2:\"28\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:153;a:14:{s:2:\"id\";s:4:\"4252\";s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443255\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"60\";s:11:\"trend_index\";s:2:\"53\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:154;a:14:{s:2:\"id\";s:4:\"7771\";s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1524583540\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"110\";s:11:\"trend_index\";s:3:\"116\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:155;a:14:{s:2:\"id\";s:4:\"4260\";s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443257\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"203\";s:11:\"trend_index\";s:3:\"295\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:156;a:14:{s:2:\"id\";s:4:\"7787\";s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";s:10:\"1524583598\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"126\";s:11:\"trend_index\";s:2:\"71\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:157;a:14:{s:2:\"id\";s:4:\"4268\";s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443259\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"148\";s:11:\"trend_index\";s:3:\"150\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:158;a:14:{s:2:\"id\";s:4:\"7801\";s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";s:10:\"1524583659\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"75\";s:11:\"trend_index\";s:2:\"64\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:159;a:14:{s:2:\"id\";s:4:\"4276\";s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443261\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"339\";s:11:\"trend_index\";s:3:\"312\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:160;a:14:{s:2:\"id\";s:4:\"7754\";s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1524583712\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"43\";s:11:\"trend_index\";s:3:\"151\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:161;a:14:{s:2:\"id\";s:4:\"4284\";s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443263\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"72\";s:11:\"trend_index\";s:2:\"62\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:162;a:14:{s:2:\"id\";s:4:\"7713\";s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1524584780\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"63\";s:11:\"trend_index\";s:2:\"33\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:163;a:14:{s:2:\"id\";s:4:\"4293\";s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443265\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"286\";s:11:\"trend_index\";s:3:\"247\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:164;a:14:{s:2:\"id\";s:4:\"7744\";s:5:\"title\";s:8:\"header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1524584784\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/header-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"78\";s:11:\"trend_index\";s:2:\"50\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:165;a:14:{s:2:\"id\";s:4:\"4302\";s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443266\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/services-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"81\";s:11:\"trend_index\";s:2:\"78\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:166;a:14:{s:2:\"id\";s:4:\"4313\";s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443268\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"132\";s:11:\"trend_index\";s:3:\"118\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:167;a:14:{s:2:\"id\";s:4:\"8523\";s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";s:10:\"1526415291\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"345\";s:11:\"trend_index\";s:3:\"297\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:168;a:14:{s:2:\"id\";s:4:\"4324\";s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443270\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"310\";s:11:\"trend_index\";s:3:\"300\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:169;a:14:{s:2:\"id\";s:4:\"8524\";s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";s:10:\"1526415337\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"318\";s:11:\"trend_index\";s:3:\"288\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:170;a:14:{s:2:\"id\";s:4:\"4332\";s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";s:10:\"1520443272\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"143\";s:11:\"trend_index\";s:3:\"137\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:171;a:14:{s:2:\"id\";s:4:\"8525\";s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";s:10:\"1526415374\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"407\";s:11:\"trend_index\";s:3:\"342\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:172;a:14:{s:2:\"id\";s:4:\"4341\";s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";s:10:\"1520443274\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"140\";s:11:\"trend_index\";s:3:\"185\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:173;a:14:{s:2:\"id\";s:4:\"8513\";s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";s:10:\"1526415417\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"382\";s:11:\"trend_index\";s:3:\"337\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:174;a:14:{s:2:\"id\";s:4:\"4349\";s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";s:10:\"1520443275\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"322\";s:11:\"trend_index\";s:3:\"272\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:175;a:14:{s:2:\"id\";s:4:\"8512\";s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";s:10:\"1526415449\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"414\";s:11:\"trend_index\";s:3:\"401\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:176;a:14:{s:2:\"id\";s:4:\"4357\";s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";s:10:\"1520443277\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"56\";s:11:\"trend_index\";s:2:\"51\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:177;a:14:{s:2:\"id\";s:4:\"8526\";s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";s:10:\"1526415474\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"420\";s:11:\"trend_index\";s:3:\"397\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:178;a:14:{s:2:\"id\";s:4:\"4368\";s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";s:10:\"1520443279\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"77\";s:11:\"trend_index\";s:2:\"57\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:179;a:14:{s:2:\"id\";s:4:\"8505\";s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";s:10:\"1526415501\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"434\";s:11:\"trend_index\";s:3:\"432\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:180;a:14:{s:2:\"id\";s:4:\"4376\";s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";s:10:\"1520443281\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"142\";s:11:\"trend_index\";s:3:\"133\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:181;a:14:{s:2:\"id\";s:4:\"8511\";s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";s:10:\"1526415528\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"364\";s:11:\"trend_index\";s:3:\"308\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:182;a:14:{s:2:\"id\";s:4:\"4391\";s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";s:10:\"1520443283\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"145\";s:11:\"trend_index\";s:3:\"182\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:183;a:14:{s:2:\"id\";s:4:\"8514\";s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";s:10:\"1526415558\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/404-page-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"394\";s:11:\"trend_index\";s:3:\"338\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:184;a:14:{s:2:\"id\";s:4:\"4400\";s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";s:10:\"1520443285\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/services-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"services\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"259\";s:11:\"trend_index\";s:3:\"241\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:185;a:14:{s:2:\"id\";s:4:\"8676\";s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1527682423\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"358\";s:11:\"trend_index\";s:3:\"298\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:186;a:14:{s:2:\"id\";s:4:\"4411\";s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443287\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"96\";s:11:\"trend_index\";s:2:\"87\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:187;a:14:{s:2:\"id\";s:4:\"8678\";s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1527682780\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"188\";s:11:\"trend_index\";s:3:\"152\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:188;a:14:{s:2:\"id\";s:4:\"4420\";s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443289\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"169\";s:11:\"trend_index\";s:3:\"176\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:189;a:14:{s:2:\"id\";s:4:\"8679\";s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1527682847\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"265\";s:11:\"trend_index\";s:3:\"208\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:190;a:14:{s:2:\"id\";s:4:\"4428\";s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443291\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"97\";s:11:\"trend_index\";s:3:\"119\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:191;a:14:{s:2:\"id\";s:4:\"8680\";s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";s:10:\"1527682896\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"402\";s:11:\"trend_index\";s:3:\"420\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:192;a:14:{s:2:\"id\";s:4:\"4436\";s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443293\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"159\";s:11:\"trend_index\";s:3:\"142\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:193;a:14:{s:2:\"id\";s:4:\"8681\";s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1527682969\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"338\";s:11:\"trend_index\";s:3:\"261\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:194;a:14:{s:2:\"id\";s:4:\"4444\";s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443295\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"104\";s:11:\"trend_index\";s:2:\"95\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:195;a:14:{s:2:\"id\";s:4:\"8682\";s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1527683026\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"401\";s:11:\"trend_index\";s:3:\"392\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:196;a:14:{s:2:\"id\";s:4:\"4452\";s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443296\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"154\";s:11:\"trend_index\";s:3:\"154\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:197;a:14:{s:2:\"id\";s:4:\"8703\";s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1527683072\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-page-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"389\";s:11:\"trend_index\";s:3:\"279\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:198;a:14:{s:2:\"id\";s:4:\"4460\";s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443298\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"124\";s:11:\"trend_index\";s:3:\"128\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:199;a:14:{s:2:\"id\";s:4:\"8961\";s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";s:10:\"1528639909\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"95\";s:11:\"trend_index\";s:2:\"56\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:200;a:14:{s:2:\"id\";s:4:\"4468\";s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443301\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"144\";s:11:\"trend_index\";s:3:\"120\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:201;a:14:{s:2:\"id\";s:4:\"8969\";s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";s:10:\"1528700014\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"222\";s:11:\"trend_index\";s:3:\"138\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:202;a:14:{s:2:\"id\";s:4:\"4476\";s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443303\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"253\";s:11:\"trend_index\";s:3:\"233\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:203;a:14:{s:2:\"id\";s:4:\"8973\";s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";s:10:\"1528700205\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"175\";s:11:\"trend_index\";s:3:\"115\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:204;a:14:{s:2:\"id\";s:4:\"4484\";s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443305\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/contact-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"332\";s:11:\"trend_index\";s:3:\"274\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:205;a:14:{s:2:\"id\";s:4:\"8977\";s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";s:10:\"1528700326\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"365\";s:11:\"trend_index\";s:3:\"187\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:206;a:14:{s:2:\"id\";s:4:\"4492\";s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443307\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"contact\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"65\";s:11:\"trend_index\";s:2:\"39\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:207;a:14:{s:2:\"id\";s:4:\"8981\";s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";s:10:\"1528700484\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"337\";s:11:\"trend_index\";s:3:\"259\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:208;a:14:{s:2:\"id\";s:4:\"4500\";s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443308\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"399\";s:11:\"trend_index\";s:3:\"316\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:209;a:14:{s:2:\"id\";s:4:\"8985\";s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";s:10:\"1528700612\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"237\";s:11:\"trend_index\";s:3:\"175\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:210;a:14:{s:2:\"id\";s:4:\"4509\";s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443310\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"438\";s:11:\"trend_index\";s:3:\"441\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:211;a:14:{s:2:\"id\";s:4:\"8989\";s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";s:10:\"1528701063\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"219\";s:11:\"trend_index\";s:3:\"201\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:212;a:14:{s:2:\"id\";s:4:\"4521\";s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443312\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"330\";s:11:\"trend_index\";s:3:\"317\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:213;a:14:{s:2:\"id\";s:4:\"8996\";s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";s:10:\"1528701290\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"206\";s:11:\"trend_index\";s:3:\"161\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:214;a:14:{s:2:\"id\";s:4:\"4529\";s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443314\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"430\";s:11:\"trend_index\";s:3:\"436\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:215;a:14:{s:2:\"id\";s:4:\"9001\";s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";s:10:\"1528701433\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/archive-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"268\";s:11:\"trend_index\";s:3:\"238\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:216;a:14:{s:2:\"id\";s:4:\"4537\";s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443315\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"426\";s:11:\"trend_index\";s:3:\"412\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:217;a:14:{s:2:\"id\";s:4:\"9119\";s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";s:10:\"1532428138\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/blocks/demo/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"311\";s:11:\"trend_index\";s:3:\"206\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:218;a:14:{s:2:\"id\";s:4:\"4545\";s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443317\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"436\";s:11:\"trend_index\";s:3:\"422\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:219;a:14:{s:2:\"id\";s:4:\"9127\";s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";s:10:\"1532428699\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/header-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"50\";s:11:\"trend_index\";s:2:\"60\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:220;a:14:{s:2:\"id\";s:4:\"4553\";s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443319\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"410\";s:11:\"trend_index\";s:3:\"394\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:221;a:14:{s:2:\"id\";s:4:\"4562\";s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443322\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"435\";s:11:\"trend_index\";s:3:\"417\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:222;a:14:{s:2:\"id\";s:4:\"4572\";s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443324\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"320\";s:11:\"trend_index\";s:3:\"291\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:223;a:14:{s:2:\"id\";s:4:\"9174\";s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";s:10:\"1532950125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"119\";s:11:\"trend_index\";s:2:\"41\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:224;a:14:{s:2:\"id\";s:4:\"4580\";s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443326\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"422\";s:11:\"trend_index\";s:3:\"429\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:225;a:14:{s:2:\"id\";s:4:\"9178\";s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";s:10:\"1532951997\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"162\";s:11:\"trend_index\";s:3:\"108\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:226;a:14:{s:2:\"id\";s:4:\"4589\";s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443327\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"437\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:227;a:14:{s:2:\"id\";s:4:\"9180\";s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";s:10:\"1532952302\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"200\";s:11:\"trend_index\";s:3:\"159\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:228;a:14:{s:2:\"id\";s:4:\"4597\";s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443330\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"427\";s:11:\"trend_index\";s:3:\"407\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:229;a:14:{s:2:\"id\";s:4:\"9182\";s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";s:10:\"1532952606\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/single-product-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"228\";s:11:\"trend_index\";s:2:\"79\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:230;a:14:{s:2:\"id\";s:4:\"4605\";s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520443332\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/pricing-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"439\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:231;a:14:{s:2:\"id\";s:4:\"9239\";s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";s:10:\"1532953482\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"174\";s:11:\"trend_index\";s:2:\"84\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:232;a:14:{s:2:\"id\";s:4:\"4613\";s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443334\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/pricing-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"pricing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"418\";s:11:\"trend_index\";s:3:\"400\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:233;a:14:{s:2:\"id\";s:4:\"9247\";s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";s:10:\"1532953793\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"180\";s:11:\"trend_index\";s:2:\"80\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:234;a:14:{s:2:\"id\";s:4:\"9254\";s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";s:10:\"1532954032\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"189\";s:11:\"trend_index\";s:3:\"135\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:235;a:14:{s:2:\"id\";s:4:\"9301\";s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";s:10:\"1537440661\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"272\";s:11:\"trend_index\";s:3:\"132\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:236;a:14:{s:2:\"id\";s:4:\"9296\";s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";s:10:\"1537440673\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"301\";s:11:\"trend_index\";s:3:\"180\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:237;a:14:{s:2:\"id\";s:4:\"9313\";s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";s:10:\"1537440798\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"248\";s:11:\"trend_index\";s:3:\"129\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:238;a:14:{s:2:\"id\";s:4:\"9343\";s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";s:10:\"1537443531\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"280\";s:11:\"trend_index\";s:3:\"131\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:239;a:14:{s:2:\"id\";s:4:\"9349\";s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";s:10:\"1537443903\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/single-post-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"194\";s:11:\"trend_index\";s:2:\"83\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:240;a:14:{s:2:\"id\";s:4:\"4690\";s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443348\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"238\";s:11:\"trend_index\";s:3:\"213\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:241;a:14:{s:2:\"id\";s:4:\"4698\";s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443350\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"377\";s:11:\"trend_index\";s:3:\"367\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:242;a:14:{s:2:\"id\";s:4:\"4706\";s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443352\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"138\";s:11:\"trend_index\";s:3:\"149\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:243;a:14:{s:2:\"id\";s:4:\"4718\";s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443354\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/team-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"173\";s:11:\"trend_index\";s:3:\"194\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:244;a:14:{s:2:\"id\";s:4:\"4727\";s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443356\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"357\";s:11:\"trend_index\";s:3:\"320\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:245;a:14:{s:2:\"id\";s:4:\"9559\";s:5:\"title\";s:21:\"Slide-In | Login | 01\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_login_01_small.png\";s:12:\"tmpl_created\";s:10:\"1546946547\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/slide-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"443\";s:11:\"trend_index\";s:3:\"430\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:246;a:14:{s:2:\"id\";s:4:\"4736\";s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443358\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"141\";s:11:\"trend_index\";s:3:\"166\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:247;a:14:{s:2:\"id\";s:4:\"9571\";s:5:\"title\";s:19:\"Fly In | Login | 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/FlyIn_Login_01_small.png\";s:12:\"tmpl_created\";s:10:\"1546948252\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/fly-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"446\";s:11:\"trend_index\";s:3:\"442\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:248;a:14:{s:2:\"id\";s:4:\"4746\";s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443360\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"242\";s:11:\"trend_index\";s:3:\"219\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:249;a:14:{s:2:\"id\";s:4:\"4759\";s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443362\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"278\";s:11:\"trend_index\";s:3:\"214\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:250;a:14:{s:2:\"id\";s:4:\"9592\";s:5:\"title\";s:24:\"Classic | Promotion | 01\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Promotion_small_01.png\";s:12:\"tmpl_created\";s:10:\"1546963720\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"447\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:251;a:14:{s:2:\"id\";s:4:\"4770\";s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443364\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/team-12-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"356\";s:11:\"trend_index\";s:3:\"284\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:252;a:14:{s:2:\"id\";s:4:\"9602\";s:5:\"title\";s:30:\"Bottom Bar | Announcement | 01\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottombar_Announcement_small_01.png\";s:12:\"tmpl_created\";s:10:\"1546964559\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/bottom-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:1:\"0\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:253;a:14:{s:2:\"id\";s:4:\"4781\";s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443365\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"213\";s:11:\"trend_index\";s:3:\"196\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:254;a:14:{s:2:\"id\";s:4:\"9611\";s:5:\"title\";s:21:\"Hello Bar | Sale | 01\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Sale_small_01.png\";s:12:\"tmpl_created\";s:10:\"1546965350\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/hello-bar-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"440\";s:11:\"trend_index\";s:3:\"421\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:255;a:14:{s:2:\"id\";s:4:\"4793\";s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443367\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"187\";s:11:\"trend_index\";s:3:\"162\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:256;a:14:{s:2:\"id\";s:4:\"9622\";s:5:\"title\";s:24:\"Classic | Promotion | 02\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_promotion_small_02.png\";s:12:\"tmpl_created\";s:10:\"1546965896\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"442\";s:11:\"trend_index\";s:3:\"437\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:257;a:14:{s:2:\"id\";s:4:\"4801\";s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";s:10:\"1520443369\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"328\";s:11:\"trend_index\";s:3:\"302\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:258;a:14:{s:2:\"id\";s:4:\"9631\";s:5:\"title\";s:20:\"Slide-in | Sale | 01\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Sale_small_01.png\";s:12:\"tmpl_created\";s:10:\"1546968270\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:1:\"0\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:259;a:14:{s:2:\"id\";s:4:\"4809\";s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443371\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"262\";s:11:\"trend_index\";s:3:\"303\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:260;a:14:{s:2:\"id\";s:4:\"9640\";s:5:\"title\";s:23:\"Full-Screen | Sale | 01\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/Full-Screen_Sale_small_01.png\";s:12:\"tmpl_created\";s:10:\"1546968877\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:1:\"0\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:261;a:14:{s:2:\"id\";s:4:\"4818\";s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520443373\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/team-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"team\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"392\";s:11:\"trend_index\";s:3:\"384\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:262;a:14:{s:2:\"id\";s:4:\"9650\";s:5:\"title\";s:26:\"Fly-In | Register_big | 01\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/Fly-In_Register_small_01a.png\";s:12:\"tmpl_created\";s:10:\"1547007598\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/fly-in-register_big-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:1:\"0\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:263;a:14:{s:2:\"id\";s:4:\"5045\";s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443423\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"425\";s:11:\"trend_index\";s:3:\"388\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:264;a:14:{s:2:\"id\";s:4:\"9662\";s:5:\"title\";s:26:\"Bottom Bar | Register | 01\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottom-Bar_Register_small_01.png\";s:12:\"tmpl_created\";s:10:\"1547009087\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/bottom-bar-register-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:1:\"0\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:265;a:14:{s:2:\"id\";s:4:\"5157\";s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443448\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"359\";s:11:\"trend_index\";s:3:\"334\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:266;a:14:{s:2:\"id\";s:4:\"9671\";s:5:\"title\";s:29:\"Hello Bar | Announcement | 01\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Announcement_small_01.png\";s:12:\"tmpl_created\";s:10:\"1547010259\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"444\";s:11:\"trend_index\";s:3:\"444\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:267;a:14:{s:2:\"id\";s:4:\"5165\";s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443450\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"419\";s:11:\"trend_index\";s:3:\"364\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:268;a:14:{s:2:\"id\";s:4:\"9680\";s:5:\"title\";s:28:\"Slide-in | Content Lock | 01\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Content-lock_small_01.png\";s:12:\"tmpl_created\";s:10:\"1547010967\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/slide-in-content-lock-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:1:\"0\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:269;a:14:{s:2:\"id\";s:4:\"5173\";s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443452\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"285\";s:11:\"trend_index\";s:3:\"227\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:270;a:14:{s:2:\"id\";s:4:\"9690\";s:5:\"title\";s:22:\"Classic | Contact | 01\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_01.png\";s:12:\"tmpl_created\";s:10:\"1547011716\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"445\";s:11:\"trend_index\";s:3:\"439\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:271;a:14:{s:2:\"id\";s:4:\"5181\";s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443454\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"393\";s:11:\"trend_index\";s:3:\"328\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:272;a:14:{s:2:\"id\";s:4:\"9699\";s:5:\"title\";s:22:\"Classic | Contact | 02\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_02.png\";s:12:\"tmpl_created\";s:10:\"1547015827\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"441\";s:11:\"trend_index\";s:3:\"423\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:273;a:14:{s:2:\"id\";s:4:\"5189\";s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443456\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"381\";s:11:\"trend_index\";s:3:\"383\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:274;a:14:{s:2:\"id\";s:4:\"9709\";s:5:\"title\";s:30:\"Full-Screen | Welcome-Mat | 01\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2019/01/Full-Screen_Welcome-Mat_01_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547023834\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-welcome-mat-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:1:\"0\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:275;a:14:{s:2:\"id\";s:4:\"5198\";s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443458\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"413\";s:11:\"trend_index\";s:3:\"393\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:276;a:14:{s:2:\"id\";s:4:\"5206\";s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443459\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"423\";s:11:\"trend_index\";s:3:\"385\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:277;a:14:{s:2:\"id\";s:4:\"5214\";s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443462\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"197\";s:11:\"trend_index\";s:3:\"143\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:278;a:14:{s:2:\"id\";s:4:\"5222\";s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443464\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"form\",\"subscribe\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"383\";s:11:\"trend_index\";s:3:\"343\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:279;a:14:{s:2:\"id\";s:4:\"5230\";s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443466\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"contact\",\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"325\";s:11:\"trend_index\";s:3:\"267\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:280;a:14:{s:2:\"id\";s:4:\"5238\";s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443468\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/hero-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"428\";s:11:\"trend_index\";s:3:\"399\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:281;a:14:{s:2:\"id\";s:4:\"5249\";s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443470\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/blocks/cta-32/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"409\";s:11:\"trend_index\";s:3:\"419\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:282;a:14:{s:2:\"id\";s:4:\"5257\";s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443472\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/contact-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"form\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"380\";s:11:\"trend_index\";s:3:\"325\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:283;a:14:{s:2:\"id\";s:4:\"5266\";s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443474\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"125\";s:11:\"trend_index\";s:3:\"113\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:284;a:14:{s:2:\"id\";s:4:\"5275\";s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443476\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"336\";s:11:\"trend_index\";s:3:\"354\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:285;a:14:{s:2:\"id\";s:4:\"5283\";s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443478\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"308\";s:11:\"trend_index\";s:3:\"262\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:286;a:14:{s:2:\"id\";s:4:\"5290\";s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";s:10:\"1520443480\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"416\";s:11:\"trend_index\";s:3:\"370\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:287;a:14:{s:2:\"id\";s:4:\"5298\";s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443482\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"385\";s:11:\"trend_index\";s:3:\"371\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:288;a:14:{s:2:\"id\";s:4:\"5306\";s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";s:10:\"1520443484\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"432\";s:11:\"trend_index\";s:3:\"440\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:289;a:14:{s:2:\"id\";s:4:\"5315\";s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";s:10:\"1520443486\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"397\";s:11:\"trend_index\";s:3:\"373\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:290;a:14:{s:2:\"id\";s:4:\"5324\";s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";s:10:\"1520443488\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"408\";s:11:\"trend_index\";s:3:\"379\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:291;a:14:{s:2:\"id\";s:4:\"5333\";s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443489\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"235\";s:11:\"trend_index\";s:3:\"260\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:292;a:14:{s:2:\"id\";s:4:\"5341\";s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443491\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"424\";s:11:\"trend_index\";s:3:\"431\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:293;a:14:{s:2:\"id\";s:4:\"5349\";s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443493\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"229\";s:11:\"trend_index\";s:3:\"226\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:294;a:14:{s:2:\"id\";s:4:\"5357\";s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";s:10:\"1520443495\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"312\";s:11:\"trend_index\";s:3:\"293\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:295;a:14:{s:2:\"id\";s:4:\"5368\";s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443497\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/clients-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"216\";s:11:\"trend_index\";s:3:\"250\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:296;a:14:{s:2:\"id\";s:4:\"5381\";s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443499\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"177\";s:11:\"trend_index\";s:3:\"191\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:297;a:14:{s:2:\"id\";s:4:\"5389\";s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520443501\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/clients-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"clients\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"372\";s:11:\"trend_index\";s:3:\"330\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:298;a:14:{s:2:\"id\";s:4:\"5397\";s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";s:10:\"1520443503\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"139\";s:11:\"trend_index\";s:3:\"156\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:299;a:14:{s:2:\"id\";s:4:\"5405\";s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";s:10:\"1520443505\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"211\";s:11:\"trend_index\";s:3:\"223\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:300;a:14:{s:2:\"id\";s:4:\"5413\";s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";s:10:\"1520443507\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"134\";s:11:\"trend_index\";s:3:\"158\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:301;a:14:{s:2:\"id\";s:4:\"5421\";s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";s:10:\"1520443509\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"246\";s:11:\"trend_index\";s:3:\"202\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:302;a:14:{s:2:\"id\";s:4:\"5429\";s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";s:10:\"1520443510\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"103\";s:11:\"trend_index\";s:3:\"112\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:303;a:14:{s:2:\"id\";s:4:\"5438\";s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";s:10:\"1520443512\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"207\";s:11:\"trend_index\";s:3:\"192\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:304;a:14:{s:2:\"id\";s:4:\"5447\";s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";s:10:\"1520443514\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"70\";s:11:\"trend_index\";s:2:\"82\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:305;a:14:{s:2:\"id\";s:4:\"5455\";s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";s:10:\"1520443516\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"127\";s:11:\"trend_index\";s:3:\"127\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:306;a:14:{s:2:\"id\";s:4:\"5464\";s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";s:10:\"1520443518\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"221\";s:11:\"trend_index\";s:3:\"222\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:307;a:14:{s:2:\"id\";s:4:\"5472\";s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";s:10:\"1520443520\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"185\";s:11:\"trend_index\";s:3:\"178\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:308;a:14:{s:2:\"id\";s:4:\"5480\";s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";s:10:\"1520443522\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/about-4-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"378\";s:11:\"trend_index\";s:3:\"357\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:309;a:14:{s:2:\"id\";s:4:\"5488\";s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";s:10:\"1520443524\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"299\";s:11:\"trend_index\";s:3:\"199\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:310;a:14:{s:2:\"id\";s:4:\"5496\";s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";s:10:\"1520443526\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/blocks/about-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"412\";s:11:\"trend_index\";s:3:\"359\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:311;a:14:{s:2:\"id\";s:4:\"5504\";s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";s:10:\"1520443528\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"87\";s:11:\"trend_index\";s:2:\"86\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:312;a:14:{s:2:\"id\";s:4:\"5515\";s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";s:10:\"1520443530\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/blocks/about-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"252\";s:11:\"trend_index\";s:3:\"275\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:313;a:14:{s:2:\"id\";s:4:\"9139\";s:5:\"title\";s:25:\"Homepage &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/07/Get_Started_250.png\";s:12:\"tmpl_created\";s:10:\"1532949924\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:167:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"marketing campaign\",\"marketing landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";s:2:\"14\";s:16:\"popularity_index\";s:1:\"9\";s:11:\"trend_index\";s:1:\"2\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:314;a:14:{s:2:\"id\";s:3:\"147\";s:5:\"title\";s:20:\"Homepage &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0004.png\";s:12:\"tmpl_created\";s:10:\"1470829868\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/homepage-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"App\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"15\";s:16:\"popularity_index\";s:1:\"1\";s:11:\"trend_index\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:315;a:14:{s:2:\"id\";s:4:\"2402\";s:5:\"title\";s:32:\"Homepage &#8211; Interior Design\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2017/09/Interior.png\";s:12:\"tmpl_created\";s:10:\"1506441447\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:193:\"[\"Architecture\",\"building\",\"business\",\"Creative\",\"exterior design\",\"furniture design\",\"Gallery\",\"garden design\",\"house\",\"interior design\",\"landscape design\",\"multipurpose\",\"portfolio\",\"studio\"]\";s:10:\"menu_order\";s:2:\"16\";s:16:\"popularity_index\";s:2:\"46\";s:11:\"trend_index\";s:2:\"36\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:316;a:14:{s:2:\"id\";s:3:\"777\";s:5:\"title\";s:28:\"Homepage &#8211; Coffee Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/01/rest-home.jpg\";s:12:\"tmpl_created\";s:10:\"1485273092\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/homepage-coffee-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:41:\"[\"Coffee\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";s:2:\"17\";s:16:\"popularity_index\";s:2:\"66\";s:11:\"trend_index\";s:3:\"103\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:317;a:14:{s:2:\"id\";s:4:\"2404\";s:5:\"title\";s:24:\"Homepage &#8211; Product\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/09/product.png\";s:12:\"tmpl_created\";s:10:\"1506441452\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:103:\"[\"business\",\"colorful\",\"ecommerce\",\"flat\",\"mobile\",\"modern\",\"responsive\",\"retina\",\"Shop\",\"woocommerce\"]\";s:10:\"menu_order\";s:2:\"18\";s:16:\"popularity_index\";s:2:\"69\";s:11:\"trend_index\";s:2:\"85\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:318;a:14:{s:2:\"id\";s:3:\"492\";s:5:\"title\";s:25:\"Homepage &#8211; Law firm\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0024.png\";s:12:\"tmpl_created\";s:10:\"1477388365\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-law-firm/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Firm\",\"Homepage\",\"Law\"]\";s:10:\"menu_order\";s:2:\"19\";s:16:\"popularity_index\";s:1:\"6\";s:11:\"trend_index\";s:1:\"8\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:319;a:14:{s:2:\"id\";s:3:\"225\";s:5:\"title\";s:27:\"Homepage &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0016.png\";s:12:\"tmpl_created\";s:10:\"1470829872\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Homepage\",\"Restaurant\"]\";s:10:\"menu_order\";s:2:\"20\";s:16:\"popularity_index\";s:1:\"2\";s:11:\"trend_index\";s:1:\"3\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:320;a:14:{s:2:\"id\";s:4:\"3451\";s:5:\"title\";s:39:\"Homepage &#8211; Goodness meal services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/11/goodness-featured-image.png\";s:12:\"tmpl_created\";s:10:\"1512054116\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/homepage-goodness-meal-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"21\";s:16:\"popularity_index\";s:3:\"120\";s:11:\"trend_index\";s:3:\"157\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:321;a:14:{s:2:\"id\";s:4:\"2152\";s:5:\"title\";s:26:\"Homepage &#8211; Cake Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-home.png\";s:12:\"tmpl_created\";s:10:\"1499774132\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/homepage-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Cake\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";s:2:\"22\";s:16:\"popularity_index\";s:3:\"192\";s:11:\"trend_index\";s:3:\"220\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:322;a:14:{s:2:\"id\";s:4:\"1068\";s:5:\"title\";s:27:\"Homepage &#8211; Copywriter\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/copywriter.png\";s:12:\"tmpl_created\";s:10:\"1488805928\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-copywriter/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Copywriter\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"23\";s:16:\"popularity_index\";s:3:\"100\";s:11:\"trend_index\";s:3:\"195\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:323;a:14:{s:2:\"id\";s:3:\"181\";s:5:\"title\";s:23:\"Homepage &#8211; Agency\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0019.png\";s:12:\"tmpl_created\";s:10:\"1470826567\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/homepage-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"24\";s:16:\"popularity_index\";s:1:\"3\";s:11:\"trend_index\";s:1:\"6\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:324;a:14:{s:2:\"id\";s:3:\"463\";s:5:\"title\";s:22:\"Homepage &#8211; Study\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0022.png\";s:12:\"tmpl_created\";s:10:\"1477388340\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/homepage-study/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Education\",\"Homepage\",\"Study\"]\";s:10:\"menu_order\";s:2:\"25\";s:16:\"popularity_index\";s:1:\"5\";s:11:\"trend_index\";s:1:\"4\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:325;a:14:{s:2:\"id\";s:4:\"2813\";s:5:\"title\";s:32:\"Homepage &#8211; Creative Agency\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/11/Creative-Agency-–-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1509615049\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-creative-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"26\";s:16:\"popularity_index\";s:2:\"57\";s:11:\"trend_index\";s:2:\"58\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:326;a:14:{s:2:\"id\";s:3:\"728\";s:5:\"title\";s:33:\"Homepage &#8211; Delivery Company\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/01/delivery-company-home-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485269993\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/homepage-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Delivery\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"27\";s:16:\"popularity_index\";s:3:\"133\";s:11:\"trend_index\";s:3:\"253\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:327;a:14:{s:2:\"id\";s:4:\"2403\";s:5:\"title\";s:29:\"Homepage &#8211; Luxury Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/09/Hotel.png\";s:12:\"tmpl_created\";s:10:\"1506441428\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/homepage-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"28\";s:16:\"popularity_index\";s:3:\"146\";s:11:\"trend_index\";s:3:\"181\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:328;a:14:{s:2:\"id\";s:3:\"519\";s:5:\"title\";s:24:\"Homepage &#8211; Fitness\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0023.png\";s:12:\"tmpl_created\";s:10:\"1477388808\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Fitness\",\"Gym\",\"Health\",\"Homepage\",\"Sport\"]\";s:10:\"menu_order\";s:2:\"29\";s:16:\"popularity_index\";s:1:\"7\";s:11:\"trend_index\";s:2:\"11\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:329;a:14:{s:2:\"id\";s:4:\"1903\";s:5:\"title\";s:20:\"One Page &#8211; Spa\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/06/spa.png\";s:12:\"tmpl_created\";s:10:\"1496822325\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/one-page-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:132:\"[\"beauty\",\"care\",\"girly\",\"hair\",\"Health\",\"hospitality\",\"massage\",\"medical\",\"parlor\",\"physiotherapy\",\"salon\",\"spa\",\"wellness\",\"yoga\"]\";s:10:\"menu_order\";s:2:\"30\";s:16:\"popularity_index\";s:3:\"105\";s:11:\"trend_index\";s:3:\"164\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:330;a:14:{s:2:\"id\";s:4:\"2123\";s:5:\"title\";s:33:\"One Page &#8211; Architect Office\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/06/architect.png\";s:12:\"tmpl_created\";s:10:\"1499772989\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/one-page-architect-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"31\";s:16:\"popularity_index\";s:1:\"8\";s:11:\"trend_index\";s:1:\"7\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:331;a:14:{s:2:\"id\";s:4:\"1888\";s:5:\"title\";s:32:\"One Page &#8211; Creative Meetup\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2017/06/creative-meetup.png\";s:12:\"tmpl_created\";s:10:\"1496822319\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/one-page-creative-meetup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"32\";s:16:\"popularity_index\";s:3:\"135\";s:11:\"trend_index\";s:3:\"218\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:332;a:14:{s:2:\"id\";s:4:\"1880\";s:5:\"title\";s:24:\"One Page &#8211; Wedding\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/06/wedding.png\";s:12:\"tmpl_created\";s:10:\"1496822317\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/one-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"bride\",\"ceremony\",\"cute\",\"event\",\"fancy\",\"girly\",\"groom\",\"guestbook\",\"marriage\"]\";s:10:\"menu_order\";s:2:\"33\";s:16:\"popularity_index\";s:3:\"321\";s:11:\"trend_index\";s:3:\"368\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:333;a:14:{s:2:\"id\";s:4:\"1891\";s:5:\"title\";s:35:\"One Page &#8211; Textile Convention\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/06/textile-meetup.png\";s:12:\"tmpl_created\";s:10:\"1496822323\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/one-page-textile-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"34\";s:16:\"popularity_index\";s:3:\"292\";s:11:\"trend_index\";s:3:\"372\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:334;a:14:{s:2:\"id\";s:4:\"1885\";s:5:\"title\";s:29:\"One Page &#8211; Yacht Rental\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/06/yacht-home.png\";s:12:\"tmpl_created\";s:10:\"1496822321\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/one-page-yacht-rental/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"35\";s:16:\"popularity_index\";s:3:\"113\";s:11:\"trend_index\";s:3:\"264\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:335;a:14:{s:2:\"id\";s:4:\"2723\";s:5:\"title\";s:34:\"Portfolio &#8211; Graphic Designer\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/11/Graphic-Designer-–-Portfolio.png\";s:12:\"tmpl_created\";s:10:\"1509633883\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-graphic-designer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"36\";s:16:\"popularity_index\";s:3:\"112\";s:11:\"trend_index\";s:3:\"125\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:336;a:14:{s:2:\"id\";s:4:\"2145\";s:5:\"title\";s:30:\"About &#8211; Delivery Company\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-about.png\";s:12:\"tmpl_created\";s:10:\"1499774125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/about-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:10:\"[\"moving\"]\";s:10:\"menu_order\";s:2:\"37\";s:16:\"popularity_index\";s:3:\"224\";s:11:\"trend_index\";s:3:\"188\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:337;a:14:{s:2:\"id\";s:4:\"2155\";s:5:\"title\";s:23:\"About &#8211; Cake Shop\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-about.png\";s:12:\"tmpl_created\";s:10:\"1499774130\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/about-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Food\"]\";s:10:\"menu_order\";s:2:\"38\";s:16:\"popularity_index\";s:3:\"298\";s:11:\"trend_index\";s:3:\"327\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:338;a:14:{s:2:\"id\";s:4:\"1085\";s:5:\"title\";s:21:\"About &#8211; Startup\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/03/Startup.png\";s:12:\"tmpl_created\";s:10:\"1488810874\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/about-startup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"About\",\"Startup\"]\";s:10:\"menu_order\";s:2:\"39\";s:16:\"popularity_index\";s:1:\"4\";s:11:\"trend_index\";s:1:\"5\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:339;a:14:{s:2:\"id\";s:3:\"143\";s:5:\"title\";s:22:\"About &#8211; Personal\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0010.png\";s:12:\"tmpl_created\";s:10:\"1470820447\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-personal/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"About\",\"Personal\"]\";s:10:\"menu_order\";s:2:\"40\";s:16:\"popularity_index\";s:2:\"16\";s:11:\"trend_index\";s:2:\"17\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:340;a:14:{s:2:\"id\";s:3:\"101\";s:5:\"title\";s:16:\"About &#8211; CV\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0018.png\";s:12:\"tmpl_created\";s:10:\"1470829785\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:98:\"https://library.elementor.com/about-cv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"creative portfolio\",\"Personal\",\"portfolio\",\"professional\",\"resume\",\"vcard\"]\";s:10:\"menu_order\";s:2:\"41\";s:16:\"popularity_index\";s:2:\"23\";s:11:\"trend_index\";s:2:\"40\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:341;a:14:{s:2:\"id\";s:3:\"140\";s:5:\"title\";s:25:\"About &#8211; Art Gallery\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0009.png\";s:12:\"tmpl_created\";s:10:\"1470820463\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/about-art-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"About\",\"Art\",\"Gallery\"]\";s:10:\"menu_order\";s:2:\"42\";s:16:\"popularity_index\";s:2:\"12\";s:11:\"trend_index\";s:2:\"12\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:342;a:14:{s:2:\"id\";s:3:\"213\";s:5:\"title\";s:26:\"About &#8211; Architecture\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0008.png\";s:12:\"tmpl_created\";s:10:\"1470829766\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/about-architecture/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"About\",\"Architecture\"]\";s:10:\"menu_order\";s:2:\"43\";s:16:\"popularity_index\";s:2:\"13\";s:11:\"trend_index\";s:2:\"18\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:343;a:14:{s:2:\"id\";s:4:\"2802\";s:5:\"title\";s:38:\"Portfolio &#8211; Fashion Photographer\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2017/11/Fashion-photographer-–-Portfolio.png\";s:12:\"tmpl_created\";s:10:\"1509615440\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/portfolio-fashion-photographer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"44\";s:16:\"popularity_index\";s:3:\"137\";s:11:\"trend_index\";s:3:\"134\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:344;a:14:{s:2:\"id\";s:4:\"2828\";s:5:\"title\";s:35:\"Landing Page &#8211; Law Convention\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2017/11/Law-Convention-–-Landing-Page.png\";s:12:\"tmpl_created\";s:10:\"1509631636\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/landing-page-law-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"Convention\",\"Landing Page\",\"Law\"]\";s:10:\"menu_order\";s:2:\"45\";s:16:\"popularity_index\";s:3:\"241\";s:11:\"trend_index\";s:3:\"212\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:345;a:14:{s:2:\"id\";s:4:\"1461\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-1.png\";s:12:\"tmpl_created\";s:10:\"1494352121\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:127:\"[\"App\",\"author\",\"book\",\"brochure\",\"download\",\"e-book\",\"ebook\",\"marketing\",\"product\",\"publisher\",\"sell online\",\"seo\",\"showcase\"]\";s:10:\"menu_order\";s:2:\"46\";s:16:\"popularity_index\";s:3:\"232\";s:11:\"trend_index\";s:3:\"349\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:346;a:14:{s:2:\"id\";s:4:\"1460\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-2.png\";s:12:\"tmpl_created\";s:10:\"1494352124\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"47\";s:16:\"popularity_index\";s:3:\"233\";s:11:\"trend_index\";s:3:\"265\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:347;a:14:{s:2:\"id\";s:4:\"1459\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-3.png\";s:12:\"tmpl_created\";s:10:\"1494352125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"48\";s:16:\"popularity_index\";s:3:\"153\";s:11:\"trend_index\";s:3:\"217\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:348;a:14:{s:2:\"id\";s:4:\"1052\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 1\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/03/app.png\";s:12:\"tmpl_created\";s:10:\"1488810873\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-mobile-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"49\";s:16:\"popularity_index\";s:2:\"21\";s:11:\"trend_index\";s:2:\"38\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:349;a:14:{s:2:\"id\";s:4:\"1503\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app1.png\";s:12:\"tmpl_created\";s:10:\"1494352113\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"50\";s:16:\"popularity_index\";s:3:\"161\";s:11:\"trend_index\";s:3:\"203\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:350;a:14:{s:2:\"id\";s:4:\"1504\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app2.png\";s:12:\"tmpl_created\";s:10:\"1494352112\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"51\";s:16:\"popularity_index\";s:3:\"171\";s:11:\"trend_index\";s:3:\"248\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:351;a:14:{s:2:\"id\";s:4:\"1505\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app3.png\";s:12:\"tmpl_created\";s:10:\"1494352110\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"52\";s:16:\"popularity_index\";s:3:\"284\";s:11:\"trend_index\";s:3:\"299\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:352;a:14:{s:2:\"id\";s:3:\"726\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/01/convention-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485270062\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"53\";s:16:\"popularity_index\";s:3:\"306\";s:11:\"trend_index\";s:3:\"323\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:353;a:14:{s:2:\"id\";s:4:\"1613\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 2\";s:9:\"thumbnail\";s:109:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-International-Womens-Day-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352129\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"54\";s:16:\"popularity_index\";s:3:\"327\";s:11:\"trend_index\";s:3:\"428\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:354;a:14:{s:2:\"id\";s:4:\"1612\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 3\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Tech-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352127\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"55\";s:16:\"popularity_index\";s:3:\"334\";s:11:\"trend_index\";s:3:\"378\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:355;a:14:{s:2:\"id\";s:4:\"1614\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 4\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Sustainability-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352131\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"56\";s:16:\"popularity_index\";s:3:\"257\";s:11:\"trend_index\";s:3:\"333\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:356;a:14:{s:2:\"id\";s:4:\"9373\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 5\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/11/conference-250.png\";s:12:\"tmpl_created\";s:10:\"1542811219\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"57\";s:16:\"popularity_index\";s:3:\"305\";s:11:\"trend_index\";s:3:\"246\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:357;a:14:{s:2:\"id\";s:3:\"906\";s:5:\"title\";s:29:\"Landing Page &#8211;  Coacher\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/02/Landin-Page-Coacher.png\";s:12:\"tmpl_created\";s:10:\"1494352066\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-coacher/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"58\";s:16:\"popularity_index\";s:3:\"150\";s:11:\"trend_index\";s:3:\"278\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:358;a:14:{s:2:\"id\";s:3:\"955\";s:5:\"title\";s:31:\"Landing Page &#8211; Law Office\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Law-Office.png\";s:12:\"tmpl_created\";s:10:\"1494352069\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-law-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:31:\"[\"Landing Page\",\"Law\",\"Office\"]\";s:10:\"menu_order\";s:2:\"59\";s:16:\"popularity_index\";s:3:\"147\";s:11:\"trend_index\";s:3:\"136\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:359;a:14:{s:2:\"id\";s:3:\"879\";s:5:\"title\";s:41:\"Landing Page &#8211; Financial Consultant\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Financial-consultant.png\";s:12:\"tmpl_created\";s:10:\"1494352064\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/landing-page-financial-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"60\";s:16:\"popularity_index\";s:3:\"164\";s:11:\"trend_index\";s:3:\"277\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:360;a:14:{s:2:\"id\";s:3:\"926\";s:5:\"title\";s:33:\"Landing Page &#8211; Private Chef\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Private-Chef.png\";s:12:\"tmpl_created\";s:10:\"1494352068\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-private-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"61\";s:16:\"popularity_index\";s:3:\"291\";s:11:\"trend_index\";s:3:\"336\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:361;a:14:{s:2:\"id\";s:3:\"855\";s:5:\"title\";s:37:\"Landing Page &#8211; Personal Trainer\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Personal-Trainer.png\";s:12:\"tmpl_created\";s:10:\"1494352061\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/landing-page-personal-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"62\";s:16:\"popularity_index\";s:3:\"244\";s:11:\"trend_index\";s:3:\"252\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:362;a:14:{s:2:\"id\";s:3:\"974\";s:5:\"title\";s:28:\"Landing Page &#8211; Stylist\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/03/Landing-Page-Stylist.png\";s:12:\"tmpl_created\";s:10:\"1494352071\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-stylist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"cosmetics\",\"fashion\",\"girly\",\"hairdresser\",\"lifestyle\",\"makeup\",\"manicure\",\"pedicure\",\"products\",\"salon\",\"Shop\",\"skincare\",\"stylist\",\"wellness\"]\";s:10:\"menu_order\";s:2:\"63\";s:16:\"popularity_index\";s:3:\"300\";s:11:\"trend_index\";s:3:\"356\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:363;a:14:{s:2:\"id\";s:4:\"1032\";s:5:\"title\";s:27:\"Landing Page &#8211; Agency\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Agency.png\";s:12:\"tmpl_created\";s:10:\"1488810866\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/landing-page-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"64\";s:16:\"popularity_index\";s:3:\"263\";s:11:\"trend_index\";s:3:\"339\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:364;a:14:{s:2:\"id\";s:4:\"1634\";s:5:\"title\";s:33:\"Landing Page &#8211; Chiropractor\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Chiropractor.png\";s:12:\"tmpl_created\";s:10:\"1494352119\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-chiropractor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"65\";s:16:\"popularity_index\";s:3:\"256\";s:11:\"trend_index\";s:3:\"361\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:365;a:14:{s:2:\"id\";s:3:\"730\";s:5:\"title\";s:24:\"Landing Page &#8211; App\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/app.-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485273430\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/landing-page-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"66\";s:16:\"popularity_index\";s:3:\"245\";s:11:\"trend_index\";s:3:\"389\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:366;a:14:{s:2:\"id\";s:3:\"643\";s:5:\"title\";s:29:\"Landing Page &#8211; Festival\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2016/12/festival.jpg\";s:12:\"tmpl_created\";s:10:\"1481549290\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"67\";s:16:\"popularity_index\";s:3:\"294\";s:11:\"trend_index\";s:3:\"396\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:367;a:14:{s:2:\"id\";s:3:\"487\";s:5:\"title\";s:29:\"Landing Page &#8211; Vacation\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0021.png\";s:12:\"tmpl_created\";s:10:\"1477388357\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-vacation/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"68\";s:16:\"popularity_index\";s:2:\"24\";s:11:\"trend_index\";s:2:\"43\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:368;a:14:{s:2:\"id\";s:3:\"542\";s:5:\"title\";s:28:\"Landing Page &#8211; Wedding\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0025.png\";s:12:\"tmpl_created\";s:10:\"1477388484\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"69\";s:16:\"popularity_index\";s:2:\"42\";s:11:\"trend_index\";s:3:\"114\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:369;a:14:{s:2:\"id\";s:4:\"1187\";s:5:\"title\";s:32:\"Landing Page &#8211; Photography\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp1-l.png\";s:12:\"tmpl_created\";s:10:\"1490707385\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"70\";s:16:\"popularity_index\";s:2:\"25\";s:11:\"trend_index\";s:2:\"55\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:370;a:14:{s:2:\"id\";s:3:\"641\";s:5:\"title\";s:28:\"Landing Page &#8211; Fashion\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/12/fashion-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1481549264\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-fashion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"71\";s:16:\"popularity_index\";s:3:\"183\";s:11:\"trend_index\";s:3:\"256\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:371;a:14:{s:2:\"id\";s:3:\"189\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0005.png\";s:12:\"tmpl_created\";s:10:\"1470820715\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-tourism/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"72\";s:16:\"popularity_index\";s:2:\"10\";s:11:\"trend_index\";s:2:\"10\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:372;a:14:{s:2:\"id\";s:4:\"1547\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-1.png\";s:12:\"tmpl_created\";s:10:\"1494352115\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"73\";s:16:\"popularity_index\";s:3:\"243\";s:11:\"trend_index\";s:3:\"391\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:373;a:14:{s:2:\"id\";s:4:\"1546\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-2.png\";s:12:\"tmpl_created\";s:10:\"1494352116\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"74\";s:16:\"popularity_index\";s:3:\"333\";s:11:\"trend_index\";s:3:\"390\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:374;a:14:{s:2:\"id\";s:4:\"1545\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-3.png\";s:12:\"tmpl_created\";s:10:\"1494352118\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"75\";s:16:\"popularity_index\";s:3:\"288\";s:11:\"trend_index\";s:3:\"307\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:375;a:14:{s:2:\"id\";s:4:\"2714\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 5\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/11/Vacation-–-Landing-Page.png\";s:12:\"tmpl_created\";s:10:\"1509631782\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"76\";s:16:\"popularity_index\";s:3:\"283\";s:11:\"trend_index\";s:3:\"290\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:376;a:14:{s:2:\"id\";s:4:\"1190\";s:5:\"title\";s:26:\"Landing Page &#8211; Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp2-l.png\";s:12:\"tmpl_created\";s:10:\"1490707391\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/landing-page-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"77\";s:16:\"popularity_index\";s:2:\"20\";s:11:\"trend_index\";s:2:\"19\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:377;a:14:{s:2:\"id\";s:3:\"195\";s:5:\"title\";s:28:\"Landing Page &#8211; Product\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0006.png\";s:12:\"tmpl_created\";s:10:\"1470820765\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"78\";s:16:\"popularity_index\";s:2:\"26\";s:11:\"trend_index\";s:2:\"48\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:378;a:14:{s:2:\"id\";s:3:\"197\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0007.png\";s:12:\"tmpl_created\";s:10:\"1470825711\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"79\";s:16:\"popularity_index\";s:2:\"64\";s:11:\"trend_index\";s:3:\"123\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:379;a:14:{s:2:\"id\";s:4:\"1193\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 2\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";s:10:\"1490707422\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"80\";s:16:\"popularity_index\";s:2:\"33\";s:11:\"trend_index\";s:2:\"90\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:380;a:14:{s:2:\"id\";s:4:\"1415\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-1.png\";s:12:\"tmpl_created\";s:10:\"1494352106\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"81\";s:16:\"popularity_index\";s:3:\"267\";s:11:\"trend_index\";s:3:\"319\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:381;a:14:{s:2:\"id\";s:4:\"1414\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 4\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-2.png\";s:12:\"tmpl_created\";s:10:\"1494352107\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"82\";s:16:\"popularity_index\";s:3:\"371\";s:11:\"trend_index\";s:3:\"411\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:382;a:14:{s:2:\"id\";s:4:\"1413\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 5\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-3.png\";s:12:\"tmpl_created\";s:10:\"1494352109\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:134:\"[\"Agent\",\"business\",\"clean\",\"corporate\",\"flat\",\"google maps\",\"homes\",\"listing\",\"modern\",\"real estate\",\"realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";s:2:\"83\";s:16:\"popularity_index\";s:3:\"346\";s:11:\"trend_index\";s:3:\"375\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:383;a:14:{s:2:\"id\";s:4:\"1573\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-02.png\";s:12:\"tmpl_created\";s:10:\"1494352133\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"84\";s:16:\"popularity_index\";s:3:\"367\";s:11:\"trend_index\";s:3:\"425\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:384;a:14:{s:2:\"id\";s:4:\"1572\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-03.png\";s:12:\"tmpl_created\";s:10:\"1494352134\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"85\";s:16:\"popularity_index\";s:3:\"390\";s:11:\"trend_index\";s:3:\"414\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:385;a:14:{s:2:\"id\";s:4:\"1570\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 3\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-01.png\";s:12:\"tmpl_created\";s:10:\"1494352136\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"86\";s:16:\"popularity_index\";s:3:\"415\";s:11:\"trend_index\";s:3:\"426\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:386;a:14:{s:2:\"id\";s:4:\"1571\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 4\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-04.png\";s:12:\"tmpl_created\";s:10:\"1494352138\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"87\";s:16:\"popularity_index\";s:3:\"391\";s:11:\"trend_index\";s:3:\"438\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:387;a:14:{s:2:\"id\";s:3:\"192\";s:5:\"title\";s:28:\"Landing Page &#8211; Webinar\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0015.png\";s:12:\"tmpl_created\";s:10:\"1470820734\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"88\";s:16:\"popularity_index\";s:2:\"53\";s:11:\"trend_index\";s:3:\"153\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:388;a:14:{s:2:\"id\";s:4:\"2141\";s:5:\"title\";s:32:\"Contact &#8211; Delivery Company\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-contact.png\";s:12:\"tmpl_created\";s:10:\"1499774122\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/contact-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"89\";s:16:\"popularity_index\";s:3:\"217\";s:11:\"trend_index\";s:3:\"331\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:389;a:14:{s:2:\"id\";s:3:\"137\";s:5:\"title\";s:22:\"Contact &#8211; Modern\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0013.png\";s:12:\"tmpl_created\";s:10:\"1470829828\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/contact-modern/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"90\";s:16:\"popularity_index\";s:2:\"28\";s:11:\"trend_index\";s:2:\"44\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:390;a:14:{s:2:\"id\";s:3:\"256\";s:5:\"title\";s:26:\"Contact &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0011.png\";s:12:\"tmpl_created\";s:10:\"1470829796\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/contact-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"91\";s:16:\"popularity_index\";s:2:\"68\";s:11:\"trend_index\";s:3:\"184\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:391;a:14:{s:2:\"id\";s:4:\"2150\";s:5:\"title\";s:25:\"Contact &#8211; Cake Shop\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-contact.png\";s:12:\"tmpl_created\";s:10:\"1499774127\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"92\";s:16:\"popularity_index\";s:2:\"39\";s:11:\"trend_index\";s:2:\"74\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:392;a:14:{s:2:\"id\";s:3:\"223\";s:5:\"title\";s:21:\"Contact &#8211; Hotel\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0002.png\";s:12:\"tmpl_created\";s:10:\"1470820471\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/contact-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"93\";s:16:\"popularity_index\";s:2:\"67\";s:11:\"trend_index\";s:3:\"139\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:393;a:14:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:25:\"Contact &#8211; Corporate\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0012.png\";s:12:\"tmpl_created\";s:10:\"1470248619\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-corporate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"94\";s:16:\"popularity_index\";s:2:\"11\";s:11:\"trend_index\";s:2:\"13\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:394;a:14:{s:2:\"id\";s:3:\"184\";s:5:\"title\";s:23:\"Services &#8211; Moving\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0017.png\";s:12:\"tmpl_created\";s:10:\"1470829889\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/services-moving/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"95\";s:16:\"popularity_index\";s:2:\"19\";s:11:\"trend_index\";s:2:\"24\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:395;a:14:{s:2:\"id\";s:3:\"625\";s:5:\"title\";s:31:\"Services &#8211; Cake Shop Menu\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2016/12/cake-shop-menu.jpg\";s:12:\"tmpl_created\";s:10:\"1481549196\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/services-cake-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"96\";s:16:\"popularity_index\";s:3:\"373\";s:11:\"trend_index\";s:3:\"424\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:396;a:14:{s:2:\"id\";s:3:\"187\";s:5:\"title\";s:20:\"Services &#8211; Fun\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0001.png\";s:12:\"tmpl_created\";s:10:\"1470829892\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/services-fun/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"97\";s:16:\"popularity_index\";s:2:\"32\";s:11:\"trend_index\";s:3:\"104\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:397;a:14:{s:2:\"id\";s:3:\"238\";s:5:\"title\";s:27:\"Services &#8211; Consulting\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0014.png\";s:12:\"tmpl_created\";s:10:\"1470829865\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/services-consulting/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"98\";s:16:\"popularity_index\";s:2:\"17\";s:11:\"trend_index\";s:2:\"20\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:398;a:14:{s:2:\"id\";s:3:\"647\";s:5:\"title\";s:33:\"Services &#8211; Coffee Shop Menu\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2016/12/restaurant-menu.jpg\";s:12:\"tmpl_created\";s:10:\"1481549320\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-coffee-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:2:\"99\";s:16:\"popularity_index\";s:3:\"341\";s:11:\"trend_index\";s:3:\"406\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:399;a:14:{s:2:\"id\";s:4:\"2138\";s:5:\"title\";s:33:\"Services &#8211; Delivery Company\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-services.png\";s:12:\"tmpl_created\";s:10:\"1499774119\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"100\";s:16:\"popularity_index\";s:3:\"303\";s:11:\"trend_index\";s:3:\"358\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:400;a:14:{s:2:\"id\";s:3:\"823\";s:5:\"title\";s:19:\"Pricing &#8211; App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-app.jpg\";s:12:\"tmpl_created\";s:10:\"1485272966\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/pricing-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"101\";s:16:\"popularity_index\";s:3:\"258\";s:11:\"trend_index\";s:3:\"289\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:401;a:14:{s:2:\"id\";s:3:\"824\";s:5:\"title\";s:24:\"Pricing &#8211; Software\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-software.png\";s:12:\"tmpl_created\";s:10:\"1485272900\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/pricing-software-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"102\";s:16:\"popularity_index\";s:3:\"281\";s:11:\"trend_index\";s:3:\"344\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:402;a:14:{s:2:\"id\";s:3:\"825\";s:5:\"title\";s:24:\"Product &#8211; Speakers\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/01/product-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485272513\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/product-speakers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"103\";s:16:\"popularity_index\";s:3:\"302\";s:11:\"trend_index\";s:3:\"314\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:403;a:14:{s:2:\"id\";s:3:\"245\";s:5:\"title\";s:21:\"Product &#8211; Clean\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0020.png\";s:12:\"tmpl_created\";s:10:\"1470829876\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/product-clean/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"fast\",\"minimal\",\"minimalistic\",\"seo\",\"simple\"]\";s:10:\"menu_order\";s:3:\"104\";s:16:\"popularity_index\";s:2:\"45\";s:11:\"trend_index\";s:3:\"107\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:404;a:14:{s:2:\"id\";s:3:\"150\";s:5:\"title\";s:19:\"Product &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0003.png\";s:12:\"tmpl_created\";s:10:\"1470829879\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/product-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"105\";s:16:\"popularity_index\";s:2:\"22\";s:11:\"trend_index\";s:2:\"46\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:405;a:14:{s:2:\"id\";s:3:\"751\";s:5:\"title\";s:25:\"Homepage &#8211; Interior\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-home.png\";s:12:\"tmpl_created\";s:10:\"1485269743\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"106\";s:16:\"popularity_index\";s:3:\"218\";s:11:\"trend_index\";s:3:\"301\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:406;a:14:{s:2:\"id\";s:3:\"753\";s:5:\"title\";s:22:\"About &#8211; Interior\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-About.png\";s:12:\"tmpl_created\";s:10:\"1485269710\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"107\";s:16:\"popularity_index\";s:3:\"276\";s:11:\"trend_index\";s:3:\"355\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:407;a:14:{s:2:\"id\";s:3:\"754\";s:5:\"title\";s:25:\"Services &#8211; Interior\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-Services.png\";s:12:\"tmpl_created\";s:10:\"1485269691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/services-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"108\";s:16:\"popularity_index\";s:3:\"293\";s:11:\"trend_index\";s:3:\"296\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:408;a:14:{s:2:\"id\";s:3:\"752\";s:5:\"title\";s:24:\"Contact &#8211; Interior\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-contact.png\";s:12:\"tmpl_created\";s:10:\"1485269737\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/contact-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"109\";s:16:\"popularity_index\";s:3:\"274\";s:11:\"trend_index\";s:3:\"382\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:409;a:14:{s:2:\"id\";s:4:\"1075\";s:5:\"title\";s:19:\"Shop &#8211; Sweets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Sweets.png\";s:12:\"tmpl_created\";s:10:\"1488810871\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/shop-sweets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:154:\"[\"bakery\",\"beverage\",\"business\",\"cafe\",\"candy bar\",\"catering\",\"delivery service\",\"Food\",\"online shop\",\"pastry\",\"Restaurant\",\"store\",\"sweet shop\",\"sweets\"]\";s:10:\"menu_order\";s:3:\"110\";s:16:\"popularity_index\";s:2:\"34\";s:11:\"trend_index\";s:2:\"69\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:410;a:14:{s:2:\"id\";s:4:\"1051\";s:5:\"title\";s:24:\"Blog Post &#8211; Launch\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/post-cloud.png\";s:12:\"tmpl_created\";s:10:\"1488810869\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blog-post-launch/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:210:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"launch\",\"marketing campaign\",\"marketing landing page\",\"marketing template landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";s:3:\"111\";s:16:\"popularity_index\";s:2:\"18\";s:11:\"trend_index\";s:2:\"16\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:411;a:14:{s:2:\"id\";s:4:\"1245\";s:5:\"title\";s:13:\"Coming Soon 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-1.png\";s:12:\"tmpl_created\";s:10:\"1491207184\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"112\";s:16:\"popularity_index\";s:3:\"195\";s:11:\"trend_index\";s:3:\"271\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:412;a:14:{s:2:\"id\";s:4:\"1247\";s:5:\"title\";s:13:\"Coming Soon 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-2.png\";s:12:\"tmpl_created\";s:10:\"1491207138\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"113\";s:16:\"popularity_index\";s:2:\"27\";s:11:\"trend_index\";s:2:\"37\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:413;a:14:{s:2:\"id\";s:4:\"1248\";s:5:\"title\";s:13:\"Coming Soon 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-3.png\";s:12:\"tmpl_created\";s:10:\"1491207050\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"114\";s:16:\"popularity_index\";s:3:\"309\";s:11:\"trend_index\";s:3:\"311\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:414;a:14:{s:2:\"id\";s:4:\"1249\";s:5:\"title\";s:13:\"Coming Soon 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-4.png\";s:12:\"tmpl_created\";s:10:\"1491207380\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"115\";s:16:\"popularity_index\";s:3:\"354\";s:11:\"trend_index\";s:3:\"377\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:415;a:14:{s:2:\"id\";s:4:\"1250\";s:5:\"title\";s:13:\"Coming Soon 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-5.png\";s:12:\"tmpl_created\";s:10:\"1491207450\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"116\";s:16:\"popularity_index\";s:2:\"40\";s:11:\"trend_index\";s:2:\"75\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:416;a:14:{s:2:\"id\";s:4:\"1260\";s:5:\"title\";s:13:\"Coming Soon 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-6.png\";s:12:\"tmpl_created\";s:10:\"1491207507\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"117\";s:16:\"popularity_index\";s:3:\"353\";s:11:\"trend_index\";s:3:\"418\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:417;a:14:{s:2:\"id\";s:4:\"1261\";s:5:\"title\";s:13:\"Coming Soon 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/04/Coming-Soon-7.png\";s:12:\"tmpl_created\";s:10:\"1491207584\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"118\";s:16:\"popularity_index\";s:2:\"44\";s:11:\"trend_index\";s:2:\"81\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:418;a:14:{s:2:\"id\";s:4:\"1272\";s:5:\"title\";s:13:\"Coming Soon 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-8.png\";s:12:\"tmpl_created\";s:10:\"1491207674\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"119\";s:16:\"popularity_index\";s:3:\"204\";s:11:\"trend_index\";s:3:\"254\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:419;a:14:{s:2:\"id\";s:4:\"1279\";s:5:\"title\";s:13:\"Coming Soon 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-9.png\";s:12:\"tmpl_created\";s:10:\"1491207756\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"120\";s:16:\"popularity_index\";s:2:\"76\";s:11:\"trend_index\";s:3:\"145\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:420;a:14:{s:2:\"id\";s:4:\"1745\";s:5:\"title\";s:14:\"Coming Soon 10\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-002.png\";s:12:\"tmpl_created\";s:10:\"1494849745\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/coming-soon-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"121\";s:16:\"popularity_index\";s:3:\"202\";s:11:\"trend_index\";s:3:\"292\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:421;a:14:{s:2:\"id\";s:4:\"1742\";s:5:\"title\";s:12:\"Login Page 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-003.png\";s:12:\"tmpl_created\";s:10:\"1494849744\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/login-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"122\";s:16:\"popularity_index\";s:3:\"335\";s:11:\"trend_index\";s:3:\"353\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:422;a:14:{s:2:\"id\";s:4:\"1748\";s:5:\"title\";s:12:\"Login Page 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-001.png\";s:12:\"tmpl_created\";s:10:\"1494849742\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/login-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"123\";s:16:\"popularity_index\";s:3:\"205\";s:11:\"trend_index\";s:3:\"255\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:423;a:14:{s:2:\"id\";s:4:\"3963\";s:5:\"title\";s:32:\"Restaurant Site &#8211; Homepage\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/01/R.HomepageThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284821\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/restaurant-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"124\";s:16:\"popularity_index\";s:3:\"190\";s:11:\"trend_index\";s:3:\"186\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:424;a:14:{s:2:\"id\";s:4:\"3969\";s:5:\"title\";s:28:\"Restaurant Site &#8211; Menu\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/01/R.MenuThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284829\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/restaurant-site-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"125\";s:16:\"popularity_index\";s:3:\"349\";s:11:\"trend_index\";s:3:\"405\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:425;a:14:{s:2:\"id\";s:4:\"3966\";s:5:\"title\";s:29:\"Restaurant Site &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/01/R.AboutThumb.png.png\";s:12:\"tmpl_created\";s:10:\"1516284839\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/restaurant-site-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"126\";s:16:\"popularity_index\";s:3:\"209\";s:11:\"trend_index\";s:3:\"200\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:426;a:14:{s:2:\"id\";s:4:\"3972\";s:5:\"title\";s:31:\"Restaurant Site &#8211; Contact\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/01/R.ContactThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284847\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/restaurant-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"127\";s:16:\"popularity_index\";s:3:\"307\";s:11:\"trend_index\";s:3:\"360\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:427;a:14:{s:2:\"id\";s:4:\"2080\";s:5:\"title\";s:27:\"Ski Resort &#8211; Homepage\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1508161124\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"128\";s:16:\"popularity_index\";s:3:\"264\";s:11:\"trend_index\";s:3:\"258\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:428;a:14:{s:2:\"id\";s:4:\"2088\";s:5:\"title\";s:24:\"Ski Resort &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-About.png\";s:12:\"tmpl_created\";s:10:\"1508161129\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/ski-resort-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"129\";s:16:\"popularity_index\";s:3:\"351\";s:11:\"trend_index\";s:3:\"362\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:429;a:14:{s:2:\"id\";s:4:\"2085\";s:5:\"title\";s:27:\"Ski Resort &#8211; Services\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Services.png\";s:12:\"tmpl_created\";s:10:\"1508161134\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"130\";s:16:\"popularity_index\";s:3:\"395\";s:11:\"trend_index\";s:3:\"408\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:430;a:14:{s:2:\"id\";s:4:\"2462\";s:5:\"title\";s:23:\"Architect &#8211; About\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/architect-–-about.png\";s:12:\"tmpl_created\";s:10:\"1508243317\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/architect-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"131\";s:16:\"popularity_index\";s:3:\"277\";s:11:\"trend_index\";s:3:\"280\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:431;a:14:{s:2:\"id\";s:4:\"2362\";s:5:\"title\";s:26:\"Architect &#8211; Projects\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2017/10/Architect-Projects.png\";s:12:\"tmpl_created\";s:10:\"1508243335\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/architect-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"132\";s:16:\"popularity_index\";s:3:\"344\";s:11:\"trend_index\";s:3:\"410\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:432;a:14:{s:2:\"id\";s:3:\"614\";s:5:\"title\";s:25:\"Architect &#8211; Contact\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2016/12/architect-contact.jpg\";s:12:\"tmpl_created\";s:10:\"1481549169\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/architect-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"133\";s:16:\"popularity_index\";s:3:\"179\";s:11:\"trend_index\";s:3:\"263\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:433;a:14:{s:2:\"id\";s:4:\"2126\";s:5:\"title\";s:37:\"Construction Company &#8211; Homepage\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1508325849\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-company-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"134\";s:16:\"popularity_index\";s:3:\"234\";s:11:\"trend_index\";s:3:\"245\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:434;a:14:{s:2:\"id\";s:4:\"2129\";s:5:\"title\";s:34:\"Construction Company &#8211; About\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-About.png\";s:12:\"tmpl_created\";s:10:\"1508325881\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/construction-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"135\";s:16:\"popularity_index\";s:3:\"261\";s:11:\"trend_index\";s:3:\"310\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:435;a:14:{s:2:\"id\";s:4:\"2135\";s:5:\"title\";s:36:\"Construction Company &#8211; Contact\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Contact.png\";s:12:\"tmpl_created\";s:10:\"1508325922\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/construction-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"136\";s:16:\"popularity_index\";s:3:\"289\";s:11:\"trend_index\";s:3:\"321\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:436;a:14:{s:2:\"id\";s:4:\"2094\";s:5:\"title\";s:28:\"Plants Shop &#8211; Homepage\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-Home.png\";s:12:\"tmpl_created\";s:10:\"1509621053\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/plants-shop-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"137\";s:16:\"popularity_index\";s:3:\"251\";s:11:\"trend_index\";s:3:\"230\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:437;a:14:{s:2:\"id\";s:4:\"2120\";s:5:\"title\";s:25:\"Plants Shop &#8211; About\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-About.png\";s:12:\"tmpl_created\";s:10:\"1509631820\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/plants-shop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"138\";s:16:\"popularity_index\";s:3:\"287\";s:11:\"trend_index\";s:3:\"285\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:438;a:14:{s:2:\"id\";s:4:\"3619\";s:5:\"title\";s:31:\"Snowboard Site &#8211; Homepage\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2017/12/home.png\";s:12:\"tmpl_created\";s:10:\"1513513137\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"139\";s:16:\"popularity_index\";s:3:\"260\";s:11:\"trend_index\";s:3:\"251\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:439;a:14:{s:2:\"id\";s:4:\"3632\";s:5:\"title\";s:31:\"Snowboard Site &#8211; Services\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/2.png\";s:12:\"tmpl_created\";s:10:\"1513513171\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"140\";s:16:\"popularity_index\";s:3:\"226\";s:11:\"trend_index\";s:3:\"179\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:440;a:14:{s:2:\"id\";s:4:\"3626\";s:5:\"title\";s:30:\"Snowboard Site &#8211; Contact\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/3.png\";s:12:\"tmpl_created\";s:10:\"1513513193\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/snowboard-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"141\";s:16:\"popularity_index\";s:3:\"231\";s:11:\"trend_index\";s:3:\"346\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:441;a:14:{s:2:\"id\";s:4:\"3153\";s:5:\"title\";s:14:\"Halloween Pack\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/10/halloween.png\";s:12:\"tmpl_created\";s:10:\"1508950132\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/halloween-pack/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"142\";s:16:\"popularity_index\";s:3:\"404\";s:11:\"trend_index\";s:3:\"443\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:442;a:14:{s:2:\"id\";s:4:\"3338\";s:5:\"title\";s:31:\"Black Friday &#8211; Nature Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-1.png\";s:12:\"tmpl_created\";s:10:\"1511203351\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-nature-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"143\";s:16:\"popularity_index\";s:3:\"387\";s:11:\"trend_index\";s:3:\"427\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:443;a:14:{s:2:\"id\";s:4:\"3339\";s:5:\"title\";s:35:\"Black Friday &#8211; Pop-Styled Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-2.png\";s:12:\"tmpl_created\";s:10:\"1511203636\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/black-friday-pop-styled-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"144\";s:16:\"popularity_index\";s:3:\"350\";s:11:\"trend_index\";s:3:\"413\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:444;a:14:{s:2:\"id\";s:4:\"3335\";s:5:\"title\";s:31:\"Black Friday &#8211; Retail Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-4.png\";s:12:\"tmpl_created\";s:10:\"1511203246\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-retail-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"145\";s:16:\"popularity_index\";s:3:\"348\";s:11:\"trend_index\";s:3:\"381\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:445;a:14:{s:2:\"id\";s:4:\"3340\";s:5:\"title\";s:41:\"Black Friday &#8211; Software Product Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-3.png\";s:12:\"tmpl_created\";s:10:\"1511203713\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/black-friday-software-product-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"146\";s:16:\"popularity_index\";s:3:\"343\";s:11:\"trend_index\";s:3:\"416\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:446;a:14:{s:2:\"id\";s:4:\"9425\";s:5:\"title\";s:38:\"Black Friday &#8211;  80&#8217;s style\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/11/unnamed-file.png\";s:12:\"tmpl_created\";s:10:\"1542901234\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/black-friday-80s-style/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"147\";s:16:\"popularity_index\";s:3:\"352\";s:11:\"trend_index\";s:3:\"276\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:447;a:14:{s:2:\"id\";s:4:\"3517\";s:5:\"title\";s:27:\"Christmas &#8211; Gift Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasThumb.png\";s:12:\"tmpl_created\";s:10:\"1513877937\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-gift-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"148\";s:16:\"popularity_index\";s:3:\"379\";s:11:\"trend_index\";s:3:\"404\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:448;a:14:{s:2:\"id\";s:4:\"3734\";s:5:\"title\";s:28:\"Christmas &#8211; Car Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v3.png\";s:12:\"tmpl_created\";s:10:\"1514197794\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/christmas-car-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"149\";s:16:\"popularity_index\";s:3:\"388\";s:11:\"trend_index\";s:3:\"366\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:449;a:14:{s:2:\"id\";s:4:\"3764\";s:5:\"title\";s:33:\"Christmas &#8211; Interior Design\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v6.png\";s:12:\"tmpl_created\";s:10:\"1514198234\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/christmas-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"150\";s:16:\"popularity_index\";s:3:\"375\";s:11:\"trend_index\";s:3:\"376\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:450;a:14:{s:2:\"id\";s:4:\"3565\";s:5:\"title\";s:27:\"Christmas &#8211; Tree Shop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasTreeThumb.png\";s:12:\"tmpl_created\";s:10:\"1514204382\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-tree-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"151\";s:16:\"popularity_index\";s:3:\"355\";s:11:\"trend_index\";s:3:\"332\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:451;a:14:{s:2:\"id\";s:4:\"3862\";s:5:\"title\";s:35:\"Christmas &#8211; Design Conference\";s:9:\"thumbnail\";s:63:\"https://library.elementor.com/wp-content/uploads/2017/12/q1.png\";s:12:\"tmpl_created\";s:10:\"1514206745\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/christmas-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"152\";s:16:\"popularity_index\";s:3:\"324\";s:11:\"trend_index\";s:3:\"347\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:452;a:14:{s:2:\"id\";s:4:\"3777\";s:5:\"title\";s:39:\"Christmas &#8211; Snowboard Competition\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v7.png\";s:12:\"tmpl_created\";s:10:\"1514205420\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/christmas-snowboard-competition/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"153\";s:16:\"popularity_index\";s:3:\"342\";s:11:\"trend_index\";s:3:\"403\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:453;a:14:{s:2:\"id\";s:3:\"420\";s:5:\"title\";s:11:\"Hero UI Kit\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/09/library-ui-kit-cover.png\";s:12:\"tmpl_created\";s:10:\"1475067229\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/hero-ui-kit/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";s:3:\"154\";s:16:\"popularity_index\";s:2:\"15\";s:11:\"trend_index\";s:2:\"22\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}}}','no'),(250,'recently_activated','a:0:{}','yes'),(252,'elementor_version','2.3.8','yes'),(172,'current_theme','Sydney','yes'),(173,'theme_mods_business-plan','a:6:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:12:\"header_image\";s:104:\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/cropped-oie_12233124sFOrgQgu.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:6;s:3:\"url\";s:104:\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/cropped-oie_12233124sFOrgQgu.jpg\";s:13:\"thumbnail_url\";s:104:\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/cropped-oie_12233124sFOrgQgu.jpg\";s:6:\"height\";i:416;s:5:\"width\";i:1351;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1543457800;s:4:\"data\";a:5:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}}}}','yes'),(174,'theme_switched','','yes'),(235,'theme_mods_hotel-sydney','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1543489838;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:15:\"sidebar-primary\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:13:\"home-services\";a:0:{}s:18:\"footer-widget-area\";a:0:{}}}}','yes'),(178,'_transient_business_plan_categories','1','yes'),(243,'elementor_disable_color_schemes','yes','yes'),(182,'theme_mods_business-way','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1543458180;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:22:\"business-way-home-page\";a:0:{}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}}}}','yes'),(183,'widget_business-way-quote-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(184,'widget_business-way-welcome-msg-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(185,'widget_business_way_feature_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(186,'widget_business_way_service_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(187,'widget_business-way-our-mission-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(188,'widget_business-way-recent-post-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(189,'widget_business-way-our-work-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(190,'widget_business_way_about_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(191,'widget_business-way-contact-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(211,'_transient_business_hub_categories','1','yes'),(202,'theme_mods_transport-lite','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1543458593;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:16:\"headerinfowidget\";a:0:{}s:15:\"footer-widget-1\";a:0:{}s:15:\"footer-widget-2\";a:0:{}s:15:\"footer-widget-3\";a:0:{}s:15:\"footer-widget-4\";a:0:{}}}}','yes'),(196,'theme_mods_business-gravity','a:9:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";i:9;s:16:\"header_textcolor\";s:5:\"blank\";s:17:\"fixed_header_logo\";s:92:\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/oie_QwA4hmAdSI8Z.png\";s:12:\"header_image\";s:106:\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/cropped-oie_12233124sFOrgQgu-1.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:11;s:3:\"url\";s:106:\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/cropped-oie_12233124sFOrgQgu-1.jpg\";s:13:\"thumbnail_url\";s:106:\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/cropped-oie_12233124sFOrgQgu-1.jpg\";s:6:\"height\";i:849;s:5:\"width\";i:1920;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1543458502;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:13:\"right-sidebar\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:33:\"business-gravity-footer-sidebar-1\";a:0:{}s:33:\"business-gravity-footer-sidebar-2\";a:0:{}s:33:\"business-gravity-footer-sidebar-3\";a:0:{}s:33:\"business-gravity-footer-sidebar-4\";a:0:{}}}}','yes'),(244,'elementor_disable_typography_schemes','yes','yes'),(242,'theme_mods_sydney','a:16:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:5;}s:18:\"custom_css_post_id\";i:55;s:14:\"slider_title_1\";s:0:\"\";s:17:\"slider_subtitle_1\";s:0:\"\";s:14:\"slider_title_2\";s:0:\"\";s:17:\"slider_subtitle_2\";s:0:\"\";s:14:\"slider_image_1\";s:96:\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/oie_12233124sFOrgQgu.jpg\";s:14:\"slider_image_2\";s:80:\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/pic2.jpg\";s:9:\"site_logo\";s:92:\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_eUCBoGULxzbd.png\";s:14:\"slider_image_3\";s:92:\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/night-79624_1920.jpg\";s:16:\"textslider_slide\";i:1;s:18:\"slider_button_text\";s:13:\"Find out more\";s:12:\"header_image\";s:106:\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/cropped-pexels-photo-753331-1.jpeg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:223;s:3:\"url\";s:106:\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/cropped-pexels-photo-753331-1.jpeg\";s:13:\"thumbnail_url\";s:106:\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/cropped-pexels-photo-753331-1.jpeg\";s:6:\"height\";i:1080;s:5:\"width\";i:1920;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1543962816;s:4:\"data\";a:5:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:1:{i:0;s:6:\"text-2\";}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:1:{i:0;s:21:\"sydney_contact_info-1\";}}}}','yes'),(209,'theme_mods_business-hub','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1543458944;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:12:\"sidebar-shop\";a:0:{}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:0:{}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}}}}','yes'),(210,'widget_business_hub_recent_posts_extended','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(216,'theme_mods_onepress','a:5:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:5;}s:18:\"custom_css_post_id\";i:-1;s:20:\"onepress_hero_images\";a:1:{i:0;a:1:{s:5:\"image\";a:2:{s:3:\"url\";s:96:\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/oie_12233124sFOrgQgu.jpg\";s:2:\"id\";i:5;}}}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1543962548;s:4:\"data\";a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:0:{}s:8:\"footer-1\";a:0:{}s:8:\"footer-2\";a:1:{i:0;s:6:\"text-2\";}s:8:\"footer-3\";a:0:{}s:8:\"footer-4\";a:0:{}}}}','yes'),(236,'widget_hotel_galaxy_service_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(278,'elementor_scheme_color','a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}','yes'),(279,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}','yes'),(266,'category_children','a:0:{}','yes'),(267,'widget_sydney_contact_info','a:2:{i:2;a:4:{s:5:\"title\";s:29:\"Nautilus Maritime Corporation\";s:7:\"address\";s:40:\"1324 Forest Ave, Staten Island, NY 10302\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:33:\"office@nautilusmarineservices.com\";}s:12:\"_multiwidget\";i:1;}','yes'),(269,'nav_menus_created_posts','a:0:{}','yes'),(280,'elementor_scheme_color-picker','a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}','yes'),(238,'hotel_galaxy_review_data','a:2:{s:4:\"time\";i:1543489793;s:9:\"dismissed\";b:0;}','yes'),(299,'um_last_version_upgrade','2.0.33','yes'),(300,'um_first_activation_date','1543494970','yes'),(301,'um_version','2.0.33','yes'),(302,'__ultimatemember_sitekey','nautilusmarineservice.com/development-pjJklzFdqVqeSUdDeRW2','yes'),(303,'um_is_installed','1','yes'),(304,'um_core_forms','a:3:{s:8:\"register\";i:209;s:5:\"login\";i:210;s:7:\"profile\";i:211;}','yes'),(305,'um_core_directories','a:1:{s:7:\"members\";i:212;}','yes'),(255,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:37:\"Jupiter Theme Rebuilt Using Elementor\";s:7:\"excerpt\";s:124:\"Jupiter Theme joins the Elementor family and releases its new Jupiter X theme, rebuilt from the ground up using Elementor.\r\n\";s:7:\"created\";s:10:\"1544630452\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:109:\"https://elementor.com/blog/jupiter-x/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:57:\"Social Media - The Secret Sauce for Web Design in 2019​\";s:7:\"excerpt\";s:189:\"It\'s time we designers admit that social media influences our work. Finally, browsing through my Facebook wall is something I don\'t have to hide from my boss anymore! (insert emoji here)​\";s:7:\"created\";s:10:\"1544520824\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:123:\"https://elementor.com/blog/social-media-web-design/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:62:\"Introducing Action Links: Connect With Your Clients Seamlessly\";s:7:\"excerpt\";s:134:\"This week, we\'re releasing useful features that will help you connect with your site visitors, as well as analyze and track user data.\";s:7:\"created\";s:10:\"1543932850\";s:5:\"badge\";s:3:\"New\";s:3:\"url\";s:124:\"https://elementor.com/blog/introducing-action-links/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(1130,'_transient_timeout_feed_mod_acfb94f16410e8193f15ed3900b38226','1547104483','no'),(1131,'_transient_feed_mod_acfb94f16410e8193f15ed3900b38226','1547061283','no'),(1132,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1547104483','no'),(1133,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2019/01/wordpress-5-0-3-maintenance-release/\'>WordPress 5.0.3 Maintenance Release</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://www.wpbeginner.com/beginners-guide/how-to-register-a-domain-name-simple-tip-to-get-it-for-free/\'>How to Register a Domain Name (+ simple tip to get it for FREE)</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordpress-5-1-to-replace-blogging-references-with-publishing\'>WPTavern: WordPress 5.1 to Replace “Blogging” References with “Publishing”</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/github-announces-free-unlimited-private-repositories\'>WPTavern: GitHub Announces Free, Unlimited Private Repositories</a></li><li><a class=\'rsswidget\' href=\'https://www.wpbeginner.com/opinion/squarespace-vs-wordpress-which-one-is-better-pros-and-cons/\'>Squarespace vs WordPress – Which one is better? (Pros and Cons)</a></li><li><a class=\'rsswidget\' href=\'https://www.isitwp.com/upgrading-wordpress-is-easier-than-you-think/\'>How to Properly Upgrade WordPress (Step by Step)</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2019/01/the-month-in-wordpress-december-2018/\'>Dev Blog: The Month in WordPress: December 2018</a></li></ul></div>','no'),(519,'widget_ct-social','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(947,'_transient_jetpack_file_data_6.8.1','a:60:{s:32:\"c22c48d7cfe9d38dff2864cfea64636a\";a:15:{s:4:\"name\";s:20:\"Spelling and Grammar\";s:11:\"description\";s:39:\"Check your spelling, style, and grammar\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"6\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:115:\"after the deadline, afterthedeadline, spell, spellchecker, spelling, grammar, proofreading, style, language, cliche\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"933d4f6d290580156e0652ce850af1b2\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"fb5c4814ddc3946a3f22cc838fcb2af3\";a:15:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:75:\"Display images and galleries in a gorgeous, full-screen browsing experience\";s:14:\"jumpstart_desc\";s:79:\"Brings your photos and images to life as full-size, easily navigable galleries.\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:2:\"12\";s:10:\"introduced\";s:3:\"1.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:80:\"gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"5813eda53235a9a81a69b1f6a4a15db6\";a:15:{s:4:\"name\";s:13:\"Comment Likes\";s:11:\"description\";s:64:\"Increase visitor engagement by adding a Like button to comments.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"39\";s:20:\"recommendation_order\";s:2:\"17\";s:10:\"introduced\";s:3:\"5.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:37:\"like widget, like button, like, likes\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7ef4ca32a1c84fc10ef50c8293cae5df\";a:15:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:80:\"Let readers use WordPress.com, Twitter, Facebook, or Google+ accounts to comment\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"20\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:53:\"comments, comment, facebook, twitter, google+, social\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"c5331bfc2648dfeeebe486736d79a72c\";a:15:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:57:\"Insert a customizable contact form anywhere on your site.\";s:14:\"jumpstart_desc\";s:111:\"Adds a button to your post and page editors, allowing you to build simple forms to help visitors stay in touch.\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:3:\"1.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:18:\"Writing, Jumpstart\";s:25:\"additional_search_queries\";s:44:\"contact, form, grunion, feedback, submission\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"707c77d2e8cb0c12d094e5423c8beda8\";a:15:{s:4:\"name\";s:20:\"Custom content types\";s:11:\"description\";s:74:\"Display different types of content on your site with custom content types.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:72:\"cpt, custom post types, portfolio, portfolios, testimonial, testimonials\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"cd499b1678cfe3aabfc8ca0d3eb7e8b9\";a:15:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:53:\"Tweak your site’s CSS without modifying your theme.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"2\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.7\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:108:\"css, customize, custom, style, editor, less, sass, preprocessor, font, mobile, appearance, theme, stylesheet\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7d266d6546645f42cf52a66387699c50\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"5d436678d5e010ac6b0f157aa1021554\";a:15:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:27:\"Increase reach and traffic.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"5\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"google, seo, firehose, search, broadcast, broadcasting\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2c9ff765b826940496a65c0f927a594a\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"092b94702bb483a5472578283c2103d6\";a:15:{s:4:\"name\";s:16:\"Google Analytics\";s:11:\"description\";s:56:\"Set up Google Analytics without touching a line of code.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"37\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"4.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:37:\"webmaster, google, analytics, console\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"6bd77e09440df2b63044cf8cb7963773\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"ee1a10e2ef5733ab19eb1eb552d5ecb3\";a:15:{s:4:\"name\";s:19:\"Gravatar Hovercards\";s:11:\"description\";s:58:\"Enable pop-up business cards over commenters’ Gravatars.\";s:14:\"jumpstart_desc\";s:131:\"Let commenters link their profiles to their Gravatar accounts, making it easy for your visitors to learn more about your community.\";s:4:\"sort\";s:2:\"11\";s:20:\"recommendation_order\";s:2:\"13\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:20:\"gravatar, hovercards\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"284c08538b0bdc266315b2cf80b9c044\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0ce5c3ac630dea9f41215e48bb0f52f3\";a:15:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:53:\"Automatically load new content when a visitor scrolls\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:33:\"scroll, infinite, infinite scroll\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"87da2858d4f9cadb6a44fdcf32e8d2b5\";a:15:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:51:\"Allow applications to securely access your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"19\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:19:\"Writing, Developers\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:50:\"api, rest, develop, developers, json, klout, oauth\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"004962cb7cb9ec2b64769ac4df509217\";a:15:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:57:\"Use LaTeX markup for complex equations and other geekery.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"12\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:47:\"latex, math, equation, equations, formula, code\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7f408184bee8850d439c01322867e72c\";a:15:{s:4:\"name\";s:11:\"Lazy Images\";s:11:\"description\";s:16:\"Lazy load images\";s:14:\"jumpstart_desc\";s:164:\"Lazy-loading images improve your site\'s speed and create a smoother viewing experience. Images will load as visitors scroll down the screen, instead of all at once.\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:5:\"5.6.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:23:\"Appearance, Recommended\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:33:\"mobile, theme, performance, image\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2ad914b747f382ae918ed3b37077d4a1\";a:15:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:63:\"Give visitors an easy way to show they appreciate your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"23\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:26:\"like, likes, wordpress.com\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"b347263e3470979442ebf0514e41e893\";a:15:{s:4:\"name\";s:6:\"Manage\";s:11:\"description\";s:54:\"Manage all of your sites from a centralized dashboard.\";s:14:\"jumpstart_desc\";s:151:\"Helps you remotely manage plugins, turn on automated updates, and more from <a href=\"https://wordpress.com/plugins/\" target=\"_blank\">wordpress.com</a>.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"3\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:35:\"Centralized Management, Recommended\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:26:\"manage, management, remote\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"589982245aa6f495b72ab7cf57a1a48e\";a:15:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:50:\"Write posts or pages in plain-text Markdown syntax\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"31\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:12:\"md, markdown\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"d3bec8e063d637bc285018241b783725\";a:15:{s:4:\"name\";s:21:\"WordPress.com Toolbar\";s:11:\"description\";s:91:\"Replaces the admin bar with a useful toolbar to quickly manage your site via WordPress.com.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"16\";s:10:\"introduced\";s:3:\"4.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"General\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:19:\"adminbar, masterbar\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"6ab1c3e749bcfba2dedbaebe6c9fc614\";a:15:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:31:\"Enable the Jetpack Mobile theme\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"21\";s:20:\"recommendation_order\";s:2:\"11\";s:10:\"introduced\";s:3:\"1.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:31:\"Appearance, Mobile, Recommended\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:24:\"mobile, theme, minileven\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"b7be7da643ec641511839ecc6afb6def\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"d54f83ff429a8a37ace796de98459411\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0f8b373fa12c825162c0b0bc20b8bbdd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"5d7b0750cb34a4a72a44fa67790de639\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"f07fde8db279ffb0116c727df72c6374\";a:15:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:61:\"Receive immediate notifications if your site goes down, 24/7.\";s:14:\"jumpstart_desc\";s:61:\"Receive immediate notifications if your site goes down, 24/7.\";s:4:\"sort\";s:2:\"28\";s:20:\"recommendation_order\";s:2:\"10\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:19:\"Security, Jumpstart\";s:25:\"additional_search_queries\";s:37:\"monitor, uptime, downtime, monitoring\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"136a5445a49150db75472862f3d3aefb\";a:15:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:57:\"Receive instant notifications of site comments and likes.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:62:\"notification, notifications, toolbar, adminbar, push, comments\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"395d8ae651afabb54d1e98440674b384\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0b7b5e3ff80355a67c5485b0d00cd1a2\";a:15:{s:4:\"name\";s:9:\"Asset CDN\";s:11:\"description\";s:36:\"Serve static assets from our servers\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"6.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:23:\"Recommended, Appearance\";s:25:\"additional_search_queries\";s:46:\"photon, image, cdn, performance, speed, assets\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"4484ac68583fbbaab0ef698cdc986950\";a:15:{s:4:\"name\";s:6:\"Photon\";s:11:\"description\";s:29:\"Serve images from our servers\";s:14:\"jumpstart_desc\";s:141:\"Mirrors and serves your images from our free and fast image CDN, improving your site’s performance with no additional load on your servers.\";s:4:\"sort\";s:2:\"25\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:34:\"Recommended, Jumpstart, Appearance\";s:25:\"additional_search_queries\";s:38:\"photon, image, cdn, performance, speed\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"6f30193afa5b1360e3fa2676501b5e3a\";a:15:{s:4:\"name\";s:13:\"Post by email\";s:11:\"description\";s:33:\"Publish posts by sending an email\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"14\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:20:\"post by email, email\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"3e9f8bd3755d92e8e5d06966a957beb8\";a:15:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:41:\"Block suspicious-looking sign in activity\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"4\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:65:\"security, secure, protection, botnet, brute force, protect, login\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0cacc8ab2145ad11cb54d181a98aa550\";a:15:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:27:\"Automated social marketing.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"10\";s:20:\"recommendation_order\";s:1:\"7\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:101:\"facebook, twitter, google+, googleplus, google, tumblr, linkedin, social, tweet, connections, sharing\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"a528c2f803a92c5c2effa67cd33ab33a\";a:15:{s:4:\"name\";s:20:\"Progressive Web Apps\";s:11:\"description\";s:85:\"Speed up and improve the reliability of your site using the latest in web technology.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"18\";s:10:\"introduced\";s:5:\"5.6.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:7:\"Traffic\";s:25:\"additional_search_queries\";s:26:\"manifest, pwa, progressive\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"329b8efce059081d46936ece0c6736b3\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"5fdd42d482712fbdaf000b28ea7adce9\";a:15:{s:4:\"name\";s:13:\"Related posts\";s:11:\"description\";s:64:\"Increase page views by showing related content to your visitors.\";s:14:\"jumpstart_desc\";s:113:\"Keep visitors engaged on your blog by highlighting relevant and new content at the bottom of each published post.\";s:4:\"sort\";s:2:\"29\";s:20:\"recommendation_order\";s:1:\"9\";s:10:\"introduced\";s:3:\"2.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:22:\"related, related posts\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2c5096ef610018e98a8bcccfbea4471e\";a:15:{s:4:\"name\";s:6:\"Search\";s:11:\"description\";s:41:\"Enhanced search, powered by Elasticsearch\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:6:\"Search\";s:25:\"additional_search_queries\";s:6:\"search\";s:12:\"plan_classes\";s:8:\"business\";}s:32:\"0d81dd7df3ad2f245e84fd4fb66bf829\";a:15:{s:4:\"name\";s:9:\"SEO Tools\";s:11:\"description\";s:50:\"Better results on search engines and social media.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"35\";s:20:\"recommendation_order\";s:2:\"15\";s:10:\"introduced\";s:3:\"4.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:7:\"Traffic\";s:25:\"additional_search_queries\";s:81:\"search engine optimization, social preview, meta description, custom title format\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"32aaa676b3b6c9f3ef22430e1e0bca24\";a:15:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:37:\"Allow visitors to share your content.\";s:14:\"jumpstart_desc\";s:116:\"Twitter, Facebook and Google+ buttons at the bottom of each post, making it easy for visitors to share your content.\";s:4:\"sort\";s:1:\"7\";s:20:\"recommendation_order\";s:1:\"6\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:141:\"share, sharing, sharedaddy, buttons, icons, email, facebook, twitter, google+, linkedin, pinterest, pocket, press this, print, reddit, tumblr\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"948472b453cda59b38bb7c37af889af0\";a:15:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:50:\"Embed media from popular sites without any coding.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"3\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:46:\"Photos and Videos, Social, Writing, Appearance\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:236:\"shortcodes, shortcode, embeds, media, bandcamp, dailymotion, facebook, flickr, google calendars, google maps, google+, polldaddy, recipe, recipes, scribd, slideshare, slideshow, slideshows, soundcloud, ted, twitter, vimeo, vine, youtube\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7d00a6ca0a79fbe893275aaf6ed6ae42\";a:15:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:54:\"Create short and simple links for all posts and pages.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"8\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:17:\"shortlinks, wp.me\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"372e711395f23c466e04d4fd07f73099\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2ea687cec293289a2a3e5f0459e79768\";a:15:{s:4:\"name\";s:8:\"Sitemaps\";s:11:\"description\";s:50:\"Make it easy for search engines to find your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:20:\"Recommended, Traffic\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:39:\"sitemap, traffic, search, site map, seo\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2fe9dc2c7389d4f0825a0b23bc8b19d1\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"e7cf8a7e0f151ccf7cbdc6d8f118f316\";a:15:{s:4:\"name\";s:14:\"Secure Sign On\";s:11:\"description\";s:62:\"Allow users to log into this site using WordPress.com accounts\";s:14:\"jumpstart_desc\";s:98:\"Lets you log in to all your Jetpack-enabled sites with one click using your WordPress.com account.\";s:4:\"sort\";s:2:\"30\";s:20:\"recommendation_order\";s:1:\"5\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:19:\"Security, Jumpstart\";s:25:\"additional_search_queries\";s:34:\"sso, single sign on, login, log in\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"34fb073ed896af853ed48bd5739240cb\";a:15:{s:4:\"name\";s:10:\"Site Stats\";s:11:\"description\";s:44:\"Collect valuable traffic stats and insights.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"2\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:23:\"Site Stats, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"statistics, tracking, analytics, views, traffic, stats\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"8de0dfff24a17cf0fa0011dfc691a3f3\";a:15:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:87:\"Allow users to subscribe to your posts and comments and receive notifications via email\";s:14:\"jumpstart_desc\";s:126:\"Give visitors two easy subscription options — while commenting, or via a separate email subscription widget you can display.\";s:4:\"sort\";s:1:\"9\";s:20:\"recommendation_order\";s:1:\"8\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:74:\"subscriptions, subscription, email, follow, followers, subscribers, signup\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"4744f348db095538d3edcacb0ed99c89\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"d89db0d934b39f86065ff58e73594070\";a:15:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:14:\"jumpstart_desc\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:43:\"gallery, tiles, tiled, grid, mosaic, images\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"01987a7ba5e19786f2992501add8181a\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"20459cc462babfc5a82adf6b34f6e8b1\";a:15:{s:4:\"name\";s:12:\"Data Backups\";s:11:\"description\";s:54:\"Off-site backups, security scans, and automatic fixes.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"32\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"0:1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:5:\"false\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:16:\"Security, Health\";s:25:\"additional_search_queries\";s:28:\"vaultpress, backup, security\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"836245eb0a8f0c5272542305a88940c1\";a:15:{s:4:\"name\";s:17:\"Site verification\";s:11:\"description\";s:58:\"Establish your site\'s authenticity with external services.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"33\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:56:\"webmaster, seo, google, bing, pinterest, search, console\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"e94397a5c47c1be995eff613e65a674f\";a:15:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:27:\"Fast, ad-free video hosting\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"27\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:25:\"video, videos, videopress\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"032cd76e08467c732ccb026efda0c9cd\";a:15:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:42:\"Control where widgets appear on your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"17\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:54:\"widget visibility, logic, conditional, widgets, widget\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"9b3e84beedf2e96f1ac5dd6498d2b1aa\";a:15:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:54:\"Add images, Twitter streams, and more to your sidebar.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"4\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:65:\"widget, widgets, facebook, gallery, twitter, gravatar, image, rss\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7724fd9600745cf93e37cc09282e1a37\";a:15:{s:4:\"name\";s:3:\"Ads\";s:11:\"description\";s:60:\"Earn income by allowing Jetpack to display high quality ads.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"4.5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:19:\"Traffic, Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:26:\"advertising, ad codes, ads\";s:12:\"plan_classes\";s:17:\"premium, business\";}s:32:\"5b8f8e5b5a1887e3c0393cb78d5143a3\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(1005,'wpforms_preview_page','305','yes'),(886,'_site_transient_timeout_browser_0ac1f9240df96b3586c220faef490724','1547125237','no'),(887,'_site_transient_browser_0ac1f9240df96b3586c220faef490724','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"71.0.3578.98\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(889,'neve_upsell_off','yes','yes'),(1191,'um_cached_users_queue','0','no'),(412,'wpforms_activated','a:1:{s:4:\"lite\";i:1543935953;}','yes'),(306,'um_options','a:151:{s:30:\"restricted_access_post_metabox\";a:2:{s:4:\"post\";i:1;s:4:\"page\";i:1;}s:19:\"uninstall_on_delete\";i:0;s:14:\"permalink_base\";s:10:\"user_login\";s:12:\"display_name\";s:9:\"full_name\";s:18:\"display_name_field\";s:0:\"\";s:15:\"author_redirect\";i:1;s:12:\"members_page\";i:1;s:13:\"use_gravatars\";i:0;s:37:\"use_um_gravatar_default_builtin_image\";s:7:\"default\";s:29:\"use_um_gravatar_default_image\";i:0;s:24:\"reset_require_strongpass\";i:0;s:20:\"account_tab_password\";i:1;s:19:\"account_tab_privacy\";i:1;s:25:\"account_tab_notifications\";i:1;s:18:\"account_tab_delete\";i:1;s:19:\"delete_account_text\";s:150:\"Are you sure you want to delete your account? This will erase all of your account data from the site. To delete your account enter your password below\";s:12:\"account_name\";i:1;s:20:\"account_name_disable\";i:0;s:20:\"account_name_require\";i:1;s:13:\"account_email\";i:1;s:25:\"account_hide_in_directory\";i:1;s:26:\"account_require_strongpass\";i:0;s:17:\"photo_thumb_sizes\";a:3:{i:0;i:40;i:1;i:80;i:2;i:190;}s:17:\"cover_thumb_sizes\";a:2:{i:0;i:300;i:1;i:600;}s:10:\"accessible\";i:0;s:15:\"access_redirect\";s:0:\"\";s:19:\"access_exclude_uris\";a:0:{}s:20:\"home_page_accessible\";i:1;s:24:\"category_page_accessible\";i:1;s:27:\"enable_reset_password_limit\";i:1;s:27:\"reset_password_limit_number\";i:3;s:14:\"blocked_emails\";s:0:\"\";s:13:\"blocked_words\";s:47:\"admin\r\nadministrator\r\nwebmaster\r\nsupport\r\nstaff\";s:14:\"default_avatar\";s:0:\"\";s:13:\"default_cover\";s:0:\"\";s:21:\"profile_show_metaicon\";i:0;s:12:\"profile_menu\";i:1;s:24:\"profile_menu_default_tab\";s:4:\"main\";s:18:\"profile_menu_icons\";i:1;s:13:\"form_asterisk\";i:0;s:13:\"profile_title\";s:28:\"{display_name} | {site_name}\";s:12:\"profile_desc\";s:83:\"{display_name} is on {site_name}. Join {site_name} to view {display_name}\'s profile\";s:11:\"admin_email\";s:31:\"wendell.koi@seaprosolutions.com\";s:9:\"mail_from\";s:7:\"My Blog\";s:14:\"mail_from_addr\";s:31:\"wendell.koi@seaprosolutions.com\";s:10:\"email_html\";i:1;s:17:\"image_compression\";i:60;s:15:\"image_max_width\";i:1000;s:15:\"cover_min_width\";i:1000;s:22:\"profile_photo_max_size\";i:999999999;s:20:\"cover_photo_max_size\";i:999999999;s:22:\"custom_roles_increment\";i:1;s:16:\"profile_tab_main\";i:1;s:24:\"profile_tab_main_privacy\";i:0;s:22:\"profile_tab_main_roles\";s:0:\"\";s:17:\"profile_tab_posts\";i:1;s:25:\"profile_tab_posts_privacy\";i:0;s:23:\"profile_tab_posts_roles\";s:0:\"\";s:20:\"profile_tab_comments\";i:1;s:28:\"profile_tab_comments_privacy\";i:0;s:26:\"profile_tab_comments_roles\";s:0:\"\";s:16:\"welcome_email_on\";b:1;s:17:\"welcome_email_sub\";s:23:\"Welcome to {site_name}!\";s:13:\"welcome_email\";s:365:\"Hi {display_name},<br /><br />Thank you for signing up with {site_name}! Your account is now active.<br /><br />To login please visit the following url:<br /><br />{login_url} <br /><br />Your account e-mail: {email} <br />Your account username: {username} <br /><br />If you have any problems, please contact us at {admin_email}<br /><br />Thanks,<br />{site_name}\";s:18:\"checkmail_email_on\";b:0;s:19:\"checkmail_email_sub\";s:28:\"Please activate your account\";s:15:\"checkmail_email\";s:304:\"Hi {display_name},<br /><br />Thank you for signing up with {site_name}! To activate your account, please click the link below to confirm your email address:<br /><br />{account_activation_link} <br /><br />If you have any problems, please contact us at {admin_email}<br /><br />Thanks, <br />{site_name}\";s:16:\"pending_email_on\";b:0;s:17:\"pending_email_sub\";s:30:\"[{site_name}] New user account\";s:13:\"pending_email\";s:309:\"Hi {display_name}, <br /><br />Thank you for signing up with {site_name}! Your account is currently being reviewed by a member of our team.<br /><br />Please allow us some time to process your request.<br /><br />If you have any problems, please contact us at {admin_email}<br /><br />Thanks,<br />{site_name}\";s:17:\"approved_email_on\";b:0;s:18:\"approved_email_sub\";s:41:\"Your account at {site_name} is now active\";s:14:\"approved_email\";s:438:\"Hi {display_name},<br /><br />Thank you for signing up with {site_name}! Your account has been approved and is now active.<br /><br />To login please visit the following url:<br /><br />{login_url}<br /><br />Your account e-mail: {email}<br />Your account username: {username}<br />Set your account password: {password_reset_link}<br /><br />If you have any problems, please contact us at {admin_email}<br /><br />Thanks,<br />{site_name}\";s:17:\"rejected_email_on\";b:0;s:18:\"rejected_email_sub\";s:30:\"Your account has been rejected\";s:14:\"rejected_email\";s:288:\"Hi {display_name},<br /><br />Thank you for applying for membership to {site_name}! We have reviewed your information and unfortunately we are unable to accept you as a member at this moment.<br /><br />Please feel free to apply again at a future date.<br /><br />Thanks,<br />{site_name}\";s:17:\"inactive_email_on\";b:1;s:18:\"inactive_email_sub\";s:33:\"Your account has been deactivated\";s:14:\"inactive_email\";s:250:\"Hi {display_name},<br /><br />This is an automated email to let you know your {site_name} account has been deactivated.<br /><br />If you would like your account to be reactivated please contact us at {admin_email}<br /><br />Thanks,<br />{site_name}\";s:17:\"deletion_email_on\";b:1;s:18:\"deletion_email_sub\";s:29:\"Your account has been deleted\";s:14:\"deletion_email\";s:355:\"Hi {display_name},<br /><br />This is an automated email to let you know your {site_name} account has been deleted. All of your personal information has been permanently deleted and you will no longer be able to login to {site_name}.<br /><br />If your account has been deleted by accident please contact us at {admin_email} <br />Thanks,<br />{site_name}\";s:16:\"resetpw_email_on\";b:1;s:17:\"resetpw_email_sub\";s:19:\"Reset your password\";s:13:\"resetpw_email\";s:303:\"Hi {display_name},<br /><br />We received a request to reset the password for your account. If you made this request, click the link below to change your password:<br /><br />{password_reset_link}<br /><br />If you didn\'t make this request, you can ignore this email <br /><br />Thanks,<br />{site_name}\";s:18:\"changedpw_email_on\";b:1;s:19:\"changedpw_email_sub\";s:42:\"Your {site_name} password has been changed\";s:15:\"changedpw_email\";s:307:\"Hi {display_name},<br /><br />You recently changed the password associated with your {site_name} account.<br /><br />If you did not make this change and believe your {site_name} account has been compromised, please contact us at the following email address: {admin_email}<br /><br />Thanks,<br />{site_name}\";s:23:\"changedaccount_email_on\";b:1;s:24:\"changedaccount_email_sub\";s:39:\"Your account at {site_name} was updated\";s:20:\"changedaccount_email\";s:278:\"Hi {display_name},<br /><br />You recently updated your {site_name} account.<br /><br />If you did not make this change and believe your {site_name} account has been compromised, please contact us at the following email address: {admin_email}<br /><br />Thanks,<br />{site_name}\";s:24:\"notification_new_user_on\";b:1;s:25:\"notification_new_user_sub\";s:30:\"[{site_name}] New user account\";s:21:\"notification_new_user\";s:211:\"{display_name} has just created an account on {site_name}. To view their profile click here:<br /><br />{user_profile_link}<br /><br />Here is the submitted registration form:<br /><br />{submitted_registration}\";s:22:\"notification_review_on\";b:0;s:23:\"notification_review_sub\";s:38:\"[{site_name}] New user awaiting review\";s:19:\"notification_review\";s:277:\"{display_name} has just applied for membership to {site_name} and is waiting to be reviewed.<br /><br />To review this member please click the following link:<br /><br />{user_profile_link}<br /><br />Here is the submitted registration form:<br /><br />{submitted_registration}\";s:24:\"notification_deletion_on\";b:0;s:25:\"notification_deletion_sub\";s:29:\"[{site_name}] Account deleted\";s:21:\"notification_deletion\";s:58:\"{display_name} has just deleted their {site_name} account.\";s:9:\"core_user\";i:213;s:10:\"core_login\";i:214;s:13:\"core_register\";i:215;s:12:\"core_members\";i:216;s:11:\"core_logout\";i:217;s:12:\"core_account\";i:218;s:19:\"core_password-reset\";i:219;s:17:\"profile_show_name\";i:1;s:25:\"profile_show_social_links\";i:0;s:16:\"profile_show_bio\";i:1;s:21:\"profile_show_html_bio\";i:0;s:20:\"profile_bio_maxchars\";i:180;s:19:\"profile_header_menu\";s:2:\"bc\";s:18:\"profile_empty_text\";i:1;s:22:\"profile_empty_text_emo\";i:1;s:12:\"profile_role\";a:0:{}s:16:\"profile_template\";s:7:\"profile\";s:17:\"profile_max_width\";s:6:\"1000px\";s:22:\"profile_area_max_width\";s:5:\"600px\";s:13:\"profile_align\";s:6:\"center\";s:13:\"profile_icons\";s:5:\"label\";s:21:\"profile_cover_enabled\";i:1;s:19:\"profile_cover_ratio\";s:5:\"2.7:1\";s:17:\"profile_photosize\";s:5:\"190px\";s:19:\"profile_photocorner\";s:1:\"1\";s:17:\"profile_header_bg\";s:0:\"\";s:24:\"profile_primary_btn_word\";s:14:\"Update Profile\";s:21:\"profile_secondary_btn\";s:1:\"1\";s:26:\"profile_secondary_btn_word\";s:6:\"Cancel\";s:13:\"register_role\";s:1:\"0\";s:17:\"register_template\";s:8:\"register\";s:18:\"register_max_width\";s:5:\"450px\";s:14:\"register_align\";s:6:\"center\";s:14:\"register_icons\";s:5:\"label\";s:25:\"register_primary_btn_word\";s:8:\"Register\";s:22:\"register_secondary_btn\";i:1;s:27:\"register_secondary_btn_word\";s:5:\"Login\";s:26:\"register_secondary_btn_url\";s:0:\"\";s:14:\"login_template\";s:5:\"login\";s:15:\"login_max_width\";s:5:\"450px\";s:11:\"login_align\";s:6:\"center\";s:11:\"login_icons\";s:5:\"label\";s:22:\"login_primary_btn_word\";s:5:\"Login\";s:22:\"login_forgot_pass_link\";i:1;s:21:\"login_show_rememberme\";i:1;s:19:\"login_secondary_btn\";i:1;s:24:\"login_secondary_btn_word\";s:8:\"Register\";s:23:\"login_secondary_btn_url\";s:0:\"\";s:18:\"directory_template\";s:7:\"members\";s:16:\"directory_header\";s:21:\"{total_users} Members\";s:23:\"directory_header_single\";s:20:\"{total_users} Member\";}','yes'),(307,'um_role_subscriber_meta','a:14:{s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}','yes'),(308,'um_role_author_meta','a:14:{s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}','yes'),(309,'um_role_contributor_meta','a:14:{s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}','yes'),(310,'um_role_editor_meta','a:14:{s:22:\"_um_can_access_wpadmin\";i:0;s:24:\"_um_can_not_see_adminbar\";i:1;s:21:\"_um_can_edit_everyone\";i:0;s:23:\"_um_can_delete_everyone\";i:0;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:15:\"_um_after_login\";s:16:\"redirect_profile\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:20:\"_um_default_homepage\";i:1;s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:0;s:30:\"_um_can_access_private_profile\";i:0;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}','yes'),(311,'um_role_administrator_meta','a:14:{s:22:\"_um_can_access_wpadmin\";i:1;s:24:\"_um_can_not_see_adminbar\";i:0;s:21:\"_um_can_edit_everyone\";i:1;s:23:\"_um_can_delete_everyone\";i:1;s:20:\"_um_can_edit_profile\";i:1;s:22:\"_um_can_delete_profile\";i:1;s:20:\"_um_default_homepage\";i:1;s:15:\"_um_after_login\";s:14:\"redirect_admin\";s:16:\"_um_after_logout\";s:13:\"redirect_home\";s:16:\"_um_can_view_all\";i:1;s:28:\"_um_can_make_private_profile\";i:1;s:30:\"_um_can_access_private_profile\";i:1;s:10:\"_um_status\";s:8:\"approved\";s:20:\"_um_auto_approve_act\";s:16:\"redirect_profile\";}','yes'),(312,'widget_um_search_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(313,'um_cache_userdata_1','a:101:{s:2:\"ID\";i:1;s:10:\"user_login\";s:31:\"wendell.koi@seaprosolutions.com\";s:9:\"user_pass\";s:34:\"$P$BNEWzsKvD1hzsMYK.5GNZsXZUZ8v2z/\";s:13:\"user_nicename\";s:31:\"wendell.koi@seaprosolutions.com\";s:10:\"user_email\";s:31:\"wendell.koi@seaprosolutions.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2018-11-29 02:08:07\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:31:\"wendell.koi@seaprosolutions.com\";s:13:\"administrator\";b:1;s:8:\"wp_roles\";s:13:\"administrator\";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: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:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;s:8:\"nickname\";s:31:\"wendell.koi@seaprosolutions.com\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:19:\"syntax_highlighting\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:6:\"locale\";s:0:\"\";s:17:\"wpyt_capabilities\";s:31:\"a:1:{s:13:\"administrator\";b:1;}\";s:15:\"wpyt_user_level\";s:2:\"10\";s:18:\"show_welcome_panel\";s:1:\"1\";s:18:\"wpyt_user-settings\";s:58:\"imgsize=full&libraryContent=browse&editor=tinymce&hidetb=1\";s:23:\"wpyt_user-settings-time\";s:10:\"1543457311\";s:39:\"wpyt_dashboard_quick_press_last_post_id\";s:1:\"4\";s:25:\"community-events-location\";s:36:\"a:1:{s:2:\"ip\";s:13:\"166.137.240.0\";}\";s:22:\"elementor_introduction\";s:14:\"a:1:{i:2;b:1;}\";s:14:\"account_status\";s:8:\"approved\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"role\";s:13:\"administrator\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:18:\"can_access_wpadmin\";i:1;s:20:\"can_not_see_adminbar\";i:0;s:17:\"can_edit_everyone\";i:1;s:19:\"can_delete_everyone\";i:1;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:16:\"default_homepage\";i:1;s:11:\"after_login\";s:14:\"redirect_admin\";s:12:\"after_logout\";s:13:\"redirect_home\";s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:1;s:26:\"can_access_private_profile\";i:1;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"super_admin\";i:1;}','no'),(316,'um_cache_fonticons','a:1218:{i:0;s:13:\"um-icon-alert\";i:1;s:21:\"um-icon-alert-circled\";i:2;s:19:\"um-icon-android-add\";i:3;s:26:\"um-icon-android-add-circle\";i:4;s:27:\"um-icon-android-alarm-clock\";i:5;s:21:\"um-icon-android-alert\";i:6;s:20:\"um-icon-android-apps\";i:7;s:23:\"um-icon-android-archive\";i:8;s:26:\"um-icon-android-arrow-back\";i:9;s:26:\"um-icon-android-arrow-down\";i:10;s:30:\"um-icon-android-arrow-dropdown\";i:11;s:37:\"um-icon-android-arrow-dropdown-circle\";i:12;s:30:\"um-icon-android-arrow-dropleft\";i:13;s:37:\"um-icon-android-arrow-dropleft-circle\";i:14;s:31:\"um-icon-android-arrow-dropright\";i:15;s:38:\"um-icon-android-arrow-dropright-circle\";i:16;s:28:\"um-icon-android-arrow-dropup\";i:17;s:35:\"um-icon-android-arrow-dropup-circle\";i:18;s:29:\"um-icon-android-arrow-forward\";i:19;s:24:\"um-icon-android-arrow-up\";i:20;s:22:\"um-icon-android-attach\";i:21;s:19:\"um-icon-android-bar\";i:22;s:23:\"um-icon-android-bicycle\";i:23;s:20:\"um-icon-android-boat\";i:24;s:24:\"um-icon-android-bookmark\";i:25;s:20:\"um-icon-android-bulb\";i:26;s:19:\"um-icon-android-bus\";i:27;s:24:\"um-icon-android-calendar\";i:28;s:20:\"um-icon-android-call\";i:29;s:22:\"um-icon-android-camera\";i:30;s:22:\"um-icon-android-cancel\";i:31;s:19:\"um-icon-android-car\";i:32;s:20:\"um-icon-android-cart\";i:33;s:20:\"um-icon-android-chat\";i:34;s:24:\"um-icon-android-checkbox\";i:35;s:30:\"um-icon-android-checkbox-blank\";i:36;s:32:\"um-icon-android-checkbox-outline\";i:37;s:38:\"um-icon-android-checkbox-outline-blank\";i:38;s:32:\"um-icon-android-checkmark-circle\";i:39;s:25:\"um-icon-android-clipboard\";i:40;s:21:\"um-icon-android-close\";i:41;s:21:\"um-icon-android-cloud\";i:42;s:28:\"um-icon-android-cloud-circle\";i:43;s:26:\"um-icon-android-cloud-done\";i:44;s:29:\"um-icon-android-cloud-outline\";i:45;s:29:\"um-icon-android-color-palette\";i:46;s:23:\"um-icon-android-compass\";i:47;s:23:\"um-icon-android-contact\";i:48;s:24:\"um-icon-android-contacts\";i:49;s:24:\"um-icon-android-contract\";i:50;s:22:\"um-icon-android-create\";i:51;s:22:\"um-icon-android-delete\";i:52;s:23:\"um-icon-android-desktop\";i:53;s:24:\"um-icon-android-document\";i:54;s:20:\"um-icon-android-done\";i:55;s:24:\"um-icon-android-done-all\";i:56;s:24:\"um-icon-android-download\";i:57;s:22:\"um-icon-android-drafts\";i:58;s:20:\"um-icon-android-exit\";i:59;s:22:\"um-icon-android-expand\";i:60;s:24:\"um-icon-android-favorite\";i:61;s:32:\"um-icon-android-favorite-outline\";i:62;s:20:\"um-icon-android-film\";i:63;s:22:\"um-icon-android-folder\";i:64;s:27:\"um-icon-android-folder-open\";i:65;s:22:\"um-icon-android-funnel\";i:66;s:21:\"um-icon-android-globe\";i:67;s:20:\"um-icon-android-hand\";i:68;s:23:\"um-icon-android-hangout\";i:69;s:21:\"um-icon-android-happy\";i:70;s:20:\"um-icon-android-home\";i:71;s:21:\"um-icon-android-image\";i:72;s:22:\"um-icon-android-laptop\";i:73;s:20:\"um-icon-android-list\";i:74;s:22:\"um-icon-android-locate\";i:75;s:20:\"um-icon-android-lock\";i:76;s:20:\"um-icon-android-mail\";i:77;s:19:\"um-icon-android-map\";i:78;s:20:\"um-icon-android-menu\";i:79;s:26:\"um-icon-android-microphone\";i:80;s:30:\"um-icon-android-microphone-off\";i:81;s:31:\"um-icon-android-more-horizontal\";i:82;s:29:\"um-icon-android-more-vertical\";i:83;s:24:\"um-icon-android-navigate\";i:84;s:29:\"um-icon-android-notifications\";i:85;s:34:\"um-icon-android-notifications-none\";i:86;s:33:\"um-icon-android-notifications-off\";i:87;s:20:\"um-icon-android-open\";i:88;s:23:\"um-icon-android-options\";i:89;s:22:\"um-icon-android-people\";i:90;s:22:\"um-icon-android-person\";i:91;s:26:\"um-icon-android-person-add\";i:92;s:31:\"um-icon-android-phone-landscape\";i:93;s:30:\"um-icon-android-phone-portrait\";i:94;s:19:\"um-icon-android-pin\";i:95;s:21:\"um-icon-android-plane\";i:96;s:25:\"um-icon-android-playstore\";i:97;s:21:\"um-icon-android-print\";i:98;s:32:\"um-icon-android-radio-button-off\";i:99;s:31:\"um-icon-android-radio-button-on\";i:100;s:23:\"um-icon-android-refresh\";i:101;s:22:\"um-icon-android-remove\";i:102;s:29:\"um-icon-android-remove-circle\";i:103;s:26:\"um-icon-android-restaurant\";i:104;s:19:\"um-icon-android-sad\";i:105;s:22:\"um-icon-android-search\";i:106;s:20:\"um-icon-android-send\";i:107;s:24:\"um-icon-android-settings\";i:108;s:21:\"um-icon-android-share\";i:109;s:25:\"um-icon-android-share-alt\";i:110;s:20:\"um-icon-android-star\";i:111;s:25:\"um-icon-android-star-half\";i:112;s:28:\"um-icon-android-star-outline\";i:113;s:25:\"um-icon-android-stopwatch\";i:114;s:22:\"um-icon-android-subway\";i:115;s:21:\"um-icon-android-sunny\";i:116;s:20:\"um-icon-android-sync\";i:117;s:23:\"um-icon-android-textsms\";i:118;s:20:\"um-icon-android-time\";i:119;s:21:\"um-icon-android-train\";i:120;s:22:\"um-icon-android-unlock\";i:121;s:22:\"um-icon-android-upload\";i:122;s:27:\"um-icon-android-volume-down\";i:123;s:27:\"um-icon-android-volume-mute\";i:124;s:26:\"um-icon-android-volume-off\";i:125;s:25:\"um-icon-android-volume-up\";i:126;s:20:\"um-icon-android-walk\";i:127;s:23:\"um-icon-android-warning\";i:128;s:21:\"um-icon-android-watch\";i:129;s:20:\"um-icon-android-wifi\";i:130;s:16:\"um-icon-aperture\";i:131;s:15:\"um-icon-archive\";i:132;s:20:\"um-icon-arrow-down-a\";i:133;s:20:\"um-icon-arrow-down-b\";i:134;s:20:\"um-icon-arrow-down-c\";i:135;s:20:\"um-icon-arrow-expand\";i:136;s:29:\"um-icon-arrow-graph-down-left\";i:137;s:30:\"um-icon-arrow-graph-down-right\";i:138;s:27:\"um-icon-arrow-graph-up-left\";i:139;s:28:\"um-icon-arrow-graph-up-right\";i:140;s:20:\"um-icon-arrow-left-a\";i:141;s:20:\"um-icon-arrow-left-b\";i:142;s:20:\"um-icon-arrow-left-c\";i:143;s:18:\"um-icon-arrow-move\";i:144;s:20:\"um-icon-arrow-resize\";i:145;s:25:\"um-icon-arrow-return-left\";i:146;s:26:\"um-icon-arrow-return-right\";i:147;s:21:\"um-icon-arrow-right-a\";i:148;s:21:\"um-icon-arrow-right-b\";i:149;s:21:\"um-icon-arrow-right-c\";i:150;s:20:\"um-icon-arrow-shrink\";i:151;s:18:\"um-icon-arrow-swap\";i:152;s:18:\"um-icon-arrow-up-a\";i:153;s:18:\"um-icon-arrow-up-b\";i:154;s:18:\"um-icon-arrow-up-c\";i:155;s:16:\"um-icon-asterisk\";i:156;s:10:\"um-icon-at\";i:157;s:17:\"um-icon-backspace\";i:158;s:25:\"um-icon-backspace-outline\";i:159;s:11:\"um-icon-bag\";i:160;s:24:\"um-icon-battery-charging\";i:161;s:21:\"um-icon-battery-empty\";i:162;s:20:\"um-icon-battery-full\";i:163;s:20:\"um-icon-battery-half\";i:164;s:19:\"um-icon-battery-low\";i:165;s:14:\"um-icon-beaker\";i:166;s:12:\"um-icon-beer\";i:167;s:17:\"um-icon-bluetooth\";i:168;s:15:\"um-icon-bonfire\";i:169;s:16:\"um-icon-bookmark\";i:170;s:14:\"um-icon-bowtie\";i:171;s:17:\"um-icon-briefcase\";i:172;s:11:\"um-icon-bug\";i:173;s:18:\"um-icon-calculator\";i:174;s:16:\"um-icon-calendar\";i:175;s:14:\"um-icon-camera\";i:176;s:12:\"um-icon-card\";i:177;s:12:\"um-icon-cash\";i:178;s:15:\"um-icon-chatbox\";i:179;s:23:\"um-icon-chatbox-working\";i:180;s:17:\"um-icon-chatboxes\";i:181;s:18:\"um-icon-chatbubble\";i:182;s:26:\"um-icon-chatbubble-working\";i:183;s:19:\"um-icon-chatbubbles\";i:184;s:17:\"um-icon-checkmark\";i:185;s:25:\"um-icon-checkmark-circled\";i:186;s:23:\"um-icon-checkmark-round\";i:187;s:20:\"um-icon-chevron-down\";i:188;s:20:\"um-icon-chevron-left\";i:189;s:21:\"um-icon-chevron-right\";i:190;s:18:\"um-icon-chevron-up\";i:191;s:17:\"um-icon-clipboard\";i:192;s:13:\"um-icon-clock\";i:193;s:13:\"um-icon-close\";i:194;s:21:\"um-icon-close-circled\";i:195;s:19:\"um-icon-close-round\";i:196;s:25:\"um-icon-closed-captioning\";i:197;s:13:\"um-icon-cloud\";i:198;s:12:\"um-icon-code\";i:199;s:21:\"um-icon-code-download\";i:200;s:20:\"um-icon-code-working\";i:201;s:14:\"um-icon-coffee\";i:202;s:15:\"um-icon-compass\";i:203;s:15:\"um-icon-compose\";i:204;s:23:\"um-icon-connection-bars\";i:205;s:16:\"um-icon-contrast\";i:206;s:12:\"um-icon-crop\";i:207;s:12:\"um-icon-cube\";i:208;s:12:\"um-icon-disc\";i:209;s:16:\"um-icon-document\";i:210;s:21:\"um-icon-document-text\";i:211;s:12:\"um-icon-drag\";i:212;s:13:\"um-icon-earth\";i:213;s:13:\"um-icon-easel\";i:214;s:12:\"um-icon-edit\";i:215;s:11:\"um-icon-egg\";i:216;s:13:\"um-icon-eject\";i:217;s:13:\"um-icon-email\";i:218;s:20:\"um-icon-email-unread\";i:219;s:24:\"um-icon-erlenmeyer-flask\";i:220;s:32:\"um-icon-erlenmeyer-flask-bubbles\";i:221;s:11:\"um-icon-eye\";i:222;s:20:\"um-icon-eye-disabled\";i:223;s:14:\"um-icon-female\";i:224;s:14:\"um-icon-filing\";i:225;s:19:\"um-icon-film-marker\";i:226;s:16:\"um-icon-fireball\";i:227;s:12:\"um-icon-flag\";i:228;s:13:\"um-icon-flame\";i:229;s:13:\"um-icon-flash\";i:230;s:17:\"um-icon-flash-off\";i:231;s:14:\"um-icon-folder\";i:232;s:12:\"um-icon-fork\";i:233;s:17:\"um-icon-fork-repo\";i:234;s:15:\"um-icon-forward\";i:235;s:14:\"um-icon-funnel\";i:236;s:14:\"um-icon-gear-a\";i:237;s:14:\"um-icon-gear-b\";i:238;s:12:\"um-icon-grid\";i:239;s:14:\"um-icon-hammer\";i:240;s:13:\"um-icon-happy\";i:241;s:21:\"um-icon-happy-outline\";i:242;s:17:\"um-icon-headphone\";i:243;s:13:\"um-icon-heart\";i:244;s:20:\"um-icon-heart-broken\";i:245;s:12:\"um-icon-help\";i:246;s:17:\"um-icon-help-buoy\";i:247;s:20:\"um-icon-help-circled\";i:248;s:12:\"um-icon-home\";i:249;s:16:\"um-icon-icecream\";i:250;s:13:\"um-icon-image\";i:251;s:14:\"um-icon-images\";i:252;s:19:\"um-icon-information\";i:253;s:27:\"um-icon-information-circled\";i:254;s:13:\"um-icon-ionic\";i:255;s:17:\"um-icon-ios-alarm\";i:256;s:25:\"um-icon-ios-alarm-outline\";i:257;s:18:\"um-icon-ios-albums\";i:258;s:26:\"um-icon-ios-albums-outline\";i:259;s:28:\"um-icon-ios-americanfootball\";i:260;s:36:\"um-icon-ios-americanfootball-outline\";i:261;s:21:\"um-icon-ios-analytics\";i:262;s:29:\"um-icon-ios-analytics-outline\";i:263;s:22:\"um-icon-ios-arrow-back\";i:264;s:22:\"um-icon-ios-arrow-down\";i:265;s:25:\"um-icon-ios-arrow-forward\";i:266;s:22:\"um-icon-ios-arrow-left\";i:267;s:23:\"um-icon-ios-arrow-right\";i:268;s:27:\"um-icon-ios-arrow-thin-down\";i:269;s:27:\"um-icon-ios-arrow-thin-left\";i:270;s:28:\"um-icon-ios-arrow-thin-right\";i:271;s:25:\"um-icon-ios-arrow-thin-up\";i:272;s:20:\"um-icon-ios-arrow-up\";i:273;s:14:\"um-icon-ios-at\";i:274;s:22:\"um-icon-ios-at-outline\";i:275;s:19:\"um-icon-ios-barcode\";i:276;s:27:\"um-icon-ios-barcode-outline\";i:277;s:20:\"um-icon-ios-baseball\";i:278;s:28:\"um-icon-ios-baseball-outline\";i:279;s:22:\"um-icon-ios-basketball\";i:280;s:30:\"um-icon-ios-basketball-outline\";i:281;s:16:\"um-icon-ios-bell\";i:282;s:24:\"um-icon-ios-bell-outline\";i:283;s:16:\"um-icon-ios-body\";i:284;s:24:\"um-icon-ios-body-outline\";i:285;s:16:\"um-icon-ios-bolt\";i:286;s:24:\"um-icon-ios-bolt-outline\";i:287;s:16:\"um-icon-ios-book\";i:288;s:24:\"um-icon-ios-book-outline\";i:289;s:21:\"um-icon-ios-bookmarks\";i:290;s:29:\"um-icon-ios-bookmarks-outline\";i:291;s:15:\"um-icon-ios-box\";i:292;s:23:\"um-icon-ios-box-outline\";i:293;s:21:\"um-icon-ios-briefcase\";i:294;s:29:\"um-icon-ios-briefcase-outline\";i:295;s:20:\"um-icon-ios-browsers\";i:296;s:28:\"um-icon-ios-browsers-outline\";i:297;s:22:\"um-icon-ios-calculator\";i:298;s:30:\"um-icon-ios-calculator-outline\";i:299;s:20:\"um-icon-ios-calendar\";i:300;s:28:\"um-icon-ios-calendar-outline\";i:301;s:18:\"um-icon-ios-camera\";i:302;s:26:\"um-icon-ios-camera-outline\";i:303;s:16:\"um-icon-ios-cart\";i:304;s:24:\"um-icon-ios-cart-outline\";i:305;s:21:\"um-icon-ios-chatboxes\";i:306;s:29:\"um-icon-ios-chatboxes-outline\";i:307;s:22:\"um-icon-ios-chatbubble\";i:308;s:30:\"um-icon-ios-chatbubble-outline\";i:309;s:21:\"um-icon-ios-checkmark\";i:310;s:27:\"um-icon-ios-checkmark-empty\";i:311;s:29:\"um-icon-ios-checkmark-outline\";i:312;s:25:\"um-icon-ios-circle-filled\";i:313;s:26:\"um-icon-ios-circle-outline\";i:314;s:17:\"um-icon-ios-clock\";i:315;s:25:\"um-icon-ios-clock-outline\";i:316;s:17:\"um-icon-ios-close\";i:317;s:23:\"um-icon-ios-close-empty\";i:318;s:25:\"um-icon-ios-close-outline\";i:319;s:17:\"um-icon-ios-cloud\";i:320;s:26:\"um-icon-ios-cloud-download\";i:321;s:34:\"um-icon-ios-cloud-download-outline\";i:322;s:25:\"um-icon-ios-cloud-outline\";i:323;s:24:\"um-icon-ios-cloud-upload\";i:324;s:32:\"um-icon-ios-cloud-upload-outline\";i:325;s:18:\"um-icon-ios-cloudy\";i:326;s:24:\"um-icon-ios-cloudy-night\";i:327;s:32:\"um-icon-ios-cloudy-night-outline\";i:328;s:26:\"um-icon-ios-cloudy-outline\";i:329;s:15:\"um-icon-ios-cog\";i:330;s:23:\"um-icon-ios-cog-outline\";i:331;s:24:\"um-icon-ios-color-filter\";i:332;s:32:\"um-icon-ios-color-filter-outline\";i:333;s:22:\"um-icon-ios-color-wand\";i:334;s:30:\"um-icon-ios-color-wand-outline\";i:335;s:19:\"um-icon-ios-compose\";i:336;s:27:\"um-icon-ios-compose-outline\";i:337;s:19:\"um-icon-ios-contact\";i:338;s:27:\"um-icon-ios-contact-outline\";i:339;s:16:\"um-icon-ios-copy\";i:340;s:24:\"um-icon-ios-copy-outline\";i:341;s:16:\"um-icon-ios-crop\";i:342;s:23:\"um-icon-ios-crop-strong\";i:343;s:20:\"um-icon-ios-download\";i:344;s:28:\"um-icon-ios-download-outline\";i:345;s:16:\"um-icon-ios-drag\";i:346;s:17:\"um-icon-ios-email\";i:347;s:25:\"um-icon-ios-email-outline\";i:348;s:15:\"um-icon-ios-eye\";i:349;s:23:\"um-icon-ios-eye-outline\";i:350;s:23:\"um-icon-ios-fastforward\";i:351;s:31:\"um-icon-ios-fastforward-outline\";i:352;s:18:\"um-icon-ios-filing\";i:353;s:26:\"um-icon-ios-filing-outline\";i:354;s:16:\"um-icon-ios-film\";i:355;s:24:\"um-icon-ios-film-outline\";i:356;s:16:\"um-icon-ios-flag\";i:357;s:24:\"um-icon-ios-flag-outline\";i:358;s:17:\"um-icon-ios-flame\";i:359;s:25:\"um-icon-ios-flame-outline\";i:360;s:17:\"um-icon-ios-flask\";i:361;s:25:\"um-icon-ios-flask-outline\";i:362;s:18:\"um-icon-ios-flower\";i:363;s:26:\"um-icon-ios-flower-outline\";i:364;s:18:\"um-icon-ios-folder\";i:365;s:26:\"um-icon-ios-folder-outline\";i:366;s:20:\"um-icon-ios-football\";i:367;s:28:\"um-icon-ios-football-outline\";i:368;s:29:\"um-icon-ios-game-controller-a\";i:369;s:37:\"um-icon-ios-game-controller-a-outline\";i:370;s:29:\"um-icon-ios-game-controller-b\";i:371;s:37:\"um-icon-ios-game-controller-b-outline\";i:372;s:16:\"um-icon-ios-gear\";i:373;s:24:\"um-icon-ios-gear-outline\";i:374;s:19:\"um-icon-ios-glasses\";i:375;s:27:\"um-icon-ios-glasses-outline\";i:376;s:21:\"um-icon-ios-grid-view\";i:377;s:29:\"um-icon-ios-grid-view-outline\";i:378;s:17:\"um-icon-ios-heart\";i:379;s:25:\"um-icon-ios-heart-outline\";i:380;s:16:\"um-icon-ios-help\";i:381;s:22:\"um-icon-ios-help-empty\";i:382;s:24:\"um-icon-ios-help-outline\";i:383;s:16:\"um-icon-ios-home\";i:384;s:24:\"um-icon-ios-home-outline\";i:385;s:20:\"um-icon-ios-infinite\";i:386;s:28:\"um-icon-ios-infinite-outline\";i:387;s:23:\"um-icon-ios-information\";i:388;s:29:\"um-icon-ios-information-empty\";i:389;s:31:\"um-icon-ios-information-outline\";i:390;s:25:\"um-icon-ios-ionic-outline\";i:391;s:18:\"um-icon-ios-keypad\";i:392;s:26:\"um-icon-ios-keypad-outline\";i:393;s:21:\"um-icon-ios-lightbulb\";i:394;s:29:\"um-icon-ios-lightbulb-outline\";i:395;s:16:\"um-icon-ios-list\";i:396;s:24:\"um-icon-ios-list-outline\";i:397;s:20:\"um-icon-ios-location\";i:398;s:28:\"um-icon-ios-location-outline\";i:399;s:18:\"um-icon-ios-locked\";i:400;s:26:\"um-icon-ios-locked-outline\";i:401;s:16:\"um-icon-ios-loop\";i:402;s:23:\"um-icon-ios-loop-strong\";i:403;s:19:\"um-icon-ios-medical\";i:404;s:27:\"um-icon-ios-medical-outline\";i:405;s:18:\"um-icon-ios-medkit\";i:406;s:26:\"um-icon-ios-medkit-outline\";i:407;s:15:\"um-icon-ios-mic\";i:408;s:19:\"um-icon-ios-mic-off\";i:409;s:23:\"um-icon-ios-mic-outline\";i:410;s:17:\"um-icon-ios-minus\";i:411;s:23:\"um-icon-ios-minus-empty\";i:412;s:25:\"um-icon-ios-minus-outline\";i:413;s:19:\"um-icon-ios-monitor\";i:414;s:27:\"um-icon-ios-monitor-outline\";i:415;s:16:\"um-icon-ios-moon\";i:416;s:24:\"um-icon-ios-moon-outline\";i:417;s:16:\"um-icon-ios-more\";i:418;s:24:\"um-icon-ios-more-outline\";i:419;s:24:\"um-icon-ios-musical-note\";i:420;s:25:\"um-icon-ios-musical-notes\";i:421;s:20:\"um-icon-ios-navigate\";i:422;s:28:\"um-icon-ios-navigate-outline\";i:423;s:21:\"um-icon-ios-nutrition\";i:424;s:29:\"um-icon-ios-nutrition-outline\";i:425;s:17:\"um-icon-ios-paper\";i:426;s:25:\"um-icon-ios-paper-outline\";i:427;s:22:\"um-icon-ios-paperplane\";i:428;s:30:\"um-icon-ios-paperplane-outline\";i:429;s:23:\"um-icon-ios-partlysunny\";i:430;s:31:\"um-icon-ios-partlysunny-outline\";i:431;s:17:\"um-icon-ios-pause\";i:432;s:25:\"um-icon-ios-pause-outline\";i:433;s:15:\"um-icon-ios-paw\";i:434;s:23:\"um-icon-ios-paw-outline\";i:435;s:18:\"um-icon-ios-people\";i:436;s:26:\"um-icon-ios-people-outline\";i:437;s:18:\"um-icon-ios-person\";i:438;s:26:\"um-icon-ios-person-outline\";i:439;s:21:\"um-icon-ios-personadd\";i:440;s:29:\"um-icon-ios-personadd-outline\";i:441;s:18:\"um-icon-ios-photos\";i:442;s:26:\"um-icon-ios-photos-outline\";i:443;s:15:\"um-icon-ios-pie\";i:444;s:23:\"um-icon-ios-pie-outline\";i:445;s:16:\"um-icon-ios-pint\";i:446;s:24:\"um-icon-ios-pint-outline\";i:447;s:16:\"um-icon-ios-play\";i:448;s:24:\"um-icon-ios-play-outline\";i:449;s:16:\"um-icon-ios-plus\";i:450;s:22:\"um-icon-ios-plus-empty\";i:451;s:24:\"um-icon-ios-plus-outline\";i:452;s:20:\"um-icon-ios-pricetag\";i:453;s:28:\"um-icon-ios-pricetag-outline\";i:454;s:21:\"um-icon-ios-pricetags\";i:455;s:29:\"um-icon-ios-pricetags-outline\";i:456;s:19:\"um-icon-ios-printer\";i:457;s:27:\"um-icon-ios-printer-outline\";i:458;s:17:\"um-icon-ios-pulse\";i:459;s:24:\"um-icon-ios-pulse-strong\";i:460;s:17:\"um-icon-ios-rainy\";i:461;s:25:\"um-icon-ios-rainy-outline\";i:462;s:21:\"um-icon-ios-recording\";i:463;s:29:\"um-icon-ios-recording-outline\";i:464;s:16:\"um-icon-ios-redo\";i:465;s:24:\"um-icon-ios-redo-outline\";i:466;s:19:\"um-icon-ios-refresh\";i:467;s:25:\"um-icon-ios-refresh-empty\";i:468;s:27:\"um-icon-ios-refresh-outline\";i:469;s:18:\"um-icon-ios-reload\";i:470;s:26:\"um-icon-ios-reverse-camera\";i:471;s:34:\"um-icon-ios-reverse-camera-outline\";i:472;s:18:\"um-icon-ios-rewind\";i:473;s:26:\"um-icon-ios-rewind-outline\";i:474;s:16:\"um-icon-ios-rose\";i:475;s:24:\"um-icon-ios-rose-outline\";i:476;s:18:\"um-icon-ios-search\";i:477;s:25:\"um-icon-ios-search-strong\";i:478;s:20:\"um-icon-ios-settings\";i:479;s:27:\"um-icon-ios-settings-strong\";i:480;s:19:\"um-icon-ios-shuffle\";i:481;s:26:\"um-icon-ios-shuffle-strong\";i:482;s:24:\"um-icon-ios-skipbackward\";i:483;s:32:\"um-icon-ios-skipbackward-outline\";i:484;s:23:\"um-icon-ios-skipforward\";i:485;s:31:\"um-icon-ios-skipforward-outline\";i:486;s:17:\"um-icon-ios-snowy\";i:487;s:23:\"um-icon-ios-speedometer\";i:488;s:31:\"um-icon-ios-speedometer-outline\";i:489;s:16:\"um-icon-ios-star\";i:490;s:21:\"um-icon-ios-star-half\";i:491;s:24:\"um-icon-ios-star-outline\";i:492;s:21:\"um-icon-ios-stopwatch\";i:493;s:29:\"um-icon-ios-stopwatch-outline\";i:494;s:17:\"um-icon-ios-sunny\";i:495;s:25:\"um-icon-ios-sunny-outline\";i:496;s:21:\"um-icon-ios-telephone\";i:497;s:29:\"um-icon-ios-telephone-outline\";i:498;s:22:\"um-icon-ios-tennisball\";i:499;s:30:\"um-icon-ios-tennisball-outline\";i:500;s:24:\"um-icon-ios-thunderstorm\";i:501;s:32:\"um-icon-ios-thunderstorm-outline\";i:502;s:16:\"um-icon-ios-time\";i:503;s:24:\"um-icon-ios-time-outline\";i:504;s:17:\"um-icon-ios-timer\";i:505;s:25:\"um-icon-ios-timer-outline\";i:506;s:18:\"um-icon-ios-toggle\";i:507;s:26:\"um-icon-ios-toggle-outline\";i:508;s:17:\"um-icon-ios-trash\";i:509;s:25:\"um-icon-ios-trash-outline\";i:510;s:16:\"um-icon-ios-undo\";i:511;s:24:\"um-icon-ios-undo-outline\";i:512;s:20:\"um-icon-ios-unlocked\";i:513;s:28:\"um-icon-ios-unlocked-outline\";i:514;s:18:\"um-icon-ios-upload\";i:515;s:26:\"um-icon-ios-upload-outline\";i:516;s:20:\"um-icon-ios-videocam\";i:517;s:28:\"um-icon-ios-videocam-outline\";i:518;s:23:\"um-icon-ios-volume-high\";i:519;s:22:\"um-icon-ios-volume-low\";i:520;s:21:\"um-icon-ios-wineglass\";i:521;s:29:\"um-icon-ios-wineglass-outline\";i:522;s:17:\"um-icon-ios-world\";i:523;s:25:\"um-icon-ios-world-outline\";i:524;s:12:\"um-icon-ipad\";i:525;s:14:\"um-icon-iphone\";i:526;s:12:\"um-icon-ipod\";i:527;s:11:\"um-icon-jet\";i:528;s:11:\"um-icon-key\";i:529;s:13:\"um-icon-knife\";i:530;s:14:\"um-icon-laptop\";i:531;s:12:\"um-icon-leaf\";i:532;s:14:\"um-icon-levels\";i:533;s:17:\"um-icon-lightbulb\";i:534;s:12:\"um-icon-link\";i:535;s:14:\"um-icon-load-a\";i:536;s:14:\"um-icon-load-b\";i:537;s:14:\"um-icon-load-c\";i:538;s:14:\"um-icon-load-d\";i:539;s:16:\"um-icon-location\";i:540;s:24:\"um-icon-lock-combination\";i:541;s:14:\"um-icon-locked\";i:542;s:14:\"um-icon-log-in\";i:543;s:15:\"um-icon-log-out\";i:544;s:12:\"um-icon-loop\";i:545;s:14:\"um-icon-magnet\";i:546;s:12:\"um-icon-male\";i:547;s:11:\"um-icon-man\";i:548;s:11:\"um-icon-map\";i:549;s:14:\"um-icon-medkit\";i:550;s:13:\"um-icon-merge\";i:551;s:13:\"um-icon-mic-a\";i:552;s:13:\"um-icon-mic-b\";i:553;s:13:\"um-icon-mic-c\";i:554;s:13:\"um-icon-minus\";i:555;s:21:\"um-icon-minus-circled\";i:556;s:19:\"um-icon-minus-round\";i:557;s:15:\"um-icon-model-s\";i:558;s:15:\"um-icon-monitor\";i:559;s:12:\"um-icon-more\";i:560;s:13:\"um-icon-mouse\";i:561;s:18:\"um-icon-music-note\";i:562;s:15:\"um-icon-navicon\";i:563;s:21:\"um-icon-navicon-round\";i:564;s:16:\"um-icon-navigate\";i:565;s:15:\"um-icon-network\";i:566;s:18:\"um-icon-no-smoking\";i:567;s:15:\"um-icon-nuclear\";i:568;s:14:\"um-icon-outlet\";i:569;s:18:\"um-icon-paintbrush\";i:570;s:19:\"um-icon-paintbucket\";i:571;s:22:\"um-icon-paper-airplane\";i:572;s:17:\"um-icon-paperclip\";i:573;s:13:\"um-icon-pause\";i:574;s:14:\"um-icon-person\";i:575;s:18:\"um-icon-person-add\";i:576;s:22:\"um-icon-person-stalker\";i:577;s:17:\"um-icon-pie-graph\";i:578;s:11:\"um-icon-pin\";i:579;s:16:\"um-icon-pinpoint\";i:580;s:13:\"um-icon-pizza\";i:581;s:13:\"um-icon-plane\";i:582;s:14:\"um-icon-planet\";i:583;s:12:\"um-icon-play\";i:584;s:19:\"um-icon-playstation\";i:585;s:12:\"um-icon-plus\";i:586;s:20:\"um-icon-plus-circled\";i:587;s:18:\"um-icon-plus-round\";i:588;s:14:\"um-icon-podium\";i:589;s:13:\"um-icon-pound\";i:590;s:13:\"um-icon-power\";i:591;s:16:\"um-icon-pricetag\";i:592;s:17:\"um-icon-pricetags\";i:593;s:15:\"um-icon-printer\";i:594;s:20:\"um-icon-pull-request\";i:595;s:18:\"um-icon-qr-scanner\";i:596;s:13:\"um-icon-quote\";i:597;s:19:\"um-icon-radio-waves\";i:598;s:14:\"um-icon-record\";i:599;s:15:\"um-icon-refresh\";i:600;s:13:\"um-icon-reply\";i:601;s:17:\"um-icon-reply-all\";i:602;s:16:\"um-icon-ribbon-a\";i:603;s:16:\"um-icon-ribbon-b\";i:604;s:11:\"um-icon-sad\";i:605;s:19:\"um-icon-sad-outline\";i:606;s:16:\"um-icon-scissors\";i:607;s:14:\"um-icon-search\";i:608;s:16:\"um-icon-settings\";i:609;s:13:\"um-icon-share\";i:610;s:15:\"um-icon-shuffle\";i:611;s:21:\"um-icon-skip-backward\";i:612;s:20:\"um-icon-skip-forward\";i:613;s:22:\"um-icon-social-android\";i:614;s:30:\"um-icon-social-android-outline\";i:615;s:22:\"um-icon-social-angular\";i:616;s:30:\"um-icon-social-angular-outline\";i:617;s:20:\"um-icon-social-apple\";i:618;s:28:\"um-icon-social-apple-outline\";i:619;s:22:\"um-icon-social-bitcoin\";i:620;s:30:\"um-icon-social-bitcoin-outline\";i:621;s:21:\"um-icon-social-buffer\";i:622;s:29:\"um-icon-social-buffer-outline\";i:623;s:21:\"um-icon-social-chrome\";i:624;s:29:\"um-icon-social-chrome-outline\";i:625;s:22:\"um-icon-social-codepen\";i:626;s:30:\"um-icon-social-codepen-outline\";i:627;s:19:\"um-icon-social-css3\";i:628;s:27:\"um-icon-social-css3-outline\";i:629;s:27:\"um-icon-social-designernews\";i:630;s:35:\"um-icon-social-designernews-outline\";i:631;s:23:\"um-icon-social-dribbble\";i:632;s:31:\"um-icon-social-dribbble-outline\";i:633;s:22:\"um-icon-social-dropbox\";i:634;s:30:\"um-icon-social-dropbox-outline\";i:635;s:19:\"um-icon-social-euro\";i:636;s:27:\"um-icon-social-euro-outline\";i:637;s:23:\"um-icon-social-facebook\";i:638;s:31:\"um-icon-social-facebook-outline\";i:639;s:25:\"um-icon-social-foursquare\";i:640;s:33:\"um-icon-social-foursquare-outline\";i:641;s:28:\"um-icon-social-freebsd-devil\";i:642;s:21:\"um-icon-social-github\";i:643;s:29:\"um-icon-social-github-outline\";i:644;s:21:\"um-icon-social-google\";i:645;s:29:\"um-icon-social-google-outline\";i:646;s:25:\"um-icon-social-googleplus\";i:647;s:33:\"um-icon-social-googleplus-outline\";i:648;s:25:\"um-icon-social-hackernews\";i:649;s:33:\"um-icon-social-hackernews-outline\";i:650;s:20:\"um-icon-social-html5\";i:651;s:28:\"um-icon-social-html5-outline\";i:652;s:24:\"um-icon-social-instagram\";i:653;s:32:\"um-icon-social-instagram-outline\";i:654;s:25:\"um-icon-social-javascript\";i:655;s:33:\"um-icon-social-javascript-outline\";i:656;s:23:\"um-icon-social-linkedin\";i:657;s:31:\"um-icon-social-linkedin-outline\";i:658;s:23:\"um-icon-social-markdown\";i:659;s:21:\"um-icon-social-nodejs\";i:660;s:22:\"um-icon-social-octocat\";i:661;s:24:\"um-icon-social-pinterest\";i:662;s:32:\"um-icon-social-pinterest-outline\";i:663;s:21:\"um-icon-social-python\";i:664;s:21:\"um-icon-social-reddit\";i:665;s:29:\"um-icon-social-reddit-outline\";i:666;s:18:\"um-icon-social-rss\";i:667;s:26:\"um-icon-social-rss-outline\";i:668;s:19:\"um-icon-social-sass\";i:669;s:20:\"um-icon-social-skype\";i:670;s:28:\"um-icon-social-skype-outline\";i:671;s:23:\"um-icon-social-snapchat\";i:672;s:31:\"um-icon-social-snapchat-outline\";i:673;s:21:\"um-icon-social-tumblr\";i:674;s:29:\"um-icon-social-tumblr-outline\";i:675;s:18:\"um-icon-social-tux\";i:676;s:21:\"um-icon-social-twitch\";i:677;s:29:\"um-icon-social-twitch-outline\";i:678;s:22:\"um-icon-social-twitter\";i:679;s:30:\"um-icon-social-twitter-outline\";i:680;s:18:\"um-icon-social-usd\";i:681;s:26:\"um-icon-social-usd-outline\";i:682;s:20:\"um-icon-social-vimeo\";i:683;s:28:\"um-icon-social-vimeo-outline\";i:684;s:23:\"um-icon-social-whatsapp\";i:685;s:31:\"um-icon-social-whatsapp-outline\";i:686;s:22:\"um-icon-social-windows\";i:687;s:30:\"um-icon-social-windows-outline\";i:688;s:24:\"um-icon-social-wordpress\";i:689;s:32:\"um-icon-social-wordpress-outline\";i:690;s:20:\"um-icon-social-yahoo\";i:691;s:28:\"um-icon-social-yahoo-outline\";i:692;s:18:\"um-icon-social-yen\";i:693;s:26:\"um-icon-social-yen-outline\";i:694;s:22:\"um-icon-social-youtube\";i:695;s:30:\"um-icon-social-youtube-outline\";i:696;s:16:\"um-icon-soup-can\";i:697;s:24:\"um-icon-soup-can-outline\";i:698;s:20:\"um-icon-speakerphone\";i:699;s:19:\"um-icon-speedometer\";i:700;s:13:\"um-icon-spoon\";i:701;s:12:\"um-icon-star\";i:702;s:18:\"um-icon-stats-bars\";i:703;s:13:\"um-icon-steam\";i:704;s:12:\"um-icon-stop\";i:705;s:19:\"um-icon-thermometer\";i:706;s:18:\"um-icon-thumbsdown\";i:707;s:16:\"um-icon-thumbsup\";i:708;s:14:\"um-icon-toggle\";i:709;s:21:\"um-icon-toggle-filled\";i:710;s:19:\"um-icon-transgender\";i:711;s:15:\"um-icon-trash-a\";i:712;s:15:\"um-icon-trash-b\";i:713;s:14:\"um-icon-trophy\";i:714;s:14:\"um-icon-tshirt\";i:715;s:22:\"um-icon-tshirt-outline\";i:716;s:16:\"um-icon-umbrella\";i:717;s:18:\"um-icon-university\";i:718;s:16:\"um-icon-unlocked\";i:719;s:14:\"um-icon-upload\";i:720;s:11:\"um-icon-usb\";i:721;s:19:\"um-icon-videocamera\";i:722;s:19:\"um-icon-volume-high\";i:723;s:18:\"um-icon-volume-low\";i:724;s:21:\"um-icon-volume-medium\";i:725;s:19:\"um-icon-volume-mute\";i:726;s:12:\"um-icon-wand\";i:727;s:17:\"um-icon-waterdrop\";i:728;s:12:\"um-icon-wifi\";i:729;s:17:\"um-icon-wineglass\";i:730;s:13:\"um-icon-woman\";i:731;s:14:\"um-icon-wrench\";i:732;s:12:\"um-icon-xbox\";i:733;s:15:\"um-faicon-glass\";i:734;s:15:\"um-faicon-music\";i:735;s:16:\"um-faicon-search\";i:736;s:20:\"um-faicon-envelope-o\";i:737;s:15:\"um-faicon-heart\";i:738;s:14:\"um-faicon-star\";i:739;s:16:\"um-faicon-star-o\";i:740;s:14:\"um-faicon-user\";i:741;s:14:\"um-faicon-film\";i:742;s:18:\"um-faicon-th-large\";i:743;s:12:\"um-faicon-th\";i:744;s:17:\"um-faicon-th-list\";i:745;s:15:\"um-faicon-check\";i:746;s:15:\"um-faicon-times\";i:747;s:21:\"um-faicon-search-plus\";i:748;s:22:\"um-faicon-search-minus\";i:749;s:19:\"um-faicon-power-off\";i:750;s:16:\"um-faicon-signal\";i:751;s:13:\"um-faicon-cog\";i:752;s:17:\"um-faicon-trash-o\";i:753;s:14:\"um-faicon-home\";i:754;s:16:\"um-faicon-file-o\";i:755;s:17:\"um-faicon-clock-o\";i:756;s:14:\"um-faicon-road\";i:757;s:18:\"um-faicon-download\";i:758;s:29:\"um-faicon-arrow-circle-o-down\";i:759;s:27:\"um-faicon-arrow-circle-o-up\";i:760;s:15:\"um-faicon-inbox\";i:761;s:23:\"um-faicon-play-circle-o\";i:762;s:16:\"um-faicon-repeat\";i:763;s:17:\"um-faicon-refresh\";i:764;s:18:\"um-faicon-list-alt\";i:765;s:14:\"um-faicon-lock\";i:766;s:14:\"um-faicon-flag\";i:767;s:20:\"um-faicon-headphones\";i:768;s:20:\"um-faicon-volume-off\";i:769;s:21:\"um-faicon-volume-down\";i:770;s:19:\"um-faicon-volume-up\";i:771;s:16:\"um-faicon-qrcode\";i:772;s:17:\"um-faicon-barcode\";i:773;s:13:\"um-faicon-tag\";i:774;s:14:\"um-faicon-tags\";i:775;s:14:\"um-faicon-book\";i:776;s:18:\"um-faicon-bookmark\";i:777;s:15:\"um-faicon-print\";i:778;s:16:\"um-faicon-camera\";i:779;s:14:\"um-faicon-font\";i:780;s:14:\"um-faicon-bold\";i:781;s:16:\"um-faicon-italic\";i:782;s:21:\"um-faicon-text-height\";i:783;s:20:\"um-faicon-text-width\";i:784;s:20:\"um-faicon-align-left\";i:785;s:22:\"um-faicon-align-center\";i:786;s:21:\"um-faicon-align-right\";i:787;s:23:\"um-faicon-align-justify\";i:788;s:14:\"um-faicon-list\";i:789;s:17:\"um-faicon-outdent\";i:790;s:16:\"um-faicon-indent\";i:791;s:22:\"um-faicon-video-camera\";i:792;s:19:\"um-faicon-picture-o\";i:793;s:16:\"um-faicon-pencil\";i:794;s:20:\"um-faicon-map-marker\";i:795;s:16:\"um-faicon-adjust\";i:796;s:14:\"um-faicon-tint\";i:797;s:25:\"um-faicon-pencil-square-o\";i:798;s:24:\"um-faicon-share-square-o\";i:799;s:24:\"um-faicon-check-square-o\";i:800;s:16:\"um-faicon-arrows\";i:801;s:23:\"um-faicon-step-backward\";i:802;s:23:\"um-faicon-fast-backward\";i:803;s:18:\"um-faicon-backward\";i:804;s:14:\"um-faicon-play\";i:805;s:15:\"um-faicon-pause\";i:806;s:14:\"um-faicon-stop\";i:807;s:17:\"um-faicon-forward\";i:808;s:22:\"um-faicon-fast-forward\";i:809;s:22:\"um-faicon-step-forward\";i:810;s:15:\"um-faicon-eject\";i:811;s:22:\"um-faicon-chevron-left\";i:812;s:23:\"um-faicon-chevron-right\";i:813;s:21:\"um-faicon-plus-circle\";i:814;s:22:\"um-faicon-minus-circle\";i:815;s:22:\"um-faicon-times-circle\";i:816;s:22:\"um-faicon-check-circle\";i:817;s:25:\"um-faicon-question-circle\";i:818;s:21:\"um-faicon-info-circle\";i:819;s:20:\"um-faicon-crosshairs\";i:820;s:24:\"um-faicon-times-circle-o\";i:821;s:24:\"um-faicon-check-circle-o\";i:822;s:13:\"um-faicon-ban\";i:823;s:20:\"um-faicon-arrow-left\";i:824;s:21:\"um-faicon-arrow-right\";i:825;s:18:\"um-faicon-arrow-up\";i:826;s:20:\"um-faicon-arrow-down\";i:827;s:15:\"um-faicon-share\";i:828;s:16:\"um-faicon-expand\";i:829;s:18:\"um-faicon-compress\";i:830;s:14:\"um-faicon-plus\";i:831;s:15:\"um-faicon-minus\";i:832;s:18:\"um-faicon-asterisk\";i:833;s:28:\"um-faicon-exclamation-circle\";i:834;s:14:\"um-faicon-gift\";i:835;s:14:\"um-faicon-leaf\";i:836;s:14:\"um-faicon-fire\";i:837;s:13:\"um-faicon-eye\";i:838;s:19:\"um-faicon-eye-slash\";i:839;s:30:\"um-faicon-exclamation-triangle\";i:840;s:15:\"um-faicon-plane\";i:841;s:18:\"um-faicon-calendar\";i:842;s:16:\"um-faicon-random\";i:843;s:17:\"um-faicon-comment\";i:844;s:16:\"um-faicon-magnet\";i:845;s:20:\"um-faicon-chevron-up\";i:846;s:22:\"um-faicon-chevron-down\";i:847;s:17:\"um-faicon-retweet\";i:848;s:23:\"um-faicon-shopping-cart\";i:849;s:16:\"um-faicon-folder\";i:850;s:21:\"um-faicon-folder-open\";i:851;s:18:\"um-faicon-arrows-v\";i:852;s:18:\"um-faicon-arrows-h\";i:853;s:19:\"um-faicon-bar-chart\";i:854;s:24:\"um-faicon-twitter-square\";i:855;s:25:\"um-faicon-facebook-square\";i:856;s:22:\"um-faicon-camera-retro\";i:857;s:13:\"um-faicon-key\";i:858;s:14:\"um-faicon-cogs\";i:859;s:18:\"um-faicon-comments\";i:860;s:21:\"um-faicon-thumbs-o-up\";i:861;s:23:\"um-faicon-thumbs-o-down\";i:862;s:19:\"um-faicon-star-half\";i:863;s:17:\"um-faicon-heart-o\";i:864;s:18:\"um-faicon-sign-out\";i:865;s:25:\"um-faicon-linkedin-square\";i:866;s:20:\"um-faicon-thumb-tack\";i:867;s:23:\"um-faicon-external-link\";i:868;s:17:\"um-faicon-sign-in\";i:869;s:16:\"um-faicon-trophy\";i:870;s:23:\"um-faicon-github-square\";i:871;s:16:\"um-faicon-upload\";i:872;s:17:\"um-faicon-lemon-o\";i:873;s:15:\"um-faicon-phone\";i:874;s:18:\"um-faicon-square-o\";i:875;s:20:\"um-faicon-bookmark-o\";i:876;s:22:\"um-faicon-phone-square\";i:877;s:17:\"um-faicon-twitter\";i:878;s:18:\"um-faicon-facebook\";i:879;s:16:\"um-faicon-github\";i:880;s:16:\"um-faicon-unlock\";i:881;s:21:\"um-faicon-credit-card\";i:882;s:13:\"um-faicon-rss\";i:883;s:15:\"um-faicon-hdd-o\";i:884;s:18:\"um-faicon-bullhorn\";i:885;s:14:\"um-faicon-bell\";i:886;s:21:\"um-faicon-certificate\";i:887;s:22:\"um-faicon-hand-o-right\";i:888;s:21:\"um-faicon-hand-o-left\";i:889;s:19:\"um-faicon-hand-o-up\";i:890;s:21:\"um-faicon-hand-o-down\";i:891;s:27:\"um-faicon-arrow-circle-left\";i:892;s:28:\"um-faicon-arrow-circle-right\";i:893;s:25:\"um-faicon-arrow-circle-up\";i:894;s:27:\"um-faicon-arrow-circle-down\";i:895;s:15:\"um-faicon-globe\";i:896;s:16:\"um-faicon-wrench\";i:897;s:15:\"um-faicon-tasks\";i:898;s:16:\"um-faicon-filter\";i:899;s:19:\"um-faicon-briefcase\";i:900;s:20:\"um-faicon-arrows-alt\";i:901;s:15:\"um-faicon-users\";i:902;s:14:\"um-faicon-link\";i:903;s:15:\"um-faicon-cloud\";i:904;s:15:\"um-faicon-flask\";i:905;s:18:\"um-faicon-scissors\";i:906;s:17:\"um-faicon-files-o\";i:907;s:19:\"um-faicon-paperclip\";i:908;s:18:\"um-faicon-floppy-o\";i:909;s:16:\"um-faicon-square\";i:910;s:14:\"um-faicon-bars\";i:911;s:17:\"um-faicon-list-ul\";i:912;s:17:\"um-faicon-list-ol\";i:913;s:23:\"um-faicon-strikethrough\";i:914;s:19:\"um-faicon-underline\";i:915;s:15:\"um-faicon-table\";i:916;s:15:\"um-faicon-magic\";i:917;s:15:\"um-faicon-truck\";i:918;s:19:\"um-faicon-pinterest\";i:919;s:26:\"um-faicon-pinterest-square\";i:920;s:28:\"um-faicon-google-plus-square\";i:921;s:21:\"um-faicon-google-plus\";i:922;s:15:\"um-faicon-money\";i:923;s:20:\"um-faicon-caret-down\";i:924;s:18:\"um-faicon-caret-up\";i:925;s:20:\"um-faicon-caret-left\";i:926;s:21:\"um-faicon-caret-right\";i:927;s:17:\"um-faicon-columns\";i:928;s:14:\"um-faicon-sort\";i:929;s:19:\"um-faicon-sort-desc\";i:930;s:18:\"um-faicon-sort-asc\";i:931;s:18:\"um-faicon-envelope\";i:932;s:18:\"um-faicon-linkedin\";i:933;s:14:\"um-faicon-undo\";i:934;s:15:\"um-faicon-gavel\";i:935;s:20:\"um-faicon-tachometer\";i:936;s:19:\"um-faicon-comment-o\";i:937;s:20:\"um-faicon-comments-o\";i:938;s:14:\"um-faicon-bolt\";i:939;s:17:\"um-faicon-sitemap\";i:940;s:18:\"um-faicon-umbrella\";i:941;s:19:\"um-faicon-clipboard\";i:942;s:21:\"um-faicon-lightbulb-o\";i:943;s:18:\"um-faicon-exchange\";i:944;s:24:\"um-faicon-cloud-download\";i:945;s:22:\"um-faicon-cloud-upload\";i:946;s:17:\"um-faicon-user-md\";i:947;s:21:\"um-faicon-stethoscope\";i:948;s:18:\"um-faicon-suitcase\";i:949;s:16:\"um-faicon-bell-o\";i:950;s:16:\"um-faicon-coffee\";i:951;s:17:\"um-faicon-cutlery\";i:952;s:21:\"um-faicon-file-text-o\";i:953;s:20:\"um-faicon-building-o\";i:954;s:20:\"um-faicon-hospital-o\";i:955;s:19:\"um-faicon-ambulance\";i:956;s:16:\"um-faicon-medkit\";i:957;s:21:\"um-faicon-fighter-jet\";i:958;s:14:\"um-faicon-beer\";i:959;s:18:\"um-faicon-h-square\";i:960;s:21:\"um-faicon-plus-square\";i:961;s:27:\"um-faicon-angle-double-left\";i:962;s:28:\"um-faicon-angle-double-right\";i:963;s:25:\"um-faicon-angle-double-up\";i:964;s:27:\"um-faicon-angle-double-down\";i:965;s:20:\"um-faicon-angle-left\";i:966;s:21:\"um-faicon-angle-right\";i:967;s:18:\"um-faicon-angle-up\";i:968;s:20:\"um-faicon-angle-down\";i:969;s:17:\"um-faicon-desktop\";i:970;s:16:\"um-faicon-laptop\";i:971;s:16:\"um-faicon-tablet\";i:972;s:16:\"um-faicon-mobile\";i:973;s:18:\"um-faicon-circle-o\";i:974;s:20:\"um-faicon-quote-left\";i:975;s:21:\"um-faicon-quote-right\";i:976;s:17:\"um-faicon-spinner\";i:977;s:14:\"um-faicon-spin\";i:978;s:16:\"um-faicon-circle\";i:979;s:15:\"um-faicon-reply\";i:980;s:20:\"um-faicon-github-alt\";i:981;s:18:\"um-faicon-folder-o\";i:982;s:23:\"um-faicon-folder-open-o\";i:983;s:17:\"um-faicon-smile-o\";i:984;s:17:\"um-faicon-frown-o\";i:985;s:15:\"um-faicon-meh-o\";i:986;s:17:\"um-faicon-gamepad\";i:987;s:20:\"um-faicon-keyboard-o\";i:988;s:16:\"um-faicon-flag-o\";i:989;s:24:\"um-faicon-flag-checkered\";i:990;s:18:\"um-faicon-terminal\";i:991;s:14:\"um-faicon-code\";i:992;s:19:\"um-faicon-reply-all\";i:993;s:21:\"um-faicon-star-half-o\";i:994;s:24:\"um-faicon-location-arrow\";i:995;s:14:\"um-faicon-crop\";i:996;s:19:\"um-faicon-code-fork\";i:997;s:22:\"um-faicon-chain-broken\";i:998;s:18:\"um-faicon-question\";i:999;s:14:\"um-faicon-info\";i:1000;s:21:\"um-faicon-exclamation\";i:1001;s:21:\"um-faicon-superscript\";i:1002;s:19:\"um-faicon-subscript\";i:1003;s:16:\"um-faicon-eraser\";i:1004;s:22:\"um-faicon-puzzle-piece\";i:1005;s:20:\"um-faicon-microphone\";i:1006;s:26:\"um-faicon-microphone-slash\";i:1007;s:16:\"um-faicon-shield\";i:1008;s:20:\"um-faicon-calendar-o\";i:1009;s:27:\"um-faicon-fire-extinguisher\";i:1010;s:16:\"um-faicon-rocket\";i:1011;s:16:\"um-faicon-maxcdn\";i:1012;s:29:\"um-faicon-chevron-circle-left\";i:1013;s:30:\"um-faicon-chevron-circle-right\";i:1014;s:27:\"um-faicon-chevron-circle-up\";i:1015;s:29:\"um-faicon-chevron-circle-down\";i:1016;s:15:\"um-faicon-html5\";i:1017;s:14:\"um-faicon-css3\";i:1018;s:16:\"um-faicon-anchor\";i:1019;s:20:\"um-faicon-unlock-alt\";i:1020;s:18:\"um-faicon-bullseye\";i:1021;s:20:\"um-faicon-ellipsis-h\";i:1022;s:20:\"um-faicon-ellipsis-v\";i:1023;s:20:\"um-faicon-rss-square\";i:1024;s:21:\"um-faicon-play-circle\";i:1025;s:16:\"um-faicon-ticket\";i:1026;s:22:\"um-faicon-minus-square\";i:1027;s:24:\"um-faicon-minus-square-o\";i:1028;s:18:\"um-faicon-level-up\";i:1029;s:20:\"um-faicon-level-down\";i:1030;s:22:\"um-faicon-check-square\";i:1031;s:23:\"um-faicon-pencil-square\";i:1032;s:30:\"um-faicon-external-link-square\";i:1033;s:22:\"um-faicon-share-square\";i:1034;s:17:\"um-faicon-compass\";i:1035;s:29:\"um-faicon-caret-square-o-down\";i:1036;s:27:\"um-faicon-caret-square-o-up\";i:1037;s:30:\"um-faicon-caret-square-o-right\";i:1038;s:13:\"um-faicon-eur\";i:1039;s:13:\"um-faicon-gbp\";i:1040;s:13:\"um-faicon-usd\";i:1041;s:13:\"um-faicon-inr\";i:1042;s:13:\"um-faicon-jpy\";i:1043;s:13:\"um-faicon-rub\";i:1044;s:13:\"um-faicon-krw\";i:1045;s:13:\"um-faicon-btc\";i:1046;s:14:\"um-faicon-file\";i:1047;s:19:\"um-faicon-file-text\";i:1048;s:24:\"um-faicon-sort-alpha-asc\";i:1049;s:25:\"um-faicon-sort-alpha-desc\";i:1050;s:25:\"um-faicon-sort-amount-asc\";i:1051;s:26:\"um-faicon-sort-amount-desc\";i:1052;s:26:\"um-faicon-sort-numeric-asc\";i:1053;s:27:\"um-faicon-sort-numeric-desc\";i:1054;s:19:\"um-faicon-thumbs-up\";i:1055;s:21:\"um-faicon-thumbs-down\";i:1056;s:24:\"um-faicon-youtube-square\";i:1057;s:17:\"um-faicon-youtube\";i:1058;s:14:\"um-faicon-xing\";i:1059;s:21:\"um-faicon-xing-square\";i:1060;s:22:\"um-faicon-youtube-play\";i:1061;s:17:\"um-faicon-dropbox\";i:1062;s:24:\"um-faicon-stack-overflow\";i:1063;s:19:\"um-faicon-instagram\";i:1064;s:16:\"um-faicon-flickr\";i:1065;s:13:\"um-faicon-adn\";i:1066;s:19:\"um-faicon-bitbucket\";i:1067;s:26:\"um-faicon-bitbucket-square\";i:1068;s:16:\"um-faicon-tumblr\";i:1069;s:23:\"um-faicon-tumblr-square\";i:1070;s:25:\"um-faicon-long-arrow-down\";i:1071;s:23:\"um-faicon-long-arrow-up\";i:1072;s:25:\"um-faicon-long-arrow-left\";i:1073;s:26:\"um-faicon-long-arrow-right\";i:1074;s:15:\"um-faicon-apple\";i:1075;s:17:\"um-faicon-windows\";i:1076;s:17:\"um-faicon-android\";i:1077;s:15:\"um-faicon-linux\";i:1078;s:18:\"um-faicon-dribbble\";i:1079;s:15:\"um-faicon-skype\";i:1080;s:20:\"um-faicon-foursquare\";i:1081;s:16:\"um-faicon-trello\";i:1082;s:16:\"um-faicon-female\";i:1083;s:14:\"um-faicon-male\";i:1084;s:16:\"um-faicon-gittip\";i:1085;s:15:\"um-faicon-sun-o\";i:1086;s:16:\"um-faicon-moon-o\";i:1087;s:17:\"um-faicon-archive\";i:1088;s:13:\"um-faicon-bug\";i:1089;s:12:\"um-faicon-vk\";i:1090;s:15:\"um-faicon-weibo\";i:1091;s:16:\"um-faicon-renren\";i:1092;s:19:\"um-faicon-pagelines\";i:1093;s:24:\"um-faicon-stack-exchange\";i:1094;s:30:\"um-faicon-arrow-circle-o-right\";i:1095;s:29:\"um-faicon-arrow-circle-o-left\";i:1096;s:29:\"um-faicon-caret-square-o-left\";i:1097;s:22:\"um-faicon-dot-circle-o\";i:1098;s:20:\"um-faicon-wheelchair\";i:1099;s:22:\"um-faicon-vimeo-square\";i:1100;s:13:\"um-faicon-try\";i:1101;s:23:\"um-faicon-plus-square-o\";i:1102;s:23:\"um-faicon-space-shuttle\";i:1103;s:15:\"um-faicon-slack\";i:1104;s:25:\"um-faicon-envelope-square\";i:1105;s:19:\"um-faicon-wordpress\";i:1106;s:16:\"um-faicon-openid\";i:1107;s:20:\"um-faicon-university\";i:1108;s:24:\"um-faicon-graduation-cap\";i:1109;s:15:\"um-faicon-yahoo\";i:1110;s:16:\"um-faicon-google\";i:1111;s:16:\"um-faicon-reddit\";i:1112;s:23:\"um-faicon-reddit-square\";i:1113;s:28:\"um-faicon-stumbleupon-circle\";i:1114;s:21:\"um-faicon-stumbleupon\";i:1115;s:19:\"um-faicon-delicious\";i:1116;s:14:\"um-faicon-digg\";i:1117;s:20:\"um-faicon-pied-piper\";i:1118;s:24:\"um-faicon-pied-piper-alt\";i:1119;s:16:\"um-faicon-drupal\";i:1120;s:16:\"um-faicon-joomla\";i:1121;s:18:\"um-faicon-language\";i:1122;s:13:\"um-faicon-fax\";i:1123;s:18:\"um-faicon-building\";i:1124;s:15:\"um-faicon-child\";i:1125;s:13:\"um-faicon-paw\";i:1126;s:15:\"um-faicon-spoon\";i:1127;s:14:\"um-faicon-cube\";i:1128;s:15:\"um-faicon-cubes\";i:1129;s:17:\"um-faicon-behance\";i:1130;s:24:\"um-faicon-behance-square\";i:1131;s:15:\"um-faicon-steam\";i:1132;s:22:\"um-faicon-steam-square\";i:1133;s:17:\"um-faicon-recycle\";i:1134;s:13:\"um-faicon-car\";i:1135;s:14:\"um-faicon-taxi\";i:1136;s:14:\"um-faicon-tree\";i:1137;s:17:\"um-faicon-spotify\";i:1138;s:20:\"um-faicon-deviantart\";i:1139;s:20:\"um-faicon-soundcloud\";i:1140;s:18:\"um-faicon-database\";i:1141;s:20:\"um-faicon-file-pdf-o\";i:1142;s:21:\"um-faicon-file-word-o\";i:1143;s:22:\"um-faicon-file-excel-o\";i:1144;s:27:\"um-faicon-file-powerpoint-o\";i:1145;s:22:\"um-faicon-file-image-o\";i:1146;s:24:\"um-faicon-file-archive-o\";i:1147;s:22:\"um-faicon-file-audio-o\";i:1148;s:22:\"um-faicon-file-video-o\";i:1149;s:21:\"um-faicon-file-code-o\";i:1150;s:14:\"um-faicon-vine\";i:1151;s:17:\"um-faicon-codepen\";i:1152;s:18:\"um-faicon-jsfiddle\";i:1153;s:19:\"um-faicon-life-ring\";i:1154;s:24:\"um-faicon-circle-o-notch\";i:1155;s:15:\"um-faicon-rebel\";i:1156;s:16:\"um-faicon-empire\";i:1157;s:20:\"um-faicon-git-square\";i:1158;s:13:\"um-faicon-git\";i:1159;s:21:\"um-faicon-hacker-news\";i:1160;s:23:\"um-faicon-tencent-weibo\";i:1161;s:12:\"um-faicon-qq\";i:1162;s:16:\"um-faicon-weixin\";i:1163;s:21:\"um-faicon-paper-plane\";i:1164;s:23:\"um-faicon-paper-plane-o\";i:1165;s:17:\"um-faicon-history\";i:1166;s:21:\"um-faicon-circle-thin\";i:1167;s:16:\"um-faicon-header\";i:1168;s:19:\"um-faicon-paragraph\";i:1169;s:17:\"um-faicon-sliders\";i:1170;s:19:\"um-faicon-share-alt\";i:1171;s:26:\"um-faicon-share-alt-square\";i:1172;s:14:\"um-faicon-bomb\";i:1173;s:18:\"um-faicon-futbol-o\";i:1174;s:13:\"um-faicon-tty\";i:1175;s:20:\"um-faicon-binoculars\";i:1176;s:14:\"um-faicon-plug\";i:1177;s:20:\"um-faicon-slideshare\";i:1178;s:16:\"um-faicon-twitch\";i:1179;s:14:\"um-faicon-yelp\";i:1180;s:21:\"um-faicon-newspaper-o\";i:1181;s:14:\"um-faicon-wifi\";i:1182;s:20:\"um-faicon-calculator\";i:1183;s:16:\"um-faicon-paypal\";i:1184;s:23:\"um-faicon-google-wallet\";i:1185;s:17:\"um-faicon-cc-visa\";i:1186;s:23:\"um-faicon-cc-mastercard\";i:1187;s:21:\"um-faicon-cc-discover\";i:1188;s:17:\"um-faicon-cc-amex\";i:1189;s:19:\"um-faicon-cc-paypal\";i:1190;s:19:\"um-faicon-cc-stripe\";i:1191;s:20:\"um-faicon-bell-slash\";i:1192;s:22:\"um-faicon-bell-slash-o\";i:1193;s:15:\"um-faicon-trash\";i:1194;s:19:\"um-faicon-copyright\";i:1195;s:12:\"um-faicon-at\";i:1196;s:20:\"um-faicon-eyedropper\";i:1197;s:21:\"um-faicon-paint-brush\";i:1198;s:23:\"um-faicon-birthday-cake\";i:1199;s:20:\"um-faicon-area-chart\";i:1200;s:19:\"um-faicon-pie-chart\";i:1201;s:20:\"um-faicon-line-chart\";i:1202;s:16:\"um-faicon-lastfm\";i:1203;s:23:\"um-faicon-lastfm-square\";i:1204;s:20:\"um-faicon-toggle-off\";i:1205;s:19:\"um-faicon-toggle-on\";i:1206;s:17:\"um-faicon-bicycle\";i:1207;s:13:\"um-faicon-bus\";i:1208;s:17:\"um-faicon-ioxhost\";i:1209;s:19:\"um-faicon-angellist\";i:1210;s:12:\"um-faicon-cc\";i:1211;s:13:\"um-faicon-ils\";i:1212;s:18:\"um-faicon-meanpath\";i:1213;s:14:\"um-faicon-spin\";i:1214;s:14:\"um-faicon-spin\";i:1215;s:14:\"um-faicon-spin\";i:1216;s:14:\"um-faicon-spin\";i:1217;s:14:\"um-faicon-spin\";}','yes'),(317,'um_hidden_admin_notices','a:2:{i:0;s:13:\"opt_in_notice\";i:1;s:14:\"reviews_notice\";}','yes'),(319,'_site_transient_sydney-welcome','forever','no'),(321,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(518,'theme_mods_catch-fullscreen','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:14:\"social-primary\";i:5;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1543962676;s:4:\"data\";a:5:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";a:1:{i:0;s:6:\"text-2\";}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}}}}','yes'),(370,'um_cache_userdata_2','a:57:{s:2:\"ID\";i:2;s:10:\"user_login\";s:14:\"judetallis8020\";s:9:\"user_pass\";s:34:\"$P$BWw8GTTRtQRVW8Ew1pJL9P8zIWewlG1\";s:13:\"user_nicename\";s:14:\"judetallis8020\";s:10:\"user_email\";s:26:\"judetallis@forum.freog.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2018-11-29 14:05:47\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:11:\"Jude Tallis\";s:10:\"subscriber\";b:1;s:8:\"wp_roles\";s:10:\"subscriber\";s:4:\"read\";b:1;s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;s:8:\"nickname\";s:14:\"judetallis8020\";s:10:\"first_name\";s:4:\"Jude\";s:9:\"last_name\";s:6:\"Tallis\";s:11:\"description\";s:0:\"\";s:12:\"rich_editing\";s:4:\"true\";s:19:\"syntax_highlighting\";s:4:\"true\";s:17:\"comment_shortcuts\";s:5:\"false\";s:11:\"admin_color\";s:5:\"fresh\";s:7:\"use_ssl\";s:1:\"0\";s:20:\"show_admin_bar_front\";s:4:\"true\";s:6:\"locale\";s:0:\"\";s:17:\"wpyt_capabilities\";s:28:\"a:1:{s:10:\"subscriber\";b:1;}\";s:15:\"wpyt_user_level\";s:1:\"0\";s:25:\"synced_gravatar_hashed_id\";s:32:\"17f01db6c8ce4a36f8957964036f4723\";s:9:\"submitted\";s:322:\"a:9:{s:7:\"form_id\";s:3:\"209\";s:9:\"timestamp\";s:10:\"1543500341\";s:7:\"request\";s:0:\"\";s:8:\"_wpnonce\";s:10:\"b5840fc901\";s:16:\"_wp_http_referer\";s:22:\"/development/register/\";s:10:\"user_login\";s:14:\"judetallis8020\";s:10:\"first_name\";s:4:\"Jude\";s:9:\"last_name\";s:6:\"Tallis\";s:10:\"user_email\";s:26:\"judetallis@forum.freog.com\";}\";s:7:\"form_id\";s:3:\"209\";s:9:\"timestamp\";s:10:\"1543500341\";s:7:\"request\";s:0:\"\";s:8:\"_wpnonce\";s:10:\"b5840fc901\";s:16:\"_wp_http_referer\";s:22:\"/development/register/\";s:35:\"um_user_profile_url_slug_user_login\";s:14:\"judetallis8020\";s:9:\"full_name\";s:14:\"judetallis8020\";s:14:\"account_status\";s:8:\"approved\";s:14:\"_um_last_login\";s:10:\"1543500558\";s:24:\"um_account_secure_fields\";s:6:\"a:0:{}\";s:19:\"account_status_name\";s:8:\"Approved\";s:4:\"role\";s:10:\"subscriber\";s:5:\"roles\";a:1:{i:0;s:10:\"subscriber\";}s:18:\"can_access_wpadmin\";i:0;s:20:\"can_not_see_adminbar\";i:1;s:17:\"can_edit_everyone\";i:0;s:19:\"can_delete_everyone\";i:0;s:16:\"can_edit_profile\";i:1;s:18:\"can_delete_profile\";i:1;s:11:\"after_login\";s:16:\"redirect_profile\";s:12:\"after_logout\";s:13:\"redirect_home\";s:16:\"default_homepage\";i:1;s:12:\"can_view_all\";i:1;s:24:\"can_make_private_profile\";i:0;s:26:\"can_access_private_profile\";i:0;s:6:\"status\";s:8:\"approved\";s:16:\"auto_approve_act\";s:16:\"redirect_profile\";s:11:\"super_admin\";i:0;}','no'),(586,'themeisle_companion_install','1543962857','yes'),(931,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.0.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.0.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.0.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.0.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.0.2\";s:7:\"version\";s:5:\"5.0.2\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.0\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1547052724;s:15:\"version_checked\";s:5:\"5.0.2\";s:12:\"translations\";a:0:{}}','no'),(591,'widget_eaw-recent-posts-plus','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(592,'widget_eaw-recent-posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(593,'hestia_sync_needed','','yes'),(1082,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1547052725;s:7:\"checked\";a:6:{s:8:\"onepress\";s:5:\"2.2.0\";s:6:\"sydney\";s:4:\"1.52\";s:13:\"twentyfifteen\";s:3:\"2.0\";s:14:\"twentynineteen\";s:3:\"1.1\";s:15:\"twentyseventeen\";s:3:\"1.7\";s:13:\"twentysixteen\";s:3:\"1.5\";}s:8:\"response\";a:5:{s:8:\"onepress\";a:4:{s:5:\"theme\";s:8:\"onepress\";s:11:\"new_version\";s:5:\"2.2.1\";s:3:\"url\";s:38:\"https://wordpress.org/themes/onepress/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/theme/onepress.2.2.1.zip\";}s:6:\"sydney\";a:4:{s:5:\"theme\";s:6:\"sydney\";s:11:\"new_version\";s:4:\"1.53\";s:3:\"url\";s:36:\"https://wordpress.org/themes/sydney/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/sydney.1.53.zip\";}s:13:\"twentyfifteen\";a:4:{s:5:\"theme\";s:13:\"twentyfifteen\";s:11:\"new_version\";s:3:\"2.2\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentyfifteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentyfifteen.2.2.zip\";}s:15:\"twentyseventeen\";a:4:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"1.9\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.1.9.zip\";}s:13:\"twentysixteen\";a:4:{s:5:\"theme\";s:13:\"twentysixteen\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentysixteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentysixteen.1.7.zip\";}}s:12:\"translations\";a:0:{}}','no'),(1083,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1547052725;s:7:\"checked\";a:8:{s:19:\"akismet/akismet.php\";s:3:\"4.1\";s:23:\"elementor/elementor.php\";s:5:\"2.3.8\";s:53:\"famethemes-demo-importer/famethemes-demo-importer.php\";s:5:\"1.1.2\";s:19:\"jetpack/jetpack.php\";s:5:\"6.8.1\";s:43:\"themeisle-companion/themeisle-companion.php\";s:5:\"2.7.3\";s:33:\"sydney-toolbox/sydney-toolbox.php\";s:4:\"1.05\";s:35:\"ultimate-member/ultimate-member.php\";s:6:\"2.0.35\";s:24:\"wpforms-lite/wpforms.php\";s:7:\"1.5.0.4\";}s:8:\"response\";a:1:{s:35:\"ultimate-member/ultimate-member.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"w.org/plugins/ultimate-member\";s:4:\"slug\";s:15:\"ultimate-member\";s:6:\"plugin\";s:35:\"ultimate-member/ultimate-member.php\";s:11:\"new_version\";s:6:\"2.0.37\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/ultimate-member/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/ultimate-member.2.0.37.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/ultimate-member/assets/icon-256x256.png?rev=1667029\";s:2:\"1x\";s:68:\"https://ps.w.org/ultimate-member/assets/icon-128x128.png?rev=1667029\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/ultimate-member/assets/banner-1544x500.png?rev=1667029\";s:2:\"1x\";s:70:\"https://ps.w.org/ultimate-member/assets/banner-772x250.png?rev=1667029\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.0.2\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:7:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":9:{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:3:\"4.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.4.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"2.3.8\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.2.3.8.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}}s:53:\"famethemes-demo-importer/famethemes-demo-importer.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:38:\"w.org/plugins/famethemes-demo-importer\";s:4:\"slug\";s:24:\"famethemes-demo-importer\";s:6:\"plugin\";s:53:\"famethemes-demo-importer/famethemes-demo-importer.php\";s:11:\"new_version\";s:5:\"1.1.2\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/famethemes-demo-importer/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/famethemes-demo-importer.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:68:\"https://s.w.org/plugins/geopattern-icon/famethemes-demo-importer.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:21:\"w.org/plugins/jetpack\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:5:\"6.8.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/jetpack.6.8.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:60:\"https://ps.w.org/jetpack/assets/icon-256x256.png?rev=1791404\";s:2:\"1x\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=1791404\";s:3:\"svg\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=1791404\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=1791404\";s:2:\"1x\";s:62:\"https://ps.w.org/jetpack/assets/banner-772x250.png?rev=1791404\";}s:11:\"banners_rtl\";a:0:{}}s:43:\"themeisle-companion/themeisle-companion.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:33:\"w.org/plugins/themeisle-companion\";s:4:\"slug\";s:19:\"themeisle-companion\";s:6:\"plugin\";s:43:\"themeisle-companion/themeisle-companion.php\";s:11:\"new_version\";s:5:\"2.7.3\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/themeisle-companion/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/themeisle-companion.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/themeisle-companion/assets/icon-128x128.png?rev=1807829\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:74:\"https://ps.w.org/themeisle-companion/assets/banner-772x250.png?rev=1832347\";}s:11:\"banners_rtl\";a:0:{}}s:33:\"sydney-toolbox/sydney-toolbox.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/sydney-toolbox\";s:4:\"slug\";s:14:\"sydney-toolbox\";s:6:\"plugin\";s:33:\"sydney-toolbox/sydney-toolbox.php\";s:11:\"new_version\";s:4:\"1.05\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/sydney-toolbox/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/sydney-toolbox.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:58:\"https://s.w.org/plugins/geopattern-icon/sydney-toolbox.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}s:24:\"wpforms-lite/wpforms.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:26:\"w.org/plugins/wpforms-lite\";s:4:\"slug\";s:12:\"wpforms-lite\";s:6:\"plugin\";s:24:\"wpforms-lite/wpforms.php\";s:11:\"new_version\";s:7:\"1.5.0.4\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wpforms-lite/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/wpforms-lite.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wpforms-lite/assets/icon-256x256.png?rev=1371112\";s:2:\"1x\";s:65:\"https://ps.w.org/wpforms-lite/assets/icon-128x128.png?rev=1371112\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wpforms-lite/assets/banner-1544x500.png?rev=1371112\";s:2:\"1x\";s:67:\"https://ps.w.org/wpforms-lite/assets/banner-772x250.png?rev=1371112\";}s:11:\"banners_rtl\";a:0:{}}}}','no'),(949,'_elementor_global_css','a:5:{s:4:\"time\";i:1546521133;s:5:\"fonts\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;b:0;s:3:\"css\";s:0:\"\";}','yes'),(946,'_transient_timeout_jetpack_file_data_6.8.1','1549026706','no'),(933,'can_compress_scripts','1','no'),(970,'themeisle_companion_logger_flag','no','yes'),(1185,'_transient_timeout_feed_mod_2b16a4f9a2b7110ce37a7c1a0e3bbb94','1547106415','no'),(1186,'_transient_feed_mod_2b16a4f9a2b7110ce37a7c1a0e3bbb94','1547063215','no'),(1189,'um_existing_rows_210','a:1:{i:0;s:9:\"_um_row_1\";}','yes'),(1190,'um_form_rowdata_210','a:1:{s:9:\"_um_row_1\";a:5:{s:4:\"type\";s:3:\"row\";s:2:\"id\";s:9:\"_um_row_1\";s:8:\"sub_rows\";s:1:\"1\";s:4:\"cols\";s:1:\"1\";s:6:\"origin\";s:9:\"_um_row_1\";}}','yes');
/*!40000 ALTER TABLE `wpyt_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpyt_postmeta`
--

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

--
-- Dumping data for table `wpyt_postmeta`
--

LOCK TABLES `wpyt_postmeta` WRITE;
/*!40000 ALTER TABLE `wpyt_postmeta` DISABLE KEYS */;
INSERT INTO `wpyt_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(3,5,'_wp_attached_file','2018/11/oie_12233124sFOrgQgu.jpg'),(4,5,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:32:\"2018/11/oie_12233124sFOrgQgu.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"oie_12233124sFOrgQgu-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"oie_12233124sFOrgQgu-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"oie_12233124sFOrgQgu-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"oie_12233124sFOrgQgu-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"business-plan-slider\";a:4:{s:4:\"file\";s:33:\"oie_12233124sFOrgQgu-1351x600.jpg\";s:5:\"width\";i:1351;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"business-plan-service\";a:4:{s:4:\"file\";s:30:\"oie_12233124sFOrgQgu-74x53.jpg\";s:5:\"width\";i:74;s:6:\"height\";i:53;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"business-plan-blog\";a:4:{s:4:\"file\";s:32:\"oie_12233124sFOrgQgu-565x349.jpg\";s:5:\"width\";i:565;s:6:\"height\";i:349;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"business-plan-work\";a:4:{s:4:\"file\";s:32:\"oie_12233124sFOrgQgu-360x252.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"business-plan-archive\";a:4:{s:4:\"file\";s:32:\"oie_12233124sFOrgQgu-295x245.jpg\";s:5:\"width\";i:295;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5,6,'_wp_attached_file','2018/11/cropped-oie_12233124sFOrgQgu.jpg'),(6,6,'_wp_attachment_context','custom-header'),(7,6,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1351;s:6:\"height\";i:416;s:4:\"file\";s:40:\"2018/11/cropped-oie_12233124sFOrgQgu.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"cropped-oie_12233124sFOrgQgu-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"cropped-oie_12233124sFOrgQgu-300x92.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:92;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"cropped-oie_12233124sFOrgQgu-768x236.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"cropped-oie_12233124sFOrgQgu-1024x315.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:315;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"business-plan-slider\";a:4:{s:4:\"file\";s:41:\"cropped-oie_12233124sFOrgQgu-1351x416.jpg\";s:5:\"width\";i:1351;s:6:\"height\";i:416;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"business-plan-service\";a:4:{s:4:\"file\";s:38:\"cropped-oie_12233124sFOrgQgu-74x53.jpg\";s:5:\"width\";i:74;s:6:\"height\";i:53;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"business-plan-blog\";a:4:{s:4:\"file\";s:40:\"cropped-oie_12233124sFOrgQgu-565x349.jpg\";s:5:\"width\";i:565;s:6:\"height\";i:349;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"business-plan-work\";a:4:{s:4:\"file\";s:40:\"cropped-oie_12233124sFOrgQgu-360x252.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:252;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"business-plan-archive\";a:4:{s:4:\"file\";s:40:\"cropped-oie_12233124sFOrgQgu-295x245.jpg\";s:5:\"width\";i:295;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:17:\"attachment_parent\";i:5;}'),(8,6,'_wp_attachment_custom_header_last_used_business-plan','1543457747'),(9,6,'_wp_attachment_is_custom_header','business-plan'),(12,8,'_wp_attached_file','2018/11/oie_QwA4hmAdSI8Z.png'),(13,8,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:404;s:6:\"height\";i:171;s:4:\"file\";s:28:\"2018/11/oie_QwA4hmAdSI8Z.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"oie_QwA4hmAdSI8Z-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"oie_QwA4hmAdSI8Z-300x127.png\";s:5:\"width\";i:300;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14,9,'_wp_attached_file','2018/11/cropped-oie_QwA4hmAdSI8Z.png'),(15,9,'_wp_attachment_context','custom-logo'),(16,9,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:404;s:6:\"height\";i:170;s:4:\"file\";s:36:\"2018/11/cropped-oie_QwA4hmAdSI8Z.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"cropped-oie_QwA4hmAdSI8Z-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"cropped-oie_QwA4hmAdSI8Z-300x126.png\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19,11,'_wp_attached_file','2018/11/cropped-oie_12233124sFOrgQgu-1.jpg'),(20,11,'_wp_attachment_context','custom-header'),(21,11,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:849;s:4:\"file\";s:42:\"2018/11/cropped-oie_12233124sFOrgQgu-1.jpg\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"cropped-oie_12233124sFOrgQgu-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"cropped-oie_12233124sFOrgQgu-1-300x133.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"cropped-oie_12233124sFOrgQgu-1-768x340.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"cropped-oie_12233124sFOrgQgu-1-1024x453.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:453;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"business-gravity-1920-1200\";a:4:{s:4:\"file\";s:43:\"cropped-oie_12233124sFOrgQgu-1-1920x849.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:849;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"business-gravity-1200-850\";a:4:{s:4:\"file\";s:43:\"cropped-oie_12233124sFOrgQgu-1-1200x849.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:849;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"business-gravity-1170-710\";a:4:{s:4:\"file\";s:43:\"cropped-oie_12233124sFOrgQgu-1-1170x710.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:710;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:17:\"attachment_parent\";i:5;}'),(22,11,'_wp_attachment_custom_header_last_used_business-gravity','1543458288'),(23,11,'_wp_attachment_is_custom_header','business-gravity'),(26,5,'_wp_attachment_is_custom_background','business-hub'),(27,2,'_edit_lock','1547061638:1'),(28,2,'_edit_last','1'),(295,50,'_edit_lock','1547062538:1'),(29,2,'_hide_page_title',''),(30,2,'_hide_header',''),(31,2,'_hide_footer',''),(32,2,'_hide_breadcrumb',''),(33,2,'_cover',''),(34,2,'_show_excerpt',''),(35,2,'_wc_apply_product',''),(38,15,'_wp_attached_file','2018/11/log_file_2018-11-29__11-12-44.txt'),(39,16,'_wp_attached_file','2018/05/placeholder.png'),(40,16,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2018/05/placeholder.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"placeholder-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"placeholder-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"placeholder-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:23:\"placeholder-830x553.png\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:23:\"placeholder-550x400.png\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:23:\"placeholder-230x153.png\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:23:\"placeholder-350x233.png\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:23:\"placeholder-480x320.png\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(41,16,'_elementor_source_image_hash','6d7274f6c96e47302aa30bcb4fae9125260d754b'),(42,17,'_wp_attached_file','2018/05/iphone-550x363.png'),(43,17,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:363;s:4:\"file\";s:26:\"2018/05/iphone-550x363.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"iphone-550x363-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"iphone-550x363-300x198.png\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:26:\"iphone-550x363-550x363.png\";s:5:\"width\";i:550;s:6:\"height\";i:363;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:26:\"iphone-550x363-230x152.png\";s:5:\"width\";i:230;s:6:\"height\";i:152;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:26:\"iphone-550x363-350x231.png\";s:5:\"width\";i:350;s:6:\"height\";i:231;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:26:\"iphone-550x363-480x317.png\";s:5:\"width\";i:480;s:6:\"height\";i:317;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(45,18,'_wp_attached_file','2018/05/imac-606765_1280.jpg'),(46,18,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:850;s:4:\"file\";s:28:\"2018/05/imac-606765_1280.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"imac-606765_1280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"imac-606765_1280-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"imac-606765_1280-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"imac-606765_1280-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:28:\"imac-606765_1280-830x551.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:28:\"imac-606765_1280-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:28:\"imac-606765_1280-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:28:\"imac-606765_1280-350x232.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:28:\"imac-606765_1280-480x319.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:319;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(48,19,'_wp_attached_file','2018/05/1.jpg'),(49,19,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:13:\"2018/05/1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:13:\"1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:13:\"1-230x230.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:13:\"1-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51,22,'_wp_attached_file','2018/05/3.jpg'),(52,22,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:13:\"2018/05/3.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:13:\"3-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:13:\"3-230x230.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:13:\"3-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(54,24,'_wp_attached_file','2018/05/emp6.jpg'),(55,24,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:16:\"2018/05/emp6.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"emp6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"emp6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:16:\"emp6-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:16:\"emp6-230x230.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:16:\"emp6-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(57,27,'_wp_attached_file','2018/05/4.jpg'),(58,27,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:13:\"2018/05/4.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:13:\"4-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:13:\"4-230x230.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:13:\"4-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(60,31,'_wp_attached_file','2018/05/urban-438393_1280.jpg'),(61,31,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:850;s:4:\"file\";s:29:\"2018/05/urban-438393_1280.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"urban-438393_1280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"urban-438393_1280-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"urban-438393_1280-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"urban-438393_1280-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:29:\"urban-438393_1280-830x551.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:29:\"urban-438393_1280-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:29:\"urban-438393_1280-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:29:\"urban-438393_1280-350x232.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:29:\"urban-438393_1280-480x319.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:319;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(63,33,'_wp_attached_file','2018/05/girls-591552_640.jpg'),(64,33,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:28:\"2018/05/girls-591552_640.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"girls-591552_640-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"girls-591552_640-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:28:\"girls-591552_640-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:28:\"girls-591552_640-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:28:\"girls-591552_640-350x234.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:28:\"girls-591552_640-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(66,34,'_wp_attached_file','2018/05/helicopter-548421_640.jpg'),(67,34,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:33:\"2018/05/helicopter-548421_640.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"helicopter-548421_640-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"helicopter-548421_640-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:33:\"helicopter-548421_640-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:33:\"helicopter-548421_640-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:33:\"helicopter-548421_640-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:33:\"helicopter-548421_640-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(69,35,'_wp_attached_file','2018/05/lake-484190_640.jpg'),(70,35,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:27:\"2018/05/lake-484190_640.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"lake-484190_640-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"lake-484190_640-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:27:\"lake-484190_640-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:27:\"lake-484190_640-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:27:\"lake-484190_640-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:27:\"lake-484190_640-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(72,36,'_wp_attached_file','2018/05/legs-520604_640.jpg'),(73,36,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:27:\"2018/05/legs-520604_640.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"legs-520604_640-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"legs-520604_640-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:27:\"legs-520604_640-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:27:\"legs-520604_640-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:27:\"legs-520604_640-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:27:\"legs-520604_640-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(75,37,'_wp_attached_file','2018/05/men-521540_640.jpg'),(76,37,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:26:\"2018/05/men-521540_640.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"men-521540_640-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"men-521540_640-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:26:\"men-521540_640-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:26:\"men-521540_640-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:26:\"men-521540_640-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:26:\"men-521540_640-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:2:\"30\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(78,38,'_wp_attached_file','2018/05/shimano-501433_640.jpg'),(79,38,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:30:\"2018/05/shimano-501433_640.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"shimano-501433_640-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"shimano-501433_640-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:30:\"shimano-501433_640-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:30:\"shimano-501433_640-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:30:\"shimano-501433_640-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:30:\"shimano-501433_640-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D3100\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"105\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:8:\"0.000625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(81,39,'_wp_attached_file','2018/05/sky-486846_640.jpg'),(82,39,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:26:\"2018/05/sky-486846_640.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"sky-486846_640-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"sky-486846_640-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:26:\"sky-486846_640-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:26:\"sky-486846_640-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:26:\"sky-486846_640-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:26:\"sky-486846_640-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1000D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"53\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:8:\"0.000625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(84,40,'_wp_attached_file','2018/05/statue-of-liberty-539318_640.jpg'),(85,40,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:40:\"2018/05/statue-of-liberty-539318_640.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"statue-of-liberty-539318_640-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"statue-of-liberty-539318_640-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:40:\"statue-of-liberty-539318_640-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:40:\"statue-of-liberty-539318_640-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:40:\"statue-of-liberty-539318_640-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:40:\"statue-of-liberty-539318_640-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"13\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:19:\"Canon EOS REBEL T5i\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"205\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:8:\"0.000625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(87,41,'_wp_attached_file','2018/05/woman-546207_640.jpg'),(88,41,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:28:\"2018/05/woman-546207_640.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"woman-546207_640-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"woman-546207_640-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:28:\"woman-546207_640-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:28:\"woman-546207_640-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:28:\"woman-546207_640-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:28:\"woman-546207_640-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(90,42,'_wp_attached_file','2018/05/sun-513848_640.jpg'),(91,42,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:26:\"2018/05/sun-513848_640.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"sun-513848_640-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"sun-513848_640-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:26:\"sun-513848_640-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:26:\"sun-513848_640-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:26:\"sun-513848_640-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:26:\"sun-513848_640-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"Canon EOS 600D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(93,48,'_wp_attached_file','2018/05/1.png'),(94,48,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:129;s:6:\"height\";i:90;s:4:\"file\";s:13:\"2018/05/1.png\";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:{}}}'),(96,49,'_wp_attached_file','2018/05/2.png'),(97,49,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:123;s:6:\"height\";i:90;s:4:\"file\";s:13:\"2018/05/2.png\";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:{}}}'),(99,50,'_wp_page_template','elementor_header_footer'),(100,51,'_wp_page_template','page-templates/page_front-page.php'),(101,51,'_elementor_edit_mode','builder'),(102,51,'_elementor_template_type','post'),(103,51,'_elementor_data','[{\"id\":\"9a87bc4\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f173cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"667b1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"4cfe18a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Maritime Corporation\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b98b98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"24085f1\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"a1a2048\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"868f10f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"676cf50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nautilus Maritime Corporation is a privately owned business group that controls several maritime subsidiaries that compliment each other. Our core activities are general marine towing and assists with capabilities to serve market segments of\\u00a0 ship \\/ barge \\/ general vessel assist;\\u00a0 construction and dredge support and petroleum transportation.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ece733\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"454770d5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"services\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"49c465df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39c9553d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3584b5\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ce82b2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\"},\"elements\":[{\"id\":\"08f6b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bcb858\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-anchor\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"710cc4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Marine Towing and Transportation LLC<\\/strong><\\/p><p>We provide marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, we operates 24 hours and 7 days a week.<\\/p><p>As a new independent provider of third party marine towing services we are based in New York harbor and operate along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment.<\\/p><p>Over the past 12 years, the New York harbor towing market experienced a sizable consolidation by larger towing and transportation companies. This consolidation left very few independent operators. The lack of responsible third party services with larger horsepower is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. After extensively studying needs of the towing market in New York harbor, understanding the increased regulatory and compliance environment, and its adverse impact on older tonnage, Nautilus adopted the \\u201cclean slate\\u201d approach that is aligned with the future of marine towing and transportation realities including:<\\/p><ul><li>Focus on regulatory compliance<\\/li><li>Best ensuring a safety conscious work environment<\\/li><li>Responsible handling of equipment<\\/li><li>Focus on fuel efficiency<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"136fd09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cbc7b73\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-ship\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"68dcfba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Marine Energy Transportation LLC<\\/strong><\\/p><p>A newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0373b06\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-compass\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"a705a22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Solutions LLC<\\/strong><\\/p><p>Our founding members have deep industry roots, market intelligence, and extensive relationships. Through our years of experience and a network of key marine professionals, we offer support and advice on a consulting basis to Jones Act maritime companies. Breadth of expertise ranges from business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering and financial accounting for U.S. owned maritime companies.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c17a690\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"341cc7d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Offshore Wind, LLC<\\/strong><\\/p><p>A subsidiary established to take advantage of the nascent Northeast Offshore Wind projects and developments, Nautilus seeks to provide a complete range of maritime and offshore wind power infrastructure support services. As a provider a provider of maritime assets and logistics to support the 4 phases of offshore wind projects: (1) survey, (2) construction, (3) operations and maintenance and (4) decommissioning.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af86639\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#7a7a7a\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c43a80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c271b4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-linkedin\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"e41e029\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5ab511\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f9da753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46c4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/bay-boats-business-357508.jpg\",\"id\":202},\"image_size\":\"sydney-small-thumb\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"455eaca\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"60d24e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Who We Are<\\/h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.<\\/p><p>The Group was formed by three veteran captains joined by a senior banker with maritime experience. General maritime towing and capital markets are part of our corporate DNA which allows us to invest and enter associated sectors with modern and efficient equipment. Recruiting well trained and safety conscious crew are core to what we do.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(873,314,'_wp_page_template','page-templates/page_front-page.php'),(874,314,'_elementor_edit_mode','builder'),(875,314,'_elementor_template_type','post'),(876,314,'_elementor_data','[{\"id\":\"9a87bc4\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f173cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"667b1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"4cfe18a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Maritime Corporation\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b98b98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"24085f1\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"a1a2048\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"868f10f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"676cf50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nautilus Maritime Corporation is a privately owned business group that controls several maritime subsidiaries that compliment each other. Our core activities are general marine towing and assists with capabilities to serve market segments of (i) ship \\/ barge \\/ general vessel assist; (ii) construction and dredge support; (iii) petroleum transportation.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ece733\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"454770d5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"services\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"49c465df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39c9553d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3584b5\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ce82b2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\"},\"elements\":[{\"id\":\"08f6b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bcb858\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-anchor\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"710cc4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Marine Towing and Transportation LLC<\\/strong><\\/p><p>We provide marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, we operates 24 hours and 7 days a week.<\\/p><p>As a new independent provider of third party marine towing services we are based in New York harbor and operate along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment.<\\/p><p>Over the past 12 years, the New York harbor towing market experienced a sizable consolidation by larger towing and transportation companies. This consolidation left very few independent operators. The lack of responsible third party services with larger horsepower is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. After extensively studying needs of the towing market in New York harbor, understanding the increased regulatory and compliance environment, and its adverse impact on older tonnage, Nautilus adopted the \\u201cclean slate\\u201d approach that is aligned with the future of marine towing and transportation realities including:<\\/p><ul><li>Focus on regulatory compliance<\\/li><li>Best ensuring a safety conscious work environment<\\/li><li>Responsible handling of equipment<\\/li><li>Focus on fuel efficiency<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"136fd09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cbc7b73\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-ship\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"68dcfba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Marine Energy Transportation LLC<\\/strong><\\/p><p>A newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0373b06\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-compass\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"a705a22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Solutions<\\/strong><\\/p><p>Our founding members have deep industry roots, market intelligence, and extensive relationships. Through our years of experience and a network of key marine professionals, we offer support and advice on a consulting basis to Jones Act maritime companies. Breadth of expertise ranges from business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering and financial accounting for U.S. owned maritime companies.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c17a690\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"341cc7d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Offshore Wind, LLC<\\/strong><\\/p><p>A subsidiary established to take advantage of the nascent Northeast Offshore Wind projects and developments, Nautilus seeks to provide a complete range of maritime and offshore wind power infrastructure support services. As a provider a provider of maritime assets and logistics to support the 4 phases of offshore wind projects: (1) survey, (2) construction, (3) operations and maintenance and (4) decommissioning.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af86639\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#7a7a7a\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c43a80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c271b4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-linkedin\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"e41e029\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5ab511\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f9da753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46c4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/bay-boats-business-357508.jpg\",\"id\":202},\"image_size\":\"sydney-small-thumb\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"455eaca\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"60d24e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Who We Are<\\/h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(631,273,'_wp_page_template','page-templates/page_front-page.php'),(632,273,'_elementor_edit_mode','builder'),(633,273,'_elementor_template_type','post'),(634,273,'_elementor_data','[{\"id\":\"9a87bc4\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f173cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"667b1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"4cfe18a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Maritime Corporation\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b98b98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"24085f1\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"a1a2048\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"868f10f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"676cf50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nautilus Maritime Corporation is a privately owned business group that controls several maritime subsidiaries that compliment each other. Our core activities are general marine towing and assists with capabilities to serve market segments of (i) ship \\/ barge \\/ general vessel assist; (ii) construction and dredge support; (iii) petroleum transportation.<\\/p><p>To further support growth Nautilus recently established a subsidiary to explore bunkering for workboats (Tugs and Research Vessels); and a second subsidiary to provide maritime services for the nascent US offshore wind sector.<\\/p><p>The Group was formed by three veteran captains joined by a senior banker with maritime experience. General maritime towing and capital markets are part of our corporate DNA which allows us to invest and enter associated sectors with modern and efficient equipment. Recruiting well trained and safety conscious crew are core to what we do.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ece733\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"454770d5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"services\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"49c465df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39c9553d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3584b5\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ce82b2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\"},\"elements\":[{\"id\":\"08f6b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bcb858\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-anchor\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"710cc4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Marine Towing and Transportation LLC<\\/strong><\\/p><p>We provide marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, we operates 24 hours and 7 days a week.<\\/p><p>As a new independent provider of third party marine towing services we are based in New York harbor and operate along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment.<\\/p><p>Over the past 12 years, the New York harbor towing market experienced a sizable consolidation by larger towing and transportation companies. This consolidation left very few independent operators. The lack of responsible third party services with larger horsepower is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. After extensively studying needs of the towing market in New York harbor, understanding the increased regulatory and compliance environment, and its adverse impact on older tonnage, Nautilus adopted the \\u201cclean slate\\u201d approach that is aligned with the future of marine towing and transportation realities including:<\\/p><ul><li>Focus on regulatory compliance<\\/li><li>Best ensuring a safety conscious work environment<\\/li><li>Responsible handling of equipment<\\/li><li>Focus on fuel efficiency<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"136fd09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cbc7b73\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-ship\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"68dcfba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Marine Energy Transportation LLC<\\/strong><\\/p><p>A newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0373b06\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-compass\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"a705a22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Solutions<\\/strong><\\/p><p>Our founding members have deep industry roots, market intelligence, and extensive relationships. Through our years of experience and a network of key marine professionals, we offer support and advice on a consulting basis to Jones Act maritime companies. Breadth of expertise ranges from business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering and financial accounting for U.S. owned maritime companies.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c17a690\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"341cc7d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Offshore Wind, LLC<\\/strong><\\/p><p>A subsidiary established to take advantage of the nascent Northeast Offshore Wind projects and developments, Nautilus seeks to provide a complete range of maritime and offshore wind power infrastructure support services. As a provider a provider of maritime assets and logistics to support the 4 phases of offshore wind projects: (1) survey, (2) construction, (3) operations and maintenance and (4) decommissioning.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af86639\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#7a7a7a\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c43a80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c271b4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-linkedin\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"e41e029\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5ab511\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f9da753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46c4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/bay-boats-business-357508.jpg\",\"id\":202},\"image_size\":\"sydney-small-thumb\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"455eaca\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"60d24e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Who We Are<\\/h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(244,197,'_wp_page_template','page-templates/page_front-page.php'),(245,197,'_elementor_edit_mode','builder'),(246,197,'_elementor_template_type','post'),(247,197,'_elementor_data','[{\"id\":\"454770d5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"services\"},\"elements\":[{\"id\":\"49c465df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39c9553d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3584b5\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5453d6a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"1fc0243e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4da9bb52\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Photography\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.\",\"icon\":\"fa fa-anchor\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"41677401\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"382d7417\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Strategy\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.\",\"icon\":\"fa fa-globe\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c383550\",\"elType\":\"widget\",\"settings\":{\"text\":\"See some more services\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24},\"background_color\":\"#d65050\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"35\",\"bottom\":\"12\",\"left\":\"35\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#d65050\",\"button_background_hover_color\":\"rgba(0,0,0,0)\",\"button_hover_border_color\":\"#d65050\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46b34fb0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f5f5f5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f7a7227\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d651766\",\"elType\":\"widget\",\"settings\":{\"title\":\"What else we provide?\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b751239\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fbbf795\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Global coverage\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.\",\"icon\":\"fa fa-globe\",\"view\":\"framed\",\"position\":\"left\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":30},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5db10670\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5835b5b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/tugboat-3705035_1920.jpg\",\"id\":184}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af86639\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#d65050\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c43a80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c271b4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-wordpress\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"00bd572\"},{\"social\":\"fa fa-weibo\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"b13f1e3\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(230,195,'_wp_page_template','page-templates/page_front-page.php'),(231,195,'_elementor_edit_mode','builder'),(232,195,'_elementor_template_type','post'),(233,195,'_elementor_data','[{\"id\":\"454770d5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"services\"},\"elements\":[{\"id\":\"49c465df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39c9553d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3584b5\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5453d6a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"1fc0243e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4da9bb52\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Photography\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.\",\"icon\":\"fa fa-camera-retro\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"41677401\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"382d7417\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Strategy\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.\",\"icon\":\"fa fa-codepen\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"103fa863\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7fd54726\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Design\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.\",\"icon\":\"fa fa-desktop\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c383550\",\"elType\":\"widget\",\"settings\":{\"text\":\"See some more services\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24},\"background_color\":\"#d65050\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"35\",\"bottom\":\"12\",\"left\":\"35\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#d65050\",\"button_background_hover_color\":\"rgba(0,0,0,0)\",\"button_hover_border_color\":\"#d65050\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46b34fb0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f5f5f5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f7a7227\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d651766\",\"elType\":\"widget\",\"settings\":{\"title\":\"What else we provide?\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b751239\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fbbf795\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Global coverage\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.\",\"icon\":\"fa fa-globe\",\"view\":\"framed\",\"position\":\"left\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":30},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"245389f4\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free coffee\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.\",\"icon\":\"fa fa-coffee\",\"view\":\"framed\",\"position\":\"left\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":30},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c71a443\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Development\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.\",\"icon\":\"fa fa-cogs\",\"view\":\"framed\",\"position\":\"left\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":30},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5db10670\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5835b5b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/uploads\\/sites\\/80\\/2018\\/05\\/iphone-550x363.png\",\"id\":14}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"555b720\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"extended\",\"content_position\":\"middle\",\"css_classes\":\"sydney-progress\"},\"elements\":[{\"id\":\"59cc932\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7a335a4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Who we are\",\"header_size\":\"h3\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6592a18f\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"left\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a9d4af2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\\u00a0Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75c3c9e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Lorem ipsum dolor sit amet\",\"icon\":\"fa fa-check\",\"_id\":\"7cf783d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"Lorem ipsum dolor sit amet\",\"icon\":\"fa fa-check\",\"_id\":\"d3224c8\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"Lorem ipsum dolor sit amet\",\"icon\":\"fa fa-check\",\"_id\":\"2d3999d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_color\":\"#e64e4e\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"a52c7d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"82e5108\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design\",\"percent\":{\"unit\":\"%\",\"size\":81},\"inner_text\":\"\",\"bar_color\":\"#e64e4e\",\"bar_bg_color\":\"#f3f3f3\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"6457a10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Development\",\"percent\":{\"unit\":\"%\",\"size\":87},\"inner_text\":\"\",\"bar_color\":\"#e64e4e\",\"bar_bg_color\":\"#f3f3f3\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"7636f5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Photography\",\"percent\":{\"unit\":\"%\",\"size\":93},\"inner_text\":\"\",\"bar_color\":\"#e64e4e\",\"bar_bg_color\":\"#f3f3f3\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"978ae1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy\",\"percent\":{\"unit\":\"%\",\"size\":74},\"inner_text\":\"\",\"bar_color\":\"#e64e4e\",\"bar_bg_color\":\"#f3f3f3\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af86639\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#d65050\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c43a80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c271b4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-wordpress\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"00bd572\"},{\"social\":\"fa fa-weibo\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"b13f1e3\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(234,195,'_elementor_version','0.4'),(248,197,'_elementor_version','0.4'),(249,198,'_wp_page_template','page-templates/page_front-page.php'),(250,198,'_elementor_edit_mode','builder'),(251,198,'_elementor_template_type','post'),(252,198,'_elementor_data','[{\"id\":\"24085f1\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"a1a2048\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"868f10f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"676cf50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nautilus Marine Towing and Transportation<\\/p><p class=\\\"MsoNoSpacing\\\">(\\u201cNautilus\\u201d) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a \\u201cclean slate\\u201d approach that is aligned with future marine towing and transportation realities including:<\\/p><p style=\\\"padding-left: 150px;\\\">Focus on regulatory compliance<br \\/>Encouraging a safety conscious work environment<br \\/>Responsible handling of equipment<br \\/>Focus on vessel fuel efficiency<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ece733\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"454770d5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"services\"},\"elements\":[{\"id\":\"49c465df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39c9553d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3584b5\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5453d6a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"1fc0243e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4da9bb52\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Photography\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.\",\"icon\":\"fa fa-anchor\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"41677401\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"382d7417\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Strategy\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.\",\"icon\":\"fa fa-globe\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c383550\",\"elType\":\"widget\",\"settings\":{\"text\":\"See some more services\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24},\"background_color\":\"#d65050\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"35\",\"bottom\":\"12\",\"left\":\"35\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#d65050\",\"button_background_hover_color\":\"rgba(0,0,0,0)\",\"button_hover_border_color\":\"#d65050\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46b34fb0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f5f5f5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f7a7227\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d651766\",\"elType\":\"widget\",\"settings\":{\"title\":\"What else we provide?\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b751239\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fbbf795\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Global coverage\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.\",\"icon\":\"fa fa-globe\",\"view\":\"framed\",\"position\":\"left\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":30},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5db10670\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5835b5b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/tugboat-3705035_1920.jpg\",\"id\":184}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af86639\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#d65050\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c43a80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c271b4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-wordpress\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"00bd572\"},{\"social\":\"fa fa-weibo\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"b13f1e3\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(104,51,'_elementor_version','0.4'),(105,51,'_wxr_import_has_attachment_refs','1'),(106,52,'_wp_page_template','default'),(107,53,'_elementor_template_type','page'),(108,53,'_elementor_edit_mode','builder'),(109,53,'_wp_page_template','default'),(110,53,'_elementor_data','[{\"id\":\"7f56\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"5571\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"e83\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4800\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4afb\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"1e7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"5839\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Photography\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.\",\"icon\":\"fa fa-camera-retro\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"642c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"fdf\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Strategy\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.\",\"icon\":\"fa fa-codepen\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"248a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"3ef5\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Design\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.\",\"icon\":\"fa fa-desktop\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1718\",\"elType\":\"widget\",\"settings\":{\"text\":\"See some more services\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24},\"background_color\":\"#d65050\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"35\",\"bottom\":\"12\",\"left\":\"35\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#d65050\",\"button_background_hover_color\":\"rgba(0,0,0,0)\",\"button_hover_border_color\":\"#d65050\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ecf\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f5f5f5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"3130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"1bd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"What else we provide?\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cc4\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"57ad\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Global coverage\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.\",\"icon\":\"fa fa-globe\",\"view\":\"framed\",\"position\":\"left\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":30},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"3ae2\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free coffee\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.\",\"icon\":\"fa fa-coffee\",\"view\":\"framed\",\"position\":\"left\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":30},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1e73\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Development\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.\",\"icon\":\"fa fa-cogs\",\"view\":\"framed\",\"position\":\"left\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":30},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"232e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"41a9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2092\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"61d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"305c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to...\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#d65050\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f65\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2ef4\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"7648\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(0,0,0,0.3)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"443a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Take some time and meet our Employees?\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#8e8e8e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68eb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet the team\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24},\"background_color\":\"rgba(255,255,255,0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"35\",\"bottom\":\"12\",\"left\":\"35\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#d65050\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#d65050\",\"button_hover_border_color\":\"#d65050\",\"border_color\":\"#d65050\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"28c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(0,0,0,0.3)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"7ce1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Take some time and meet our Employees?\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#8e8e8e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a06\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet the team\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24},\"background_color\":\"rgba(255,255,255,0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"35\",\"bottom\":\"12\",\"left\":\"35\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#d65050\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#d65050\",\"button_hover_border_color\":\"#d65050\",\"border_color\":\"#d65050\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"69bf\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"33de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"a63\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4660\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"508e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#d65050\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"4889\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"790\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"2fea\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"688c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-briefcase\",\"primary_color\":\"#ffffff\",\"size\":{\"unit\":\"px\",\"size\":30},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5bd5\",\"elType\":\"widget\",\"settings\":{\"starting_number\":\"\",\"ending_number\":98,\"title\":\"Briefcase\",\"number_color\":\"#ffffff\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Raleway\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_number_font_weight\":\"600\",\"title_color\":\"#ffffff\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Raleway\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_title_font_weight\":\"600\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"6051\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"62db\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-coffee\",\"primary_color\":\"#ffffff\",\"size\":{\"unit\":\"px\",\"size\":30},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"178\",\"elType\":\"widget\",\"settings\":{\"starting_number\":\"\",\"ending_number\":421,\"title\":\"Coffee cups\",\"number_color\":\"#ffffff\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Raleway\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_number_font_weight\":\"600\",\"title_color\":\"#ffffff\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Raleway\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_title_font_weight\":\"600\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"3d24\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"60b6\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-users\",\"primary_color\":\"#ffffff\",\"size\":{\"unit\":\"px\",\"size\":30},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"51b7\",\"elType\":\"widget\",\"settings\":{\"starting_number\":\"\",\"ending_number\":814,\"title\":\"Customers\",\"number_color\":\"#ffffff\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Raleway\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_number_font_weight\":\"600\",\"title_color\":\"#ffffff\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Raleway\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_title_font_weight\":\"600\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"308d\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-graduation-cap\",\"primary_color\":\"#ffffff\",\"size\":{\"unit\":\"px\",\"size\":30},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5242\",\"elType\":\"widget\",\"settings\":{\"starting_number\":\"\",\"ending_number\":221,\"title\":\"Awards\",\"number_color\":\"#ffffff\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Raleway\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_number_font_weight\":\"600\",\"title_color\":\"#ffffff\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Raleway\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_title_font_weight\":\"600\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38cb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"679a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"40af\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients say\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cbc\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6445\",\"elType\":\"widget\",\"settings\":{\"testimonials_list\":[{\"name\":\"John Doe\",\"position\":\"Manager\",\"testimonial\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla id purus neque. Curabitur pulvinar elementum neque in dictum. Sed non lectus nec tortor iaculis tincidunt.\",\"_id\":\"dc0ecda\",\"image\":{\"id\":\"\",\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"}},{\"name\":\"James Stevens\",\"position\":\"Manager\",\"testimonial\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla id purus neque. Curabitur pulvinar elementum neque in dictum. Sed non lectus nec tortor iaculis tincidunt.\",\"_id\":\"df90247\",\"image\":{\"id\":\"\",\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"}}],\"name_color\":\"#ffffff\",\"position_color\":\"#ffffff\",\"testimonial_color\":\"#ffffff\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"athemes-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3754\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"16a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"38a8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our work\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7fc1\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6366\",\"elType\":\"widget\",\"settings\":{\"portfolio_list\":[{\"name\":\"John Doe\",\"position\":\"Manager\",\"testimonial\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla id purus neque. Curabitur pulvinar elementum neque in dictum. Sed non lectus nec tortor iaculis tincidunt.\",\"_id\":\"8b7e415\",\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Project title\",\"term\":\"Art\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"name\":\"James Stevens\",\"position\":\"Manager\",\"testimonial\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla id purus neque. Curabitur pulvinar elementum neque in dictum. Sed non lectus nec tortor iaculis tincidunt.\",\"_id\":\"0a5e6e7\",\"image\":{\"url\":\"\",\"id\":\"\"},\"title\":\"Project title\",\"term\":\"Art\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"athemes-portfolio\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7643\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"4ff2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"56fd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Waiting for redesign\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1cec\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252525\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"65f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"74c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"WANT TO KNOW MORE ABOUT OUR COMPANY? CURIOUS WHAT ELSE WE DO?\",\"header_size\":\"h3\",\"title_color\":\"#8e8e8e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"339f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"793e\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24},\"background_color\":\"rgba(255,255,255,0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"35\",\"bottom\":\"12\",\"left\":\"35\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#d65050\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#d65050\",\"button_hover_border_color\":\"#d65050\",\"border_color\":\"#d65050\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7797\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"1bd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"68b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b4a\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6abb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas vel placerat magna, eget scelerisque est. Ut tincidunt, sem vehicula sodales blandit, sem nisi pharetra dui, hendrerit pulvinar ante lectus eu lectus. Quisque sed enim fermentum, condimentum nisi nec, consequat lacus. Sed massa metus, tincidunt quis condimentum eget, viverra id sem. Nam dapibus nibh consectetur, accumsan libero sed, dictum augue. Nulla cursus tortor in felis cursus volutpat. Aenean laoreet sapien et justo ultrices, at pellentesque dui semper. In quis leo id sem semper accumsan nec vitae eros. Ut non hendrerit diam. Curabitur malesuada arcu sit amet nulla vulputate imperdiet.<\\/p>\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7216\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"5b31\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=7iBqEknWOiU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\",\"image_overlay\":{\"id\":8,\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/uploads\\/sites\\/80\\/2018\\/05\\/placeholder.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19a2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f5f5f5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"796d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"1d84\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"sydney-service-thumb\",\"gallery_columns\":\"5\",\"wp_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"191c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"428f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"7633\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest news\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df0\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3f69\",\"elType\":\"widget\",\"settings\":{\"style\":\"style1\",\"see_all_text\":\"See all our news\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"athemes-posts\"},{\"id\":\"2dee\",\"elType\":\"widget\",\"settings\":{\"text\":\"See all our news\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24},\"background_color\":\"#d65050\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"35\",\"bottom\":\"12\",\"left\":\"35\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#d65050\",\"button_background_hover_color\":\"rgba(0,0,0,0)\",\"button_hover_border_color\":\"#d65050\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78ab\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#d65050\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"3afa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[{\"id\":\"6925\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-wordpress\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"00bd572\"},{\"social\":\"fa fa-weibo\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"b13f1e3\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(111,53,'_elementor_version','0.4'),(112,54,'_wp_attached_file','2018/05/3.png'),(113,54,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:87;s:6:\"height\";i:90;s:4:\"file\";s:13:\"2018/05/3.png\";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:{}}}'),(114,55,'_wp_attached_file','2018/05/4.png'),(115,55,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:149;s:6:\"height\";i:90;s:4:\"file\";s:13:\"2018/05/4.png\";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:{}}}'),(116,56,'_wp_attached_file','2018/05/5.png'),(117,56,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:88;s:6:\"height\";i:90;s:4:\"file\";s:13:\"2018/05/5.png\";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:{}}}'),(192,180,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1275;s:4:\"file\";s:13:\"2018/11/1.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"1-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"1-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"1-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:13:\"1-830x551.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:13:\"1-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:13:\"1-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:13:\"1-350x232.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:13:\"1-480x319.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:319;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(120,137,'_thumbnail_id','153'),(121,137,'_wp_page_template','default'),(124,141,'_thumbnail_id','151'),(125,141,'_wp_page_template','default'),(126,149,'_wp_attached_file','2015/03/macbook-336704_1280.jpg'),(127,149,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:853;s:4:\"file\";s:31:\"2015/03/macbook-336704_1280.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"macbook-336704_1280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"macbook-336704_1280-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"macbook-336704_1280-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"macbook-336704_1280-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:31:\"macbook-336704_1280-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:31:\"macbook-336704_1280-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:31:\"macbook-336704_1280-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:31:\"macbook-336704_1280-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:31:\"macbook-336704_1280-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(129,151,'_wp_attached_file','2015/03/ipad-606764_1280.jpg'),(130,151,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:850;s:4:\"file\";s:28:\"2015/03/ipad-606764_1280.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"ipad-606764_1280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"ipad-606764_1280-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"ipad-606764_1280-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"ipad-606764_1280-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:28:\"ipad-606764_1280-830x551.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:28:\"ipad-606764_1280-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:28:\"ipad-606764_1280-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:28:\"ipad-606764_1280-350x232.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:28:\"ipad-606764_1280-480x319.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:319;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(131,153,'_wp_attached_file','2015/03/imac-606765_1280.jpg'),(132,153,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:850;s:4:\"file\";s:28:\"2015/03/imac-606765_1280.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"imac-606765_1280-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"imac-606765_1280-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"imac-606765_1280-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"imac-606765_1280-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:28:\"imac-606765_1280-830x551.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:28:\"imac-606765_1280-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:28:\"imac-606765_1280-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:28:\"imac-606765_1280-350x232.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:28:\"imac-606765_1280-480x319.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:319;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(133,169,'_menu_item_type','post_type'),(134,169,'_menu_item_menu_item_parent','0'),(135,169,'_menu_item_object_id','51'),(136,169,'_menu_item_object','page'),(137,169,'_menu_item_target',''),(138,169,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(139,169,'_menu_item_xfn',''),(140,169,'_menu_item_url',''),(341,220,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(340,220,'_menu_item_target',''),(339,220,'_menu_item_object','page'),(338,220,'_menu_item_object_id','214'),(337,220,'_menu_item_menu_item_parent','0'),(336,220,'_menu_item_type','post_type'),(335,219,'_um_core','password-reset'),(334,218,'_um_core','account'),(333,217,'_um_core','logout'),(332,216,'_um_core','members'),(331,215,'_um_core','register'),(330,214,'_um_core','login'),(329,213,'_um_core','user'),(461,241,'_wp_attached_file','2018/12/oie_4172628HKpa0fQU.jpg'),(462,241,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1331;s:6:\"height\";i:998;s:4:\"file\";s:31:\"2018/12/oie_4172628HKpa0fQU.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"oie_4172628HKpa0fQU-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"oie_4172628HKpa0fQU-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"oie_4172628HKpa0fQU-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"oie_4172628HKpa0fQU-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:31:\"oie_4172628HKpa0fQU-830x622.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:622;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:31:\"oie_4172628HKpa0fQU-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:31:\"oie_4172628HKpa0fQU-230x172.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:31:\"oie_4172628HKpa0fQU-350x262.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:262;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:31:\"oie_4172628HKpa0fQU-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(365,223,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:42:\"2018/11/cropped-pexels-photo-753331-1.jpeg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"cropped-pexels-photo-753331-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"cropped-pexels-photo-753331-1-300x169.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"cropped-pexels-photo-753331-1-768x432.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"cropped-pexels-photo-753331-1-1024x576.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:42:\"cropped-pexels-photo-753331-1-830x467.jpeg\";s:5:\"width\";i:830;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:42:\"cropped-pexels-photo-753331-1-550x400.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:42:\"cropped-pexels-photo-753331-1-230x129.jpeg\";s:5:\"width\";i:230;s:6:\"height\";i:129;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:42:\"cropped-pexels-photo-753331-1-350x197.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:42:\"cropped-pexels-photo-753331-1-480x270.jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:17:\"attachment_parent\";i:187;}'),(364,223,'_wp_attachment_context','custom-header'),(363,223,'_wp_attached_file','2018/11/cropped-pexels-photo-753331-1.jpeg'),(191,180,'_wp_attached_file','2018/11/1.jpg'),(189,144,'_thumbnail_id','149'),(190,144,'_wp_page_template','default'),(193,181,'_wp_attached_file','2018/11/2.jpg'),(194,181,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1275;s:4:\"file\";s:13:\"2018/11/2.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"2-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"2-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"2-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:13:\"2-830x551.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:13:\"2-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:13:\"2-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:13:\"2-350x232.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:13:\"2-480x319.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:319;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(201,184,'_wp_attached_file','2018/11/tugboat-3705035_1920.jpg'),(202,184,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1277;s:4:\"file\";s:32:\"2018/11/tugboat-3705035_1920.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"tugboat-3705035_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"tugboat-3705035_1920-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"tugboat-3705035_1920-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"tugboat-3705035_1920-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:32:\"tugboat-3705035_1920-830x552.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:552;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:32:\"tugboat-3705035_1920-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:32:\"tugboat-3705035_1920-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:32:\"tugboat-3705035_1920-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:32:\"tugboat-3705035_1920-480x319.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:319;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(203,185,'_wp_attached_file','2018/11/tugboat-89600_1920.jpg'),(204,185,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1440;s:4:\"file\";s:30:\"2018/11/tugboat-89600_1920.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"tugboat-89600_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"tugboat-89600_1920-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"tugboat-89600_1920-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"tugboat-89600_1920-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:30:\"tugboat-89600_1920-830x623.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:623;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:30:\"tugboat-89600_1920-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:30:\"tugboat-89600_1920-230x173.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:30:\"tugboat-89600_1920-350x263.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:30:\"tugboat-89600_1920-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(205,186,'_wp_attached_file','2018/11/durban-3840075_1920.jpg'),(206,186,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:31:\"2018/11/durban-3840075_1920.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"durban-3840075_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"durban-3840075_1920-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"durban-3840075_1920-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"durban-3840075_1920-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:31:\"durban-3840075_1920-830x552.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:552;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:31:\"durban-3840075_1920-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:31:\"durban-3840075_1920-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:31:\"durban-3840075_1920-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:31:\"durban-3840075_1920-480x319.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:319;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D3200\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"300\";s:3:\"iso\";s:4:\"1400\";s:13:\"shutter_speed\";s:6:\"0.0005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(207,187,'_wp_attached_file','2018/11/pexels-photo-753331.jpeg'),(208,187,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:862;s:4:\"file\";s:32:\"2018/11/pexels-photo-753331.jpeg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"pexels-photo-753331-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"pexels-photo-753331-300x202.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"pexels-photo-753331-768x517.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:517;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"pexels-photo-753331-1024x690.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:690;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:32:\"pexels-photo-753331-830x559.jpeg\";s:5:\"width\";i:830;s:6:\"height\";i:559;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:32:\"pexels-photo-753331-550x400.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:32:\"pexels-photo-753331-230x155.jpeg\";s:5:\"width\";i:230;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:32:\"pexels-photo-753331-350x236.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:32:\"pexels-photo-753331-480x323.jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:323;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(209,188,'_wp_attached_file','2018/11/pic2.jpg'),(210,188,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:5184;s:6:\"height\";i:3456;s:4:\"file\";s:16:\"2018/11/pic2.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"pic2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"pic2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"pic2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"pic2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:16:\"pic2-830x553.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:16:\"pic2-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:16:\"pic2-230x153.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:16:\"pic2-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:16:\"pic2-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(212,190,'_wp_attached_file','2018/11/night-79624_1920.jpg'),(213,190,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1271;s:4:\"file\";s:28:\"2018/11/night-79624_1920.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"night-79624_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"night-79624_1920-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"night-79624_1920-768x508.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:508;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"night-79624_1920-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:28:\"night-79624_1920-830x549.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:549;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:28:\"night-79624_1920-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:28:\"night-79624_1920-230x152.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:28:\"night-79624_1920-350x232.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:232;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:28:\"night-79624_1920-480x318.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:318;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(216,191,'_wp_attached_file','2018/11/oie_KeFD015ceQac.png'),(217,191,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:194;s:4:\"file\";s:28:\"2018/11/oie_KeFD015ceQac.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"oie_KeFD015ceQac-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"oie_KeFD015ceQac-300x116.png\";s:5:\"width\";i:300;s:6:\"height\";i:116;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:27:\"oie_KeFD015ceQac-230x89.png\";s:5:\"width\";i:230;s:6:\"height\";i:89;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:28:\"oie_KeFD015ceQac-350x136.png\";s:5:\"width\";i:350;s:6:\"height\";i:136;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:28:\"oie_KeFD015ceQac-480x186.png\";s:5:\"width\";i:480;s:6:\"height\";i:186;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(223,51,'_edit_lock','1547061512:1'),(224,194,'_wp_page_template','page-templates/page_front-page.php'),(225,194,'_elementor_edit_mode','builder'),(226,194,'_elementor_template_type','post'),(227,194,'_elementor_data','[{\"id\":\"454770d5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"services\"},\"elements\":[{\"id\":\"49c465df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39c9553d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3584b5\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5453d6a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"1fc0243e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"4da9bb52\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Photography\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.\",\"icon\":\"fa fa-camera-retro\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"41677401\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"382d7417\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Strategy\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.\",\"icon\":\"fa fa-codepen\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"103fa863\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7fd54726\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Design\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.\",\"icon\":\"fa fa-desktop\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c383550\",\"elType\":\"widget\",\"settings\":{\"text\":\"See some more services\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24},\"background_color\":\"#d65050\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"35\",\"bottom\":\"12\",\"left\":\"35\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#d65050\",\"button_background_hover_color\":\"rgba(0,0,0,0)\",\"button_hover_border_color\":\"#d65050\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46b34fb0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f5f5f5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f7a7227\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d651766\",\"elType\":\"widget\",\"settings\":{\"title\":\"What else we provide?\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b751239\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fbbf795\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Global coverage\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.\",\"icon\":\"fa fa-globe\",\"view\":\"framed\",\"position\":\"left\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":30},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"245389f4\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Free coffee\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.\",\"icon\":\"fa fa-coffee\",\"view\":\"framed\",\"position\":\"left\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":30},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"c71a443\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Development\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.\",\"icon\":\"fa fa-cogs\",\"view\":\"framed\",\"position\":\"left\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":30},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5db10670\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5835b5b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/uploads\\/sites\\/80\\/2018\\/05\\/iphone-550x363.png\",\"id\":14}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"77e65f7e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":15,\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/uploads\\/sites\\/80\\/2018\\/05\\/imac-606765_1280.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed0c941\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"544dcfe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you want to...\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#d65050\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8198bb3\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"17ec5f58\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\"},\"elements\":[{\"id\":\"22eab42\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(0,0,0,0.3)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"587d9f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Take some time and meet our Employees?\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#8e8e8e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"212e3669\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet the team\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24},\"background_color\":\"rgba(255,255,255,0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"35\",\"bottom\":\"12\",\"left\":\"35\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#d65050\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#d65050\",\"button_hover_border_color\":\"#d65050\",\"border_color\":\"#d65050\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"3e1d0a40\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(0,0,0,0.3)\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"32a3ce18\",\"elType\":\"widget\",\"settings\":{\"title\":\"Take some time and meet our Employees?\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#8e8e8e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40811001\",\"elType\":\"widget\",\"settings\":{\"text\":\"Meet the team\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24},\"background_color\":\"rgba(255,255,255,0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"35\",\"bottom\":\"12\",\"left\":\"35\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#d65050\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#d65050\",\"button_hover_border_color\":\"#d65050\",\"border_color\":\"#d65050\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"504f5825\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"team\"},\"elements\":[{\"id\":\"17a683bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"1821e40d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c7a8493\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1f8a0d8\",\"elType\":\"widget\",\"settings\":{\"employee_list\":[{\"image\":{\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/uploads\\/sites\\/80\\/2018\\/05\\/1.jpg\",\"id\":17},\"person\":\"John Doe\",\"position\":\"General Manager\",\"facebook\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"linkedin\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"90381c2\"},{\"image\":{\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/uploads\\/sites\\/80\\/2018\\/05\\/3.jpg\",\"id\":22},\"person\":\"John Doe\",\"position\":\"General Manager\",\"facebook\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"linkedin\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"3fea12f\"},{\"image\":{\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/uploads\\/sites\\/80\\/2018\\/05\\/emp6.jpg\",\"id\":24},\"person\":\"John Doe\",\"position\":\"Accountant\",\"facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"linkedin\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"ca61fc4\"},{\"image\":{\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/uploads\\/sites\\/80\\/2018\\/05\\/4.jpg\",\"id\":27},\"person\":\"John Doe\",\"position\":\"General Manager\",\"facebook\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"twitter\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"linkedin\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"2dd6636\"}]},\"elements\":[],\"widgetType\":\"athemes-employee-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6feb2355\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#d65050\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7da25746\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"66b3a9cd\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"608f0088\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"1de1f894\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-briefcase\",\"primary_color\":\"#ffffff\",\"size\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"177bcae3\",\"elType\":\"widget\",\"settings\":{\"starting_number\":\"\",\"ending_number\":98,\"title\":\"Briefcase\",\"number_color\":\"#ffffff\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Raleway\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_number_font_weight\":\"600\",\"title_color\":\"#ffffff\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Raleway\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_title_font_weight\":\"600\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"2a536668\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"7235cf3b\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-coffee\",\"primary_color\":\"#ffffff\",\"size\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"33b40033\",\"elType\":\"widget\",\"settings\":{\"starting_number\":\"\",\"ending_number\":421,\"title\":\"Coffee cups\",\"number_color\":\"#ffffff\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Raleway\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_number_font_weight\":\"600\",\"title_color\":\"#ffffff\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Raleway\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_title_font_weight\":\"600\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"5c878a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"377d4011\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-users\",\"primary_color\":\"#ffffff\",\"size\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"119179a\",\"elType\":\"widget\",\"settings\":{\"starting_number\":\"\",\"ending_number\":814,\"title\":\"Customers\",\"number_color\":\"#ffffff\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Raleway\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_number_font_weight\":\"600\",\"title_color\":\"#ffffff\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Raleway\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_title_font_weight\":\"600\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true},{\"id\":\"123a1ce4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[{\"id\":\"573937a6\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-graduation-cap\",\"primary_color\":\"#ffffff\",\"size\":{\"unit\":\"px\",\"size\":30}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"256ca18e\",\"elType\":\"widget\",\"settings\":{\"starting_number\":\"\",\"ending_number\":221,\"title\":\"Awards\",\"number_color\":\"#ffffff\",\"typography_number_typography\":\"custom\",\"typography_number_font_family\":\"Raleway\",\"typography_number_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_number_font_weight\":\"600\",\"title_color\":\"#ffffff\",\"typography_title_typography\":\"custom\",\"typography_title_font_family\":\"Raleway\",\"typography_title_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_title_font_weight\":\"600\",\"typography_title_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"counter\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"731e5d96\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":31,\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/uploads\\/sites\\/80\\/2018\\/05\\/urban-438393_1280.jpg\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.7},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"32eed377\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2d66f97d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What our clients say\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"51f0272d\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"7804af08\",\"elType\":\"widget\",\"settings\":{\"testimonials_list\":[{\"name\":\"John Doe\",\"position\":\"Manager\",\"testimonial\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla id purus neque. Curabitur pulvinar elementum neque in dictum. Sed non lectus nec tortor iaculis tincidunt.\",\"_id\":\"dc0ecda\",\"image\":{\"id\":22,\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/uploads\\/sites\\/80\\/2018\\/05\\/3.jpg\"}},{\"name\":\"James Stevens\",\"position\":\"Manager\",\"testimonial\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla id purus neque. Curabitur pulvinar elementum neque in dictum. Sed non lectus nec tortor iaculis tincidunt.\",\"_id\":\"df90247\",\"image\":{\"id\":17,\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/uploads\\/sites\\/80\\/2018\\/05\\/1.jpg\"}}],\"name_color\":\"#ffffff\",\"position_color\":\"#ffffff\",\"testimonial_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"athemes-testimonials\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7d7f00e8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"3850648b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"dcfa979\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our work\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6322d99\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"339f6d97\",\"elType\":\"widget\",\"settings\":{\"portfolio_list\":[{\"name\":\"John Doe\",\"position\":\"Manager\",\"testimonial\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla id purus neque. Curabitur pulvinar elementum neque in dictum. Sed non lectus nec tortor iaculis tincidunt.\",\"_id\":\"8b7e415\",\"image\":{\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/uploads\\/sites\\/80\\/2018\\/05\\/sun-513848_640.jpg\",\"id\":42},\"title\":\"Project title\",\"term\":\"Science\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"name\":\"James Stevens\",\"position\":\"Manager\",\"testimonial\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla id purus neque. Curabitur pulvinar elementum neque in dictum. Sed non lectus nec tortor iaculis tincidunt.\",\"_id\":\"0a5e6e7\",\"image\":{\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/uploads\\/sites\\/80\\/2018\\/05\\/woman-546207_640.jpg\",\"id\":41},\"title\":\"Project title\",\"term\":\"Art\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"image\":{\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/uploads\\/sites\\/80\\/2018\\/05\\/statue-of-liberty-539318_640.jpg\",\"id\":40},\"title\":\"Project title\",\"term\":\"Creative\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"229aed8\"},{\"image\":{\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/uploads\\/sites\\/80\\/2018\\/05\\/sky-486846_640.jpg\",\"id\":39},\"title\":\"Project title\",\"term\":\"Art\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"96e12a3\"},{\"image\":{\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/uploads\\/sites\\/80\\/2018\\/05\\/shimano-501433_640.jpg\",\"id\":38},\"title\":\"Project title\",\"term\":\"Science\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"6cee612\"},{\"image\":{\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/uploads\\/sites\\/80\\/2018\\/05\\/men-521540_640.jpg\",\"id\":37},\"title\":\"Project title\",\"term\":\"Art\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"9a06bb6\"},{\"image\":{\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/uploads\\/sites\\/80\\/2018\\/05\\/legs-520604_640.jpg\",\"id\":36},\"title\":\"Project title\",\"term\":\"Art\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"f9b6202\"},{\"image\":{\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/uploads\\/sites\\/80\\/2018\\/05\\/lake-484190_640.jpg\",\"id\":35},\"title\":\"Project title\",\"term\":\"Science\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"da323be\"},{\"image\":{\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/uploads\\/sites\\/80\\/2018\\/05\\/helicopter-548421_640.jpg\",\"id\":34},\"title\":\"Project title\",\"term\":\"Art\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"338f306\"},{\"image\":{\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/uploads\\/sites\\/80\\/2018\\/05\\/girls-591552_640.jpg\",\"id\":33},\"title\":\"Project title\",\"term\":\"Creative\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"_id\":\"d0c0364\"}],\"style\":\"style1\",\"project_title_typography_typography\":\"custom\",\"project_title_typography_font_size\":{\"unit\":\"px\",\"size\":16}},\"elements\":[],\"widgetType\":\"athemes-portfolio\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"555b720\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"extended\",\"content_position\":\"middle\",\"css_classes\":\"sydney-progress\"},\"elements\":[{\"id\":\"59cc932\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7a335a4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Who we are\",\"header_size\":\"h3\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6592a18f\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"left\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"a9d4af2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\\u00a0Lorem ipsum dolor sit amet, consectetur adipiscing elit.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"75c3c9e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Lorem ipsum dolor sit amet\",\"icon\":\"fa fa-check\",\"_id\":\"7cf783d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"Lorem ipsum dolor sit amet\",\"icon\":\"fa fa-check\",\"_id\":\"d3224c8\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"Lorem ipsum dolor sit amet\",\"icon\":\"fa fa-check\",\"_id\":\"2d3999d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_color\":\"#e64e4e\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"a52c7d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"82e5108\",\"elType\":\"widget\",\"settings\":{\"title\":\"Design\",\"percent\":{\"unit\":\"%\",\"size\":81},\"inner_text\":\"\",\"bar_color\":\"#e64e4e\",\"bar_bg_color\":\"#f3f3f3\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"6457a10\",\"elType\":\"widget\",\"settings\":{\"title\":\"Development\",\"percent\":{\"unit\":\"%\",\"size\":87},\"inner_text\":\"\",\"bar_color\":\"#e64e4e\",\"bar_bg_color\":\"#f3f3f3\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"7636f5c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Photography\",\"percent\":{\"unit\":\"%\",\"size\":93},\"inner_text\":\"\",\"bar_color\":\"#e64e4e\",\"bar_bg_color\":\"#f3f3f3\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"progress\"},{\"id\":\"978ae1d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strategy\",\"percent\":{\"unit\":\"%\",\"size\":74},\"inner_text\":\"\",\"bar_color\":\"#e64e4e\",\"bar_bg_color\":\"#f3f3f3\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"600\"},\"elements\":[],\"widgetType\":\"progress\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f5912a9\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#252525\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47dd47c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65},\"elements\":[{\"id\":\"1eeabb6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"WANT TO KNOW MORE ABOUT OUR COMPANY? CURIOUS WHAT ELSE WE DO?\",\"header_size\":\"h3\",\"title_color\":\"#8e8e8e\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"3cccb400\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35},\"elements\":[{\"id\":\"65f03d1a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Learn more\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24},\"background_color\":\"rgba(255,255,255,0)\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"35\",\"bottom\":\"12\",\"left\":\"35\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"button_text_color\":\"#d65050\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#d65050\",\"button_hover_border_color\":\"#d65050\",\"border_color\":\"#d65050\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"769b1cac\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"70d2a40b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"467f3da3\",\"elType\":\"widget\",\"settings\":{\"title\":\"About us\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f02833b\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"130d12dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas vel placerat magna, eget scelerisque est. Ut tincidunt, sem vehicula sodales blandit, sem nisi pharetra dui, hendrerit pulvinar ante lectus eu lectus. Quisque sed enim fermentum, condimentum nisi nec, consequat lacus. Sed massa metus, tincidunt quis condimentum eget, viverra id sem. Nam dapibus nibh consectetur, accumsan libero sed, dictum augue. Nulla cursus tortor in felis cursus volutpat. Aenean laoreet sapien et justo ultrices, at pellentesque dui semper. In quis leo id sem semper accumsan nec vitae eros. Ut non hendrerit diam. Curabitur malesuada arcu sit amet nulla vulputate imperdiet.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"14262a76\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"667fc34c\",\"elType\":\"widget\",\"settings\":{\"link\":\"https:\\/\\/www.youtube.com\\/watch?v=7iBqEknWOiU\",\"vimeo_link\":\"https:\\/\\/vimeo.com\\/235215203\",\"image_overlay\":{\"id\":8,\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/uploads\\/sites\\/80\\/2018\\/05\\/placeholder.png\"}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8d53990\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f5f5f5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3992cc04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3db8faf2\",\"elType\":\"widget\",\"settings\":{\"thumbnail_size\":\"sydney-service-thumb\",\"gallery_columns\":\"5\",\"wp_gallery\":[{\"id\":48,\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/uploads\\/sites\\/80\\/2018\\/05\\/1.png\"},{\"id\":49,\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/uploads\\/sites\\/80\\/2018\\/05\\/2.png\"},{\"id\":50,\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/uploads\\/sites\\/80\\/2018\\/05\\/3.png\"},{\"id\":51,\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/uploads\\/sites\\/80\\/2018\\/05\\/4.png\"},{\"id\":52,\"url\":\"http:\\/\\/demo.athemes.com\\/sydney-temp\\/wp-content\\/uploads\\/sites\\/80\\/2018\\/05\\/5.png\"}],\"image_spacing\":\"custom\"},\"elements\":[],\"widgetType\":\"image-gallery\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"70c50bee\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9254a77\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"246ca4c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest news\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3735234a\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"78c05ce5\",\"elType\":\"widget\",\"settings\":{\"style\":\"style1\",\"see_all_text\":\"See all our news\",\"category\":\"\"},\"elements\":[],\"widgetType\":\"athemes-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af86639\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#d65050\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c43a80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c271b4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-wordpress\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"00bd572\"},{\"social\":\"fa fa-weibo\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"b13f1e3\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(228,194,'_elementor_version','0.4'),(253,198,'_elementor_version','0.4'),(275,202,'_wp_attached_file','2018/11/bay-boats-business-357508.jpg'),(276,202,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3757;s:6:\"height\";i:5635;s:4:\"file\";s:37:\"2018/11/bay-boats-business-357508.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"bay-boats-business-357508-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"bay-boats-business-357508-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"bay-boats-business-357508-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"bay-boats-business-357508-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:38:\"bay-boats-business-357508-830x1245.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:1245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:37:\"bay-boats-business-357508-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:37:\"bay-boats-business-357508-230x345.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:345;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:37:\"bay-boats-business-357508-350x525.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:525;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:37:\"bay-boats-business-357508-480x720.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(255,199,'_wp_page_template','page-templates/page_front-page.php'),(256,199,'_elementor_edit_mode','builder'),(257,199,'_elementor_template_type','post'),(258,199,'_elementor_data','[{\"id\":\"9a87bc4\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"8f173cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"667b1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"4cfe18a\",\"elType\":\"widget\",\"settings\":{\"title\":\"<br>Nautilus Maritime\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b98b98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"24085f1\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"a1a2048\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"868f10f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"676cf50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p class=\\\"MsoNoSpacing\\\">(\\u201cNautilus\\u201d) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a \\u201cclean slate\\u201d approach that is aligned with future marine towing and transportation realities including:<\\/p><p style=\\\"padding-left: 150px;\\\">Focus on regulatory compliance<br \\/>Encouraging a safety conscious work environment<br \\/>Responsible handling of equipment<br \\/>Focus on vessel fuel efficiency<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ece733\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"454770d5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"services\"},\"elements\":[{\"id\":\"49c465df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39c9553d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3584b5\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5453d6a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"1fc0243e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4da9bb52\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Photography\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.\",\"icon\":\"fa fa-anchor\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"41677401\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"382d7417\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Strategy\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.\",\"icon\":\"fa fa-globe\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c383550\",\"elType\":\"widget\",\"settings\":{\"text\":\"See some more services\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24},\"background_color\":\"#d65050\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"35\",\"bottom\":\"12\",\"left\":\"35\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#d65050\",\"button_background_hover_color\":\"rgba(0,0,0,0)\",\"button_hover_border_color\":\"#d65050\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46b34fb0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f5f5f5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f7a7227\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d651766\",\"elType\":\"widget\",\"settings\":{\"title\":\"What else we provide?\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b751239\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fbbf795\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Global coverage\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.\",\"icon\":\"fa fa-globe\",\"view\":\"framed\",\"position\":\"left\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":30},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5db10670\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5835b5b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/tugboat-3705035_1920.jpg\",\"id\":184}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af86639\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#d65050\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c43a80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c271b4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-wordpress\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"00bd572\"},{\"social\":\"fa fa-weibo\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"b13f1e3\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(259,199,'_elementor_version','0.4'),(262,200,'_wp_page_template','page-templates/page_front-page.php'),(263,200,'_elementor_edit_mode','builder'),(264,200,'_elementor_template_type','post'),(265,200,'_elementor_data','[{\"id\":\"9a87bc4\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"8f173cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"667b1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"4cfe18a\",\"elType\":\"widget\",\"settings\":{\"title\":\"<br>Nautilus Maritime\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b98b98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"24085f1\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"a1a2048\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"868f10f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"676cf50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"MsoNoSpacing\\\">(\\u201cNautilus\\u201d) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a \\u201cclean slate\\u201d approach that is aligned with future marine towing and transportation realities including:<\\/p><p style=\\\"padding-left: 150px;\\\">Focus on regulatory compliance<br \\/>Encouraging a safety conscious work environment<br \\/>Responsible handling of equipment<br \\/>Focus on vessel fuel efficiency<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ece733\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"454770d5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"services\"},\"elements\":[{\"id\":\"49c465df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39c9553d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3584b5\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5453d6a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"1fc0243e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4da9bb52\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Photography\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.\",\"icon\":\"fa fa-anchor\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"41677401\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"382d7417\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Strategy\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.\",\"icon\":\"fa fa-globe\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c383550\",\"elType\":\"widget\",\"settings\":{\"text\":\"See some more services\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24},\"background_color\":\"#d65050\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"35\",\"bottom\":\"12\",\"left\":\"35\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#d65050\",\"button_background_hover_color\":\"rgba(0,0,0,0)\",\"button_hover_border_color\":\"#d65050\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46b34fb0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f5f5f5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f7a7227\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d651766\",\"elType\":\"widget\",\"settings\":{\"title\":\"What else we provide?\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b751239\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fbbf795\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Global coverage\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.\",\"icon\":\"fa fa-globe\",\"view\":\"framed\",\"position\":\"left\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":30},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5db10670\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5835b5b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/tugboat-3705035_1920.jpg\",\"id\":184}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af86639\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#d65050\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c43a80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c271b4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-wordpress\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"00bd572\"},{\"social\":\"fa fa-weibo\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"b13f1e3\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false}]'),(266,200,'_elementor_version','0.4'),(269,201,'_wp_page_template','page-templates/page_front-page.php'),(270,201,'_elementor_edit_mode','builder'),(271,201,'_elementor_template_type','post'),(272,201,'_elementor_data','[{\"id\":\"9a87bc4\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"8f173cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"667b1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"4cfe18a\",\"elType\":\"widget\",\"settings\":{\"title\":\"<br>Nautilus Maritime\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b98b98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"24085f1\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"a1a2048\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"868f10f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"676cf50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"MsoNoSpacing\\\">(\\u201cNautilus\\u201d) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a \\u201cclean slate\\u201d approach that is aligned with future marine towing and transportation realities including:<\\/p><p style=\\\"padding-left: 150px;\\\">Focus on regulatory compliance<br \\/>Encouraging a safety conscious work environment<br \\/>Responsible handling of equipment<br \\/>Focus on vessel fuel efficiency<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ece733\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"454770d5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"services\"},\"elements\":[{\"id\":\"49c465df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39c9553d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3584b5\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5453d6a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"1fc0243e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4da9bb52\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Photography\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.\",\"icon\":\"fa fa-anchor\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"41677401\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"382d7417\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Strategy\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.\",\"icon\":\"fa fa-globe\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c383550\",\"elType\":\"widget\",\"settings\":{\"text\":\"See some more services\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24},\"background_color\":\"#d65050\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"35\",\"bottom\":\"12\",\"left\":\"35\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#d65050\",\"button_background_hover_color\":\"rgba(0,0,0,0)\",\"button_hover_border_color\":\"#d65050\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46b34fb0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f5f5f5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f7a7227\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d651766\",\"elType\":\"widget\",\"settings\":{\"title\":\"What else we provide?\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b751239\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fbbf795\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Global coverage\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.\",\"icon\":\"fa fa-globe\",\"view\":\"framed\",\"position\":\"left\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":30},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5db10670\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5835b5b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/tugboat-3705035_1920.jpg\",\"id\":184}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af86639\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#d65050\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c43a80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c271b4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-wordpress\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"00bd572\"},{\"social\":\"fa fa-weibo\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"b13f1e3\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5ab511\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"f9da753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"455eaca\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"60d24e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nautilus has been founded by an experienced New York based team with strong industry relationships focused on providing general towing and marine transportation services. Our decades of experience will enable us to serve multiple general towing segments such as:<\\/p><ul><li>Ship docking<\\/li><li>Tug and barge assist<\\/li><li>Dredge support<\\/li><li>Dry bulk towing including sand, stone, and scrap<\\/li><li>Petroleum transportation as a third party, as needed<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(273,201,'_elementor_version','0.4'),(553,260,'_elementor_template_type','post'),(554,260,'_elementor_data','[{\"id\":\"9a87bc4\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f173cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"667b1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"4cfe18a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Maritime Corporation\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b98b98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"24085f1\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"a1a2048\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"868f10f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"676cf50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nautilus Maritime Corporation is a privately owned business group that controls four maritime subsidiaries that compliment each other. It\\u2019s core activities are general marine towing and assists; bunkering for workboats; servicing the nascent US offshore wind sector, and maritime consulting. The group was formed by three veteran captains joined by a senior banker with maritime experience. General maritime towing and capital markets are part of our corporate DNA which allows us to invest and enter other associated sectors with modern and efficient equipment with well trained and attentive crew.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ece733\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"454770d5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"services\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444}},\"elements\":[{\"id\":\"49c465df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39c9553d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3584b5\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5453d6a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"1fc0243e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4da9bb52\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Nautilus Marine Towing and Transportation LLC\",\"description_text\":\"A subsidiary providing marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, this subsidiary operates 24 hours and 7 days a week. We also seek to enter container barge transportation activity (primarily PANYNJ Ports to Howland Hook, Red Hook and Hunts Point), and support DSNY seaborne container activity supporting NYC solid waste management program. This group includes our government business development team.\",\"icon\":\"fa fa-anchor\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"41677401\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"382d7417\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Nautilus Marine Energy Transportation LLC\",\"description_text\":\"A petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Initially this subsidiary will supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators and receive bilge water for disposal. In the future this subsidiary seeks to capitalize on developing seaborne transportation needs for Liquid Natural Gas (LNG), and LNG bunkering for commercial vessels once adopted in the Northeast.\",\"icon\":\"fa fa-ship\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46b34fb0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f5f5f5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f7a7227\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d651766\",\"elType\":\"widget\",\"settings\":{\"title\":\"What else we provide?\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b751239\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fbbf795\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Nautilus Solutions\",\"description_text\":\"Through our years experience and network of key marine professionals, we offer advice and support for business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering, and maritime accounting.\",\"icon\":\"fa fa-compass\",\"view\":\"framed\",\"position\":\"left\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":30},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5db10670\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5835b5b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/tugboat-3705035_1920.jpg\",\"id\":184}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af86639\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#7a7a7a\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c43a80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c271b4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-linkedin\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"e41e029\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5ab511\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f9da753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46c4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/bay-boats-business-357508.jpg\",\"id\":202},\"image_size\":\"sydney-small-thumb\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"455eaca\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"60d24e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Who We Are<\\/h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(277,203,'_wp_page_template','page-templates/page_front-page.php'),(278,203,'_elementor_edit_mode','builder'),(279,203,'_elementor_template_type','post'),(280,203,'_elementor_data','[{\"id\":\"9a87bc4\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"8f173cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"667b1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"4cfe18a\",\"elType\":\"widget\",\"settings\":{\"title\":\"<br>Nautilus Maritime\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b98b98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"24085f1\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"a1a2048\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"868f10f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"676cf50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"MsoNoSpacing\\\">(\\u201cNautilus\\u201d) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a \\u201cclean slate\\u201d approach that is aligned with future marine towing and transportation realities including:<\\/p><p style=\\\"padding-left: 150px;\\\">Focus on regulatory compliance<br \\/>Encouraging a safety conscious work environment<br \\/>Responsible handling of equipment<br \\/>Focus on vessel fuel efficiency<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ece733\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"454770d5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"services\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\"},\"elements\":[{\"id\":\"49c465df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39c9553d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3584b5\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5453d6a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"1fc0243e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4da9bb52\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Photography\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.\",\"icon\":\"fa fa-anchor\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"41677401\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"382d7417\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Strategy\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.\",\"icon\":\"fa fa-globe\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c383550\",\"elType\":\"widget\",\"settings\":{\"text\":\"See some more services\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24},\"background_color\":\"#d65050\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"35\",\"bottom\":\"12\",\"left\":\"35\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#d65050\",\"button_background_hover_color\":\"rgba(0,0,0,0)\",\"button_hover_border_color\":\"#d65050\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46b34fb0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f5f5f5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f7a7227\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d651766\",\"elType\":\"widget\",\"settings\":{\"title\":\"What else we provide?\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b751239\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fbbf795\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Global coverage\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.\",\"icon\":\"fa fa-globe\",\"view\":\"framed\",\"position\":\"left\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":30},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5db10670\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5835b5b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/tugboat-3705035_1920.jpg\",\"id\":184}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af86639\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#d65050\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c43a80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c271b4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-wordpress\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"00bd572\"},{\"social\":\"fa fa-weibo\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"b13f1e3\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5ab511\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"f9da753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46c4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/bay-boats-business-357508.jpg\",\"id\":202},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"455eaca\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"60d24e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nautilus has been founded by an experienced New York based team with strong industry relationships focused on providing general towing and marine transportation services. Our decades of experience will enable us to serve multiple general towing segments such as:<\\/p><ul><li>Ship docking<\\/li><li>Tug and barge assist<\\/li><li>Dredge support<\\/li><li>Dry bulk towing including sand, stone, and scrap<\\/li><li>Petroleum transportation as a third party, as needed<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(281,203,'_elementor_version','0.4'),(403,231,'_elementor_template_type','post'),(404,231,'_elementor_data','[{\"id\":\"9a87bc4\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f173cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"667b1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"4cfe18a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Maritime\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b98b98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"24085f1\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"a1a2048\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"868f10f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"676cf50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"MsoNoSpacing\\\">(\\u201cNautilus\\u201d) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a \\u201cclean slate\\u201d approach that is aligned with future marine towing and transportation realities including:<\\/p><p style=\\\"padding-left: 150px;\\\">Focus on regulatory compliance<br \\/>Encouraging a safety conscious work environment<br \\/>Responsible handling of equipment<br \\/>Focus on vessel fuel efficiency<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ece733\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"454770d5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"services\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444}},\"elements\":[{\"id\":\"49c465df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39c9553d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3584b5\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5453d6a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"1fc0243e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4da9bb52\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Nautilus Towing & Transportation\",\"description_text\":\"Nautilus Marine Towing and Transportation are forming a newly established general marine towing and transportation company based in New York. As an independent harbor assist provider, Nautilus will enter an under served market. The petroleum transportation segment of the maritime industry experienced a large scale consolidation in between the years of 2006 and 2008.  Much of the consolidation consisted of large oil transportation companies acquiring the assets of smaller, independent, third party tug operators.  This consolidation left very few independent, New York based, general towing providers, and even fewer providers with vessels greater than 2,000 horsepower. \\n\\nIt is our intention, to take Nautilus on a growth path to a medium sized operation, by focusing on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways. \\n\",\"icon\":\"fa fa-anchor\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"41677401\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"382d7417\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Strategy\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.\",\"icon\":\"fa fa-globe\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46b34fb0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f5f5f5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f7a7227\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d651766\",\"elType\":\"widget\",\"settings\":{\"title\":\"What else we provide?\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b751239\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fbbf795\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Consulting\",\"description_text\":\"Nautilus offers consulting services through conducting qualitative and quantitative analysis to evaluate business decisions. Industries served include seaborne transportation, general marine and towing; workboat crewing, maritime shore side assets and container barge logistics.\",\"icon\":\"fa fa-compass\",\"view\":\"framed\",\"position\":\"left\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":30},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5db10670\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5835b5b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/tugboat-3705035_1920.jpg\",\"id\":184}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af86639\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#7a7a7a\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c43a80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c271b4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-linkedin\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"e41e029\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4635b93\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"5a8ea9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"414c74e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"9f15472\",\"elType\":\"widget\",\"settings\":{\"title\":\"Who We Are\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5ab511\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"f9da753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46c4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/bay-boats-business-357508.jpg\",\"id\":202},\"image_size\":\"sydney-small-thumb\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"455eaca\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"60d24e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nautilus has been founded by an experienced New York based team with strong industry relationships focused on providing general towing and marine transportation services. Our decades of experience will enable us to serve multiple general towing segments such as:<\\/p><ul><li>Ship docking<\\/li><li>Tug and barge assist<\\/li><li>Dredge support<\\/li><li>Dry bulk towing including sand, stone, and scrap<\\/li><li>Petroleum transportation as a third party, as needed<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(401,231,'_wp_page_template','page-templates/page_front-page.php'),(402,231,'_elementor_edit_mode','builder'),(289,205,'_wp_page_template','page-templates/page_front-page.php'),(290,205,'_elementor_edit_mode','builder'),(291,205,'_elementor_template_type','post'),(292,205,'_elementor_data','[{\"id\":\"9a87bc4\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"8f173cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"667b1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"4cfe18a\",\"elType\":\"widget\",\"settings\":{\"title\":\"<br>Nautilus Maritime\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b98b98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"24085f1\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"a1a2048\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"868f10f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"676cf50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"MsoNoSpacing\\\">(\\u201cNautilus\\u201d) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a \\u201cclean slate\\u201d approach that is aligned with future marine towing and transportation realities including:<\\/p><p style=\\\"padding-left: 150px;\\\">Focus on regulatory compliance<br \\/>Encouraging a safety conscious work environment<br \\/>Responsible handling of equipment<br \\/>Focus on vessel fuel efficiency<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ece733\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"454770d5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"services\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\"},\"elements\":[{\"id\":\"49c465df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39c9553d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3584b5\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5453d6a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"1fc0243e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4da9bb52\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Nautilus Towing & Transportation\",\"description_text\":\"Nautilus Marine Towing and Transportation are forming a newly established general marine towing and transportation company based in New York. As an independent harbor assist provider, Nautilus will enter an under served market. The petroleum transportation segment of the maritime industry experienced a large scale consolidation in between the years of 2006 and 2008.  Much of the consolidation consisted of large oil transportation companies acquiring the assets of smaller, independent, third party tug operators.  This consolidation left very few independent, New York based, general towing providers, and even fewer providers with vessels greater than 2,000 horsepower. \\n\\nIt is our intention, to take Nautilus on a growth path to a medium sized operation, by focusing on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways. \\n\",\"icon\":\"fa fa-anchor\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"41677401\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"382d7417\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Strategy\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.\",\"icon\":\"fa fa-globe\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1c383550\",\"elType\":\"widget\",\"settings\":{\"text\":\"See some more services\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":13},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":24},\"background_color\":\"#d65050\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"35\",\"bottom\":\"12\",\"left\":\"35\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_color\":\"#d65050\",\"button_background_hover_color\":\"rgba(0,0,0,0)\",\"button_hover_border_color\":\"#d65050\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46b34fb0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f5f5f5\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f7a7227\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d651766\",\"elType\":\"widget\",\"settings\":{\"title\":\"What else we provide?\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b751239\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fbbf795\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Consulting\",\"description_text\":\"Nautilus offers consulting services through conducting qualitative and quantitative analysis to evaluate business decisions. Industries served include seaborne transportation, general marine and towing; workboat crewing, maritime shore side assets and container barge logistics.\",\"icon\":\"fa fa-compass\",\"view\":\"framed\",\"position\":\"left\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":30},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5db10670\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5835b5b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/tugboat-3705035_1920.jpg\",\"id\":184}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af86639\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#d65050\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c43a80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c271b4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-wordpress\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"00bd572\"},{\"social\":\"fa fa-weibo\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"b13f1e3\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4635b93\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"5a8ea9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"414c74e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"9f15472\",\"elType\":\"widget\",\"settings\":{\"title\":\"Who We Are\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5ab511\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"f9da753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46c4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/bay-boats-business-357508.jpg\",\"id\":202},\"image_size\":\"medium_large\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"455eaca\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"60d24e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nautilus has been founded by an experienced New York based team with strong industry relationships focused on providing general towing and marine transportation services. Our decades of experience will enable us to serve multiple general towing segments such as:<\\/p><ul><li>Ship docking<\\/li><li>Tug and barge assist<\\/li><li>Dredge support<\\/li><li>Dry bulk towing including sand, stone, and scrap<\\/li><li>Petroleum transportation as a third party, as needed<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(551,260,'_wp_page_template','page-templates/page_front-page.php'),(552,260,'_elementor_edit_mode','builder'),(498,249,'_wp_page_template','page-templates/page_front-page.php'),(499,249,'_elementor_edit_mode','builder'),(500,249,'_elementor_template_type','post'),(501,249,'_elementor_data','[{\"id\":\"9a87bc4\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f173cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"667b1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"4cfe18a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Maritime\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b98b98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"24085f1\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"a1a2048\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"868f10f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"676cf50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"MsoNoSpacing\\\">(\\u201cNautilus\\u201d) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a \\u201cclean slate\\u201d approach that is aligned with future marine towing and transportation realities including:<\\/p><p style=\\\"padding-left: 150px;\\\">Focus on regulatory compliance<br \\/>Encouraging a safety conscious work environment<br \\/>Responsible handling of equipment<br \\/>Focus on vessel fuel efficiency<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ece733\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"454770d5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"services\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444}},\"elements\":[{\"id\":\"49c465df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39c9553d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3584b5\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5453d6a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"1fc0243e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4da9bb52\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Nautilus Marine Towing and Transportation LLC\",\"description_text\":\"A subsidiary providing marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, this subsidiary operates 24 hours and 7 days a week. We also seek to enter container barge transportation activity (primarily PANYNJ Ports to Howland Hook, Red Hook and Hunts Point), and support DSNY seaborne container activity supporting NYC solid waste management program. This group includes our government business development team.\",\"icon\":\"fa fa-anchor\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"41677401\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"382d7417\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Nautilus Marine Energy Transportation LLC\",\"description_text\":\"A petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Initially this subsidiary will supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators and receive bilge water for disposal. In the future this subsidiary seeks to capitalize on developing seaborne transportation needs for Liquid Natural Gas (LNG), and LNG bunkering for commercial vessels once adopted in the Northeast.\",\"icon\":\"fa fa-ship\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46b34fb0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f5f5f5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f7a7227\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d651766\",\"elType\":\"widget\",\"settings\":{\"title\":\"What else we provide?\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b751239\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fbbf795\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Nautilus Solutions\",\"description_text\":\"Through our years experience and network of key marine professionals, we offer advice and support for business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering, and maritime accounting.\",\"icon\":\"fa fa-compass\",\"view\":\"framed\",\"position\":\"left\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":30},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5db10670\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5835b5b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/tugboat-3705035_1920.jpg\",\"id\":184}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af86639\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#7a7a7a\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c43a80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c271b4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-linkedin\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"e41e029\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5ab511\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f9da753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46c4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/bay-boats-business-357508.jpg\",\"id\":202},\"image_size\":\"sydney-small-thumb\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"455eaca\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"60d24e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Who We Are<\\/h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(416,233,'_elementor_edit_mode','builder'),(417,233,'_elementor_template_type','post'),(418,233,'_elementor_data','[{\"id\":\"9a87bc4\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f173cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"667b1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"4cfe18a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Maritime\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b98b98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"24085f1\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"a1a2048\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"868f10f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"676cf50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"MsoNoSpacing\\\">(\\u201cNautilus\\u201d) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a \\u201cclean slate\\u201d approach that is aligned with future marine towing and transportation realities including:<\\/p><p style=\\\"padding-left: 150px;\\\">Focus on regulatory compliance<br \\/>Encouraging a safety conscious work environment<br \\/>Responsible handling of equipment<br \\/>Focus on vessel fuel efficiency<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ece733\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"454770d5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"services\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444}},\"elements\":[{\"id\":\"49c465df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39c9553d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3584b5\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5453d6a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"1fc0243e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4da9bb52\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Nautilus Towing & Transportation\",\"description_text\":\"Nautilus Marine Towing and Transportation are forming a newly established general marine towing and transportation company based in New York. As an independent harbor assist provider, Nautilus will enter an under served market. The petroleum transportation segment of the maritime industry experienced a large scale consolidation in between the years of 2006 and 2008.  Much of the consolidation consisted of large oil transportation companies acquiring the assets of smaller, independent, third party tug operators.  This consolidation left very few independent, New York based, general towing providers, and even fewer providers with vessels greater than 2,000 horsepower. \\n\\nIt is our intention, to take Nautilus on a growth path to a medium sized operation, by focusing on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways. \\n\",\"icon\":\"fa fa-anchor\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"41677401\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"382d7417\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Strategy\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.\",\"icon\":\"fa fa-globe\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46b34fb0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f5f5f5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f7a7227\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d651766\",\"elType\":\"widget\",\"settings\":{\"title\":\"What else we provide?\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b751239\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fbbf795\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Consulting\",\"description_text\":\"Nautilus offers consulting services through conducting qualitative and quantitative analysis to evaluate business decisions. Industries served include seaborne transportation, general marine and towing; workboat crewing, maritime shore side assets and container barge logistics.\",\"icon\":\"fa fa-compass\",\"view\":\"framed\",\"position\":\"left\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":30},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5db10670\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5835b5b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/tugboat-3705035_1920.jpg\",\"id\":184}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af86639\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#7a7a7a\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c43a80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c271b4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-linkedin\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"e41e029\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5ab511\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f9da753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46c4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/bay-boats-business-357508.jpg\",\"id\":202},\"image_size\":\"sydney-small-thumb\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"455eaca\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"60d24e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Who We Are<\\/h2><p>Nautilus has been founded by an experienced New York based team with strong industry relationships focused on providing general towing and marine transportation services. Our decades of experience will enable us to serve multiple general towing segments such as:<\\/p><ul><li>Ship docking<\\/li><li>Tug and barge assist<\\/li><li>Dredge support<\\/li><li>Dry bulk towing including sand, stone, and scrap<\\/li><li>Petroleum transportation as a third party, as needed<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(293,205,'_elementor_version','0.4'),(296,50,'_edit_last','1'),(297,209,'_um_custom_fields','a:6:{s:10:\"user_login\";a:15:{s:5:\"title\";s:8:\"Username\";s:7:\"metakey\";s:10:\"user_login\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:8:\"Username\";s:8:\"required\";i:1;s:6:\"public\";i:1;s:8:\"editable\";i:0;s:8:\"validate\";s:15:\"unique_username\";s:9:\"min_chars\";i:3;s:9:\"max_chars\";i:24;s:8:\"position\";s:1:\"1\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:10:\"user_email\";a:13:{s:5:\"title\";s:14:\"E-mail Address\";s:7:\"metakey\";s:10:\"user_email\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:14:\"E-mail Address\";s:8:\"required\";i:0;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:8:\"validate\";s:12:\"unique_email\";s:8:\"position\";s:1:\"4\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:13:\"user_password\";a:16:{s:5:\"title\";s:8:\"Password\";s:7:\"metakey\";s:13:\"user_password\";s:4:\"type\";s:8:\"password\";s:5:\"label\";s:8:\"Password\";s:8:\"required\";i:1;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:9:\"min_chars\";i:8;s:9:\"max_chars\";i:30;s:15:\"force_good_pass\";i:1;s:18:\"force_confirm_pass\";i:1;s:8:\"position\";s:1:\"5\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:10:\"first_name\";a:12:{s:5:\"title\";s:10:\"First Name\";s:7:\"metakey\";s:10:\"first_name\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:10:\"First Name\";s:8:\"required\";i:0;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:8:\"position\";s:1:\"2\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:9:\"last_name\";a:12:{s:5:\"title\";s:9:\"Last Name\";s:7:\"metakey\";s:9:\"last_name\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:9:\"Last Name\";s:8:\"required\";i:0;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:8:\"position\";s:1:\"3\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:9:\"_um_row_1\";a:4:{s:4:\"type\";s:3:\"row\";s:2:\"id\";s:9:\"_um_row_1\";s:8:\"sub_rows\";s:1:\"1\";s:4:\"cols\";s:1:\"1\";}}'),(298,209,'_um_mode','register'),(299,209,'_um_core','register'),(300,209,'_um_register_use_custom_settings','0'),(301,210,'_um_custom_fields','a:3:{s:8:\"username\";a:13:{s:5:\"title\";s:18:\"Username or E-mail\";s:7:\"metakey\";s:8:\"username\";s:4:\"type\";s:4:\"text\";s:5:\"label\";s:18:\"Username or E-mail\";s:8:\"required\";i:1;s:6:\"public\";i:1;s:8:\"editable\";i:0;s:8:\"validate\";s:24:\"unique_username_or_email\";s:8:\"position\";s:1:\"1\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:13:\"user_password\";a:16:{s:5:\"title\";s:8:\"Password\";s:7:\"metakey\";s:13:\"user_password\";s:4:\"type\";s:8:\"password\";s:5:\"label\";s:8:\"Password\";s:8:\"required\";i:1;s:6:\"public\";i:1;s:8:\"editable\";i:1;s:9:\"min_chars\";i:8;s:9:\"max_chars\";i:30;s:15:\"force_good_pass\";i:1;s:18:\"force_confirm_pass\";i:1;s:8:\"position\";s:1:\"2\";s:6:\"in_row\";s:9:\"_um_row_1\";s:10:\"in_sub_row\";s:1:\"0\";s:9:\"in_column\";s:1:\"1\";s:8:\"in_group\";s:0:\"\";}s:9:\"_um_row_1\";a:5:{s:4:\"type\";s:3:\"row\";s:2:\"id\";s:9:\"_um_row_1\";s:8:\"sub_rows\";s:1:\"1\";s:4:\"cols\";s:1:\"1\";s:6:\"origin\";s:9:\"_um_row_1\";}}'),(302,210,'_um_mode','login'),(303,210,'_um_core','login'),(304,210,'_um_login_use_custom_settings','0'),(305,211,'_um_custom_fields','a:1:{s:9:\"_um_row_1\";a:4:{s:4:\"type\";s:3:\"row\";s:2:\"id\";s:9:\"_um_row_1\";s:8:\"sub_rows\";s:1:\"1\";s:4:\"cols\";s:1:\"1\";}}'),(306,211,'_um_mode','profile'),(307,211,'_um_core','profile'),(308,211,'_um_profile_use_custom_settings','0'),(309,212,'_um_template','members'),(310,212,'_um_mode','directory'),(311,212,'_um_has_profile_photo','0'),(312,212,'_um_has_cover_photo','0'),(313,212,'_um_show_social','0'),(314,212,'_um_show_userinfo','0'),(315,212,'_um_show_tagline','0'),(316,212,'_um_search','0'),(317,212,'_um_userinfo_animate','1'),(318,212,'_um_sortby','user_registered_desc'),(319,212,'_um_profile_photo','1'),(320,212,'_um_cover_photos','1'),(321,212,'_um_show_name','1'),(322,212,'_um_search_filters',''),(323,212,'_um_directory_header','{total_users} Members'),(324,212,'_um_directory_header_single','{total_users} Member'),(325,212,'_um_directory_no_users','We are sorry. We cannot find any users who match your search criteria.'),(326,212,'_um_profiles_per_page','12'),(327,212,'_um_profiles_per_page_mobile','6'),(328,212,'_um_core','members'),(342,220,'_menu_item_xfn',''),(343,220,'_menu_item_url',''),(345,221,'_menu_item_type','post_type'),(346,221,'_menu_item_menu_item_parent','0'),(347,221,'_menu_item_object_id','2'),(348,221,'_menu_item_object','page'),(349,221,'_menu_item_target',''),(350,221,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(351,221,'_menu_item_xfn',''),(352,221,'_menu_item_url',''),(366,223,'_wp_attachment_custom_header_last_used_sydney','1543496911'),(367,223,'_wp_attachment_is_custom_header','sydney'),(372,214,'_edit_lock','1547062662:1'),(373,214,'_edit_last','1'),(374,214,'_wp_page_template','elementor_header_footer'),(375,214,'um_content_restriction','a:8:{s:26:\"_um_custom_access_settings\";s:1:\"0\";s:14:\"_um_accessible\";s:1:\"0\";s:19:\"_um_noaccess_action\";s:1:\"0\";s:30:\"_um_restrict_by_custom_message\";s:1:\"0\";s:27:\"_um_restrict_custom_message\";s:0:\"\";s:19:\"_um_access_redirect\";s:1:\"0\";s:23:\"_um_access_redirect_url\";s:0:\"\";s:28:\"_um_access_hide_from_queries\";s:1:\"0\";}'),(376,50,'um_content_restriction','a:8:{s:26:\"_um_custom_access_settings\";s:1:\"0\";s:14:\"_um_accessible\";s:1:\"0\";s:19:\"_um_noaccess_action\";s:1:\"0\";s:30:\"_um_restrict_by_custom_message\";s:1:\"0\";s:27:\"_um_restrict_custom_message\";s:0:\"\";s:19:\"_um_access_redirect\";s:1:\"0\";s:23:\"_um_access_redirect_url\";s:0:\"\";s:28:\"_um_access_hide_from_queries\";s:1:\"0\";}'),(377,50,'_elementor_edit_mode','builder'),(378,50,'_elementor_template_type','post'),(385,228,'_wp_page_template','elementor_header_footer'),(384,50,'_elementor_data','[{\"id\":\"5521033\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a4fc44f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"efd0ad4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Fleet\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbf48a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"e62dd8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0c1304\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/tugboat-3705035_1920.jpg\",\"id\":184}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca60d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ab4bbeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"A Focus on Innovation\\n\\nCompanies that leverage digital technologies to move people or goods faster and cheaper will be future winners. We seek to create and maintain a competitive advantage through advancements in gathering and analyzing logistics, weather and tidal data to plan further and more accurately. We believe this approach is a perfect union for businesses seeking a competitive edge and necessary for companies hoping to compete in the future.<\\/br><\\/br>\\nOn-going innovations to include:<\\/br><\\/br>\\n<u>Engineering and technology improvements<\\/u>\\n<ul>\\n \\t<li>For our fleet all tug and barge components analyzed and optimized. Applying latest technology to minimize fuel consumption and emissions without compromising high levels of performance.<\\/li>\\n \\t<li>New technologies are continually being developed to improve industrial and business operations. In shipping the aim is that they also make the industry safer and reduce its environmental impact.<\\/li>\\n \\t<li>Understanding and proposing technologies and emerging solutions that look set to make significant changes to commercial shipping in the near future.<\\/li>\\n<\\/ul><\\/br>\\nStudying and understanding well developed sensor technologies in other industries, how they are becoming increasingly intelligent, and how to incorporate in maritime practices. It provides better situational awareness and offers our crew\\u00a0 the power to carry out better decision-making.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(386,228,'_elementor_edit_mode','builder'),(387,228,'_elementor_template_type','post'),(388,228,'_elementor_data','[{\"id\":\"5521033\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a4fc44f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"efd0ad4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Fleet\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbf48a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"e62dd8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0c1304\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/tugboat-3705035_1920.jpg\",\"id\":184}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca60d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ab4bbeb\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(389,50,'_elementor_version','0.4'),(391,229,'_wp_page_template','elementor_header_footer'),(392,229,'_elementor_edit_mode','builder'),(393,229,'_elementor_template_type','post'),(394,229,'_elementor_data','[{\"id\":\"5521033\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a4fc44f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"efd0ad4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Fleet\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbf48a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"e62dd8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0c1304\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/tugboat-3705035_1920.jpg\",\"id\":184}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca60d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ab4bbeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(395,229,'_elementor_version','0.4'),(405,231,'_elementor_version','0.4'),(415,233,'_wp_page_template','page-templates/page_front-page.php'),(409,232,'_wp_page_template','page-templates/page_front-page.php'),(410,232,'_elementor_edit_mode','builder'),(411,232,'_elementor_template_type','post'),(412,232,'_elementor_data','[{\"id\":\"9a87bc4\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f173cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"667b1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"4cfe18a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Maritime\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b98b98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"24085f1\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"a1a2048\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"868f10f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"676cf50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"MsoNoSpacing\\\">(\\u201cNautilus\\u201d) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a \\u201cclean slate\\u201d approach that is aligned with future marine towing and transportation realities including:<\\/p><p style=\\\"padding-left: 150px;\\\">Focus on regulatory compliance<br \\/>Encouraging a safety conscious work environment<br \\/>Responsible handling of equipment<br \\/>Focus on vessel fuel efficiency<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ece733\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"454770d5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"services\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444}},\"elements\":[{\"id\":\"49c465df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39c9553d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3584b5\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5453d6a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"1fc0243e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4da9bb52\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Nautilus Towing & Transportation\",\"description_text\":\"Nautilus Marine Towing and Transportation are forming a newly established general marine towing and transportation company based in New York. As an independent harbor assist provider, Nautilus will enter an under served market. The petroleum transportation segment of the maritime industry experienced a large scale consolidation in between the years of 2006 and 2008.  Much of the consolidation consisted of large oil transportation companies acquiring the assets of smaller, independent, third party tug operators.  This consolidation left very few independent, New York based, general towing providers, and even fewer providers with vessels greater than 2,000 horsepower. \\n\\nIt is our intention, to take Nautilus on a growth path to a medium sized operation, by focusing on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways. \\n\",\"icon\":\"fa fa-anchor\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"41677401\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"382d7417\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Strategy\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.\",\"icon\":\"fa fa-globe\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46b34fb0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f5f5f5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f7a7227\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d651766\",\"elType\":\"widget\",\"settings\":{\"title\":\"What else we provide?\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b751239\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fbbf795\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Consulting\",\"description_text\":\"Nautilus offers consulting services through conducting qualitative and quantitative analysis to evaluate business decisions. Industries served include seaborne transportation, general marine and towing; workboat crewing, maritime shore side assets and container barge logistics.\",\"icon\":\"fa fa-compass\",\"view\":\"framed\",\"position\":\"left\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":30},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5db10670\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5835b5b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/tugboat-3705035_1920.jpg\",\"id\":184}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af86639\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#7a7a7a\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c43a80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c271b4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-linkedin\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"e41e029\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4635b93\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"5a8ea9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"414c74e\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"9f15472\",\"elType\":\"widget\",\"settings\":{\"title\":\"Who We Are\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5ab511\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"f9da753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46c4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/bay-boats-business-357508.jpg\",\"id\":202},\"image_size\":\"sydney-small-thumb\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"455eaca\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"60d24e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Who We Are<\\/h2><p>Nautilus has been founded by an experienced New York based team with strong industry relationships focused on providing general towing and marine transportation services. Our decades of experience will enable us to serve multiple general towing segments such as:<\\/p><ul><li>Ship docking<\\/li><li>Tug and barge assist<\\/li><li>Dredge support<\\/li><li>Dry bulk towing including sand, stone, and scrap<\\/li><li>Petroleum transportation as a third party, as needed<\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(413,232,'_elementor_version','0.4'),(419,233,'_elementor_version','0.4'),(421,214,'_elementor_edit_mode','builder'),(422,214,'_elementor_template_type','post'),(423,234,'_edit_lock','1547061567:1'),(424,234,'_edit_last','1'),(425,234,'_wp_page_template','elementor_header_footer'),(426,234,'um_content_restriction','a:8:{s:26:\"_um_custom_access_settings\";s:1:\"0\";s:14:\"_um_accessible\";s:1:\"0\";s:19:\"_um_noaccess_action\";s:1:\"0\";s:30:\"_um_restrict_by_custom_message\";s:1:\"0\";s:27:\"_um_restrict_custom_message\";s:0:\"\";s:19:\"_um_access_redirect\";s:1:\"0\";s:23:\"_um_access_redirect_url\";s:0:\"\";s:28:\"_um_access_hide_from_queries\";s:1:\"0\";}'),(427,234,'_elementor_edit_mode','builder'),(428,234,'_elementor_template_type','post'),(439,234,'_elementor_data','[{\"id\":\"7efac4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"eb43700\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"6f46963\",\"elType\":\"widget\",\"settings\":{\"title\":\"<strong><span class=\\\"elementor-inline-editing\\\" data-elementor-setting-key=\\\"title_text\\\" data-elementor-inline-editing-toolbar=\\\"none\\\">Nautilus Towing &amp; Transportation LLC<\\/span><\\/strong>\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3c0fba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, we operates 24 hours and 7 days a week.<\\/p><p>As a new independent provider of third party marine towing services we are based in New York harbor and operate along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment.<\\/p><p>Over the past 12 years, the New York harbor towing market experienced a sizable consolidation by larger towing and transportation companies. This consolidation left very few independent operators. The lack of responsible third party services with larger horsepower is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. After extensively studying needs of the towing market in New York harbor, understanding the increased regulatory and compliance environment, and its adverse impact on older tonnage, Nautilus adopted the \\u201cclean slate\\u201d approach that is aligned with the future of marine towing and transportation realities including:<\\/p><ul><li>Focus on regulatory compliance<\\/li><li>Best ensuring a safety conscious work environment<\\/li><li>Responsible handling of equipment<\\/li><li>Focus on fuel efficiency<\\/li><\\/ul>\",\"description_text\":\"<h3 class=\\\"elementor-icon-box-title\\\" style=\\\"font-weight: 500; font-size: 16px; margin-bottom: 10px; white-space: normal;\\\"><span class=\\\"elementor-inline-editing\\\" data-elementor-setting-key=\\\"title_text\\\" data-elementor-inline-editing-toolbar=\\\"none\\\">Nautilus Towing &amp; Transportation<\\/span><\\/h3><span style=\\\"white-space: normal;\\\">Nautilus Marine Towing and Transportation are forming a newly established general marine towing and transportation company based in New York. As an independent harbor assist provider, Nautilus will enter an under served market. The petroleum transportation segment of the maritime industry experienced a large scale consolidation in between the years of 2006 and 2008. Much of the consolidation consisted of large oil transportation companies acquiring the assets of smaller, independent, third party tug operators. This consolidation left very few independent, New York based, general towing providers, and even fewer providers with vessels greater than 2,000 horsepower. It is our intention, to take Nautilus on a growth path to a medium sized operation, by focusing on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways.<\\/span>\",\"typography_typography\":\"custom\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f82c744\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"776d601\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/12\\/oie_4172628HKpa0fQU.jpg\",\"id\":241}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(456,240,'_elementor_edit_mode','builder'),(457,240,'_elementor_template_type','post'),(458,240,'_elementor_data','[{\"id\":\"7efac4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"eb43700\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"c3c0fba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 class=\\\"elementor-icon-box-title\\\" style=\\\"font-weight: 500; font-size: 16px; margin-bottom: 10px;\\\"><strong><span class=\\\"elementor-inline-editing\\\" data-elementor-setting-key=\\\"title_text\\\" data-elementor-inline-editing-toolbar=\\\"none\\\">Nautilus Towing &amp; Transportation<\\/span><\\/strong><\\/h3><p class=\\\"elementor-icon-box-description elementor-inline-editing\\\" style=\\\"margin-bottom: 0px; text-align: left;\\\" data-elementor-setting-key=\\\"description_text\\\">Nautilus Marine Towing and Transportation are forming a newly established general marine towing and transportation company based in New York. As an independent harbor assist provider, Nautilus will enter an under served market. The petroleum transportation segment of the maritime industry experienced a large scale consolidation in between the years of 2006 and 2008. Much of the consolidation consisted of large oil transportation companies acquiring the assets of smaller, independent, third party tug operators. This consolidation left very few independent, New York based, general towing providers, and even fewer providers with vessels greater than 2,000 horsepower. It is our intention, to take Nautilus on a growth path to a medium sized operation, by focusing on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways.<\\/p>\",\"description_text\":\"<h3 class=\\\"elementor-icon-box-title\\\" style=\\\"font-weight: 500; font-size: 16px; margin-bottom: 10px; white-space: normal;\\\"><span class=\\\"elementor-inline-editing\\\" data-elementor-setting-key=\\\"title_text\\\" data-elementor-inline-editing-toolbar=\\\"none\\\">Nautilus Towing &amp; Transportation<\\/span><\\/h3><span style=\\\"white-space: normal;\\\">Nautilus Marine Towing and Transportation are forming a newly established general marine towing and transportation company based in New York. As an independent harbor assist provider, Nautilus will enter an under served market. The petroleum transportation segment of the maritime industry experienced a large scale consolidation in between the years of 2006 and 2008. Much of the consolidation consisted of large oil transportation companies acquiring the assets of smaller, independent, third party tug operators. This consolidation left very few independent, New York based, general towing providers, and even fewer providers with vessels greater than 2,000 horsepower. It is our intention, to take Nautilus on a growth path to a medium sized operation, by focusing on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways.<\\/span>\",\"typography_typography\":\"custom\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f82c744\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"776d601\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/12\\/nytug-e1543940389798.jpg\",\"id\":236}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(455,240,'_wp_page_template','elementor_header_footer'),(440,238,'_wp_page_template','elementor_header_footer'),(441,238,'_elementor_edit_mode','builder'),(442,238,'_elementor_template_type','post'),(443,238,'_elementor_data','[{\"id\":\"7efac4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"eb43700\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"c3c0fba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 class=\\\"elementor-icon-box-title\\\" style=\\\"font-weight: 500; font-size: 16px; margin-bottom: 10px; background-color: #bcbcbc;\\\"><span class=\\\"elementor-inline-editing\\\" data-elementor-setting-key=\\\"title_text\\\" data-elementor-inline-editing-toolbar=\\\"none\\\">Nautilus Towing &amp; Transportation<\\/span><\\/h3><p class=\\\"elementor-icon-box-description elementor-inline-editing\\\" style=\\\"margin-bottom: 0px; background-color: #bcbcbc; text-align: left;\\\" data-elementor-setting-key=\\\"description_text\\\">Nautilus Marine Towing and Transportation are forming a newly established general marine towing and transportation company based in New York. As an independent harbor assist provider, Nautilus will enter an under served market. The petroleum transportation segment of the maritime industry experienced a large scale consolidation in between the years of 2006 and 2008. Much of the consolidation consisted of large oil transportation companies acquiring the assets of smaller, independent, third party tug operators. This consolidation left very few independent, New York based, general towing providers, and even fewer providers with vessels greater than 2,000 horsepower. It is our intention, to take Nautilus on a growth path to a medium sized operation, by focusing on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways.<\\/p>\",\"description_text\":\"<h3 class=\\\"elementor-icon-box-title\\\" style=\\\"font-weight: 500; font-size: 16px; margin-bottom: 10px; white-space: normal;\\\"><span class=\\\"elementor-inline-editing\\\" data-elementor-setting-key=\\\"title_text\\\" data-elementor-inline-editing-toolbar=\\\"none\\\">Nautilus Towing &amp; Transportation<\\/span><\\/h3><span style=\\\"white-space: normal;\\\">Nautilus Marine Towing and Transportation are forming a newly established general marine towing and transportation company based in New York. As an independent harbor assist provider, Nautilus will enter an under served market. The petroleum transportation segment of the maritime industry experienced a large scale consolidation in between the years of 2006 and 2008. Much of the consolidation consisted of large oil transportation companies acquiring the assets of smaller, independent, third party tug operators. This consolidation left very few independent, New York based, general towing providers, and even fewer providers with vessels greater than 2,000 horsepower. It is our intention, to take Nautilus on a growth path to a medium sized operation, by focusing on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways.<\\/span>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f82c744\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"776d601\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/12\\/nytug-e1543940389798.jpg\",\"id\":236}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(444,234,'_elementor_version','0.4'),(916,51,'_elementor_css','a:4:{s:4:\"time\";i:1547062199;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(732,288,'_wp_page_template','default'),(733,288,'_elementor_data','[{\"id\":\"3f2c913\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"30a78cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1dbb6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2019\\/01\\/puscher-verkauf-08.jpg\",\"id\":280}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9350aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"036495a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(459,240,'_elementor_version','0.4'),(463,242,'_wp_page_template','elementor_header_footer'),(464,242,'_elementor_edit_mode','builder'),(465,242,'_elementor_template_type','post'),(466,242,'_elementor_data','[{\"id\":\"7efac4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"eb43700\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"c3c0fba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3 class=\\\"elementor-icon-box-title\\\" style=\\\"font-weight: 500; font-size: 16px; margin-bottom: 10px;\\\"><strong><span class=\\\"elementor-inline-editing\\\" data-elementor-setting-key=\\\"title_text\\\" data-elementor-inline-editing-toolbar=\\\"none\\\">Nautilus Towing &amp; Transportation<\\/span><\\/strong><\\/h3><p class=\\\"elementor-icon-box-description elementor-inline-editing\\\" style=\\\"margin-bottom: 0px; text-align: left;\\\" data-elementor-setting-key=\\\"description_text\\\">Nautilus Marine Towing and Transportation are forming a newly established general marine towing and transportation company based in New York. As an independent harbor assist provider, Nautilus will enter an under served market. The petroleum transportation segment of the maritime industry experienced a large scale consolidation in between the years of 2006 and 2008. Much of the consolidation consisted of large oil transportation companies acquiring the assets of smaller, independent, third party tug operators. This consolidation left very few independent, New York based, general towing providers, and even fewer providers with vessels greater than 2,000 horsepower. It is our intention, to take Nautilus on a growth path to a medium sized operation, by focusing on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways.<\\/p>\",\"description_text\":\"<h3 class=\\\"elementor-icon-box-title\\\" style=\\\"font-weight: 500; font-size: 16px; margin-bottom: 10px; white-space: normal;\\\"><span class=\\\"elementor-inline-editing\\\" data-elementor-setting-key=\\\"title_text\\\" data-elementor-inline-editing-toolbar=\\\"none\\\">Nautilus Towing &amp; Transportation<\\/span><\\/h3><span style=\\\"white-space: normal;\\\">Nautilus Marine Towing and Transportation are forming a newly established general marine towing and transportation company based in New York. As an independent harbor assist provider, Nautilus will enter an under served market. The petroleum transportation segment of the maritime industry experienced a large scale consolidation in between the years of 2006 and 2008. Much of the consolidation consisted of large oil transportation companies acquiring the assets of smaller, independent, third party tug operators. This consolidation left very few independent, New York based, general towing providers, and even fewer providers with vessels greater than 2,000 horsepower. It is our intention, to take Nautilus on a growth path to a medium sized operation, by focusing on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways.<\\/span>\",\"typography_typography\":\"custom\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f82c744\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"776d601\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/12\\/oie_4172628HKpa0fQU.jpg\",\"id\":241}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(467,242,'_elementor_version','0.4'),(469,243,'_wp_page_template','elementor_header_footer'),(470,243,'_elementor_edit_mode','builder'),(471,243,'_elementor_template_type','post'),(472,243,'_elementor_data','[{\"id\":\"7efac4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"eb43700\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"6f46963\",\"elType\":\"widget\",\"settings\":{\"title\":\"<strong><span class=\\\"elementor-inline-editing\\\" data-elementor-setting-key=\\\"title_text\\\" data-elementor-inline-editing-toolbar=\\\"none\\\">Nautilus Towing &amp; Transportation<\\/span><\\/strong>\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3c0fba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"elementor-icon-box-description elementor-inline-editing\\\" style=\\\"margin-bottom: 0px; text-align: left;\\\" data-elementor-setting-key=\\\"description_text\\\">Nautilus Marine Towing and Transportation are forming a newly established general marine towing and transportation company based in New York. As an independent harbor assist provider, Nautilus will enter an under served market. The petroleum transportation segment of the maritime industry experienced a large scale consolidation in between the years of 2006 and 2008. Much of the consolidation consisted of large oil transportation companies acquiring the assets of smaller, independent, third party tug operators. This consolidation left very few independent, New York based, general towing providers, and even fewer providers with vessels greater than 2,000 horsepower. It is our intention, to take Nautilus on a growth path to a medium sized operation, by focusing on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways.<\\/p>\",\"description_text\":\"<h3 class=\\\"elementor-icon-box-title\\\" style=\\\"font-weight: 500; font-size: 16px; margin-bottom: 10px; white-space: normal;\\\"><span class=\\\"elementor-inline-editing\\\" data-elementor-setting-key=\\\"title_text\\\" data-elementor-inline-editing-toolbar=\\\"none\\\">Nautilus Towing &amp; Transportation<\\/span><\\/h3><span style=\\\"white-space: normal;\\\">Nautilus Marine Towing and Transportation are forming a newly established general marine towing and transportation company based in New York. As an independent harbor assist provider, Nautilus will enter an under served market. The petroleum transportation segment of the maritime industry experienced a large scale consolidation in between the years of 2006 and 2008. Much of the consolidation consisted of large oil transportation companies acquiring the assets of smaller, independent, third party tug operators. This consolidation left very few independent, New York based, general towing providers, and even fewer providers with vessels greater than 2,000 horsepower. It is our intention, to take Nautilus on a growth path to a medium sized operation, by focusing on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways.<\\/span>\",\"typography_typography\":\"custom\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f82c744\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"776d601\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/12\\/oie_4172628HKpa0fQU.jpg\",\"id\":241}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(473,243,'_elementor_version','0.4'),(476,244,'_wp_attached_file','2018/11/cropped-night-79624_1920.jpg'),(477,244,'_wp_attachment_context','custom-header'),(478,244,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1105;s:4:\"file\";s:36:\"2018/11/cropped-night-79624_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"cropped-night-79624_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"cropped-night-79624_1920-300x173.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"cropped-night-79624_1920-768x442.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:442;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"cropped-night-79624_1920-1024x589.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:589;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"hestia-blog\";a:4:{s:4:\"file\";s:36:\"cropped-night-79624_1920-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:17:\"attachment_parent\";i:190;}'),(479,244,'_wp_attachment_custom_header_last_used_orfeo','1543963003'),(480,244,'_wp_attachment_is_custom_header','orfeo'),(484,51,'_thumbnail_id','0'),(485,246,'_wp_attached_file','2018/11/cropped-oie_QwA4hmAdSI8Z-1.png'),(486,246,'_wp_attachment_context','custom-logo'),(487,246,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:404;s:6:\"height\";i:171;s:4:\"file\";s:38:\"2018/11/cropped-oie_QwA4hmAdSI8Z-1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"cropped-oie_QwA4hmAdSI8Z-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"cropped-oie_QwA4hmAdSI8Z-1-300x127.png\";s:5:\"width\";i:300;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"hestia-blog\";a:4:{s:4:\"file\";s:38:\"cropped-oie_QwA4hmAdSI8Z-1-360x171.png\";s:5:\"width\";i:360;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(502,249,'_elementor_version','0.4'),(503,249,'_thumbnail_id','0'),(512,251,'_wp_page_template','elementor_header_footer'),(504,250,'_wp_page_template','elementor_header_footer'),(505,250,'_elementor_edit_mode','builder'),(506,250,'_elementor_template_type','post'),(507,250,'_elementor_data','[{\"id\":\"5521033\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a4fc44f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"efd0ad4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Fleet\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbf48a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"e62dd8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0c1304\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/tugboat-3705035_1920.jpg\",\"id\":184}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca60d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ab4bbeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A Focus on Innovation<\\/p><p>\\u00a0<\\/p><p>Companies that leverage digital technologies to move people or goods faster and cheaper will be future winners. We seek to create and maintain a competitive advantage through advancements in gathering and analyzing logistics, weather and tidal data to plan further and more accurately. We believe this approach is a perfect union for businesses seeking a competitive edge and necessary for companies hoping to compete in the future.<\\/p><p>\\u00a0<\\/p><p>\\u00a0<\\/p><p>On-going innovations to include:<\\/p><p>\\u00a0<\\/p><p>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0 <u>Engineering and technology improvements<\\/u><\\/p><ul><li>For our fleet all tug and barge components analyzed and optimized. Applying latest technology to minimize fuel consumption and emissions without compromising high levels of performance.<\\/li><li>New technologies are continually being developed to improve industrial and business operations. In shipping the aim is that they also make the industry safer and reduce its environmental impact.<\\/li><li>Understanding and proposing technologies and emerging solutions that look set to make significant changes to commercial shipping in the near future.<\\/li><\\/ul><p>Studying and understanding well developed sensor technologies in other industries, how they are becoming increasingly intelligent, and how to incorporate in maritime practices. It provides better situational awareness and offers our crew\\u00a0 the power to carry out better decision-making.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(508,250,'_elementor_version','0.4'),(513,251,'_elementor_edit_mode','builder'),(514,251,'_elementor_template_type','post'),(515,251,'_elementor_data','[{\"id\":\"5521033\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a4fc44f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"efd0ad4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Fleet\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbf48a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"e62dd8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0c1304\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/tugboat-3705035_1920.jpg\",\"id\":184}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca60d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ab4bbeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"A Focus on Innovation\\n\\nCompanies that leverage digital technologies to move people or goods faster and cheaper will be future winners. We seek to create and maintain a competitive advantage through advancements in gathering and analyzing logistics, weather and tidal data to plan further and more accurately. We believe this approach is a perfect union for businesses seeking a competitive edge and necessary for companies hoping to compete in the future.<\\/br><\\/br>\\nOn-going innovations to include:<\\/br><\\/br>\\n<u>Engineering and technology improvements<\\/u>\\n<ul>\\n \\t<li>For our fleet all tug and barge components analyzed and optimized. Applying latest technology to minimize fuel consumption and emissions without compromising high levels of performance.<\\/li>\\n \\t<li>New technologies are continually being developed to improve industrial and business operations. In shipping the aim is that they also make the industry safer and reduce its environmental impact.<\\/li>\\n \\t<li>Understanding and proposing technologies and emerging solutions that look set to make significant changes to commercial shipping in the near future.<\\/li>\\n<\\/ul>\\nStudying and understanding well developed sensor technologies in other industries, how they are becoming increasingly intelligent, and how to incorporate in maritime practices. It provides better situational awareness and offers our crew\\u00a0 the power to carry out better decision-making.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(516,251,'_elementor_version','0.4'),(519,252,'_wp_page_template','elementor_header_footer'),(520,252,'_elementor_edit_mode','builder'),(521,252,'_elementor_template_type','post'),(522,252,'_elementor_data','[{\"id\":\"5521033\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"a4fc44f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"efd0ad4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Fleet\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bbf48a5\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"e62dd8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"d0c1304\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/tugboat-3705035_1920.jpg\",\"id\":184}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ca60d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"ab4bbeb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"A Focus on Innovation\\n\\nCompanies that leverage digital technologies to move people or goods faster and cheaper will be future winners. We seek to create and maintain a competitive advantage through advancements in gathering and analyzing logistics, weather and tidal data to plan further and more accurately. We believe this approach is a perfect union for businesses seeking a competitive edge and necessary for companies hoping to compete in the future.<\\/br><\\/br>\\nOn-going innovations to include:<\\/br><\\/br>\\n<u>Engineering and technology improvements<\\/u>\\n<ul>\\n \\t<li>For our fleet all tug and barge components analyzed and optimized. Applying latest technology to minimize fuel consumption and emissions without compromising high levels of performance.<\\/li>\\n \\t<li>New technologies are continually being developed to improve industrial and business operations. In shipping the aim is that they also make the industry safer and reduce its environmental impact.<\\/li>\\n \\t<li>Understanding and proposing technologies and emerging solutions that look set to make significant changes to commercial shipping in the near future.<\\/li>\\n<\\/ul><\\/br>\\nStudying and understanding well developed sensor technologies in other industries, how they are becoming increasingly intelligent, and how to incorporate in maritime practices. It provides better situational awareness and offers our crew\\u00a0 the power to carry out better decision-making.\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(523,252,'_elementor_version','0.4'),(526,2,'_elementor_edit_mode','builder'),(527,2,'_elementor_template_type','post'),(529,2,'_elementor_data','[{\"id\":\"3d429bd0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2783e4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4484cdb4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Nautilus Marine Towing and Transportation<\\/strong> focuses on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways and terminals.<\\/p><p>Our approach is one of experienced New York based operators, with strong industry relationships, providing general towing and marine transportation services. With capabilities to serve segments of (i) ship \\/ barge \\/ general vessel assist, (ii) construction and dredge support, and (iii) petroleum transportation<\\/p><p>Our operating strategy and experienced management team provide the fundamental tools to deliver superior service over time, safeguard the environment and comply with an increasing nexus of regulation.<\\/p><p>Our vision is guided by a goal of being and unquestionable customer centric company that maintains realistic and transparent relationships with customers, partners and employees.<\\/p><p>Our years of helm and engineering experience mitigate risk during sensitive maneuvering and docking operations. The result is a responsible, safe and efficient operation limiting risk and of disruption of services.<\\/p><p>Our captains are experienced in local conditions. They are trained and highly experienced for the specific environments and locations they will be working in. This enables them to deal with situations that might arise from unique conditions.<\\/p><p>Nautilus seeks to be a leader of innovative and environmentally friendly high quality maritime services. We continually seek to incorporate different technologies, both on and off the water, to provide redundancies and better assure timeliness.<\\/p><p>Wherever we go, our experience, craftsmanship, safety focus and rigorous training means our customers can rely on us to provide undisturbed marine services.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(822,304,'_wp_page_template','default'),(823,304,'_elementor_edit_mode','builder'),(824,304,'_elementor_template_type','post'),(825,304,'_elementor_data','[{\"id\":\"3d429bd0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2783e4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4484cdb4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Nautilus Marine Towing and Transportation<\\/strong> focuses on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways and terminals.<\\/p><p>Our approach is one of experienced New York based operators, with strong industry relationships, providing general towing and marine transportation services. With capabilities to serve segments of (i) ship \\/ barge \\/ general vessel assist, (ii) construction and dredge support, and (iii) petroleum transportation<\\/p><p>Our operating strategy and experienced management team provide the fundamental tools to deliver superior service over time, safeguard the environment and comply with an increasing nexus of regulation.<\\/p><p>Our vision is guided by a goal of being and unquestionable customer centric company that maintains realistic and transparent relationships with customers, partners and employees.<\\/p><p>Our years of helm and engineering experience mitigate risk during sensitive maneuvering and docking operations. The result is a responsible, safe and efficient operation limiting risk and of disruption of services.<\\/p><p>Our captains are experienced in local conditions. They are trained and highly experienced for the specific environments and locations they will be working in. This enables them to deal with situations that might arise from unique conditions.<\\/p><p>Nautilus seeks to be a leader of innovative and environmentally friendly high quality maritime services. We continually seek to incorporate different technologies, both on and off the water, to provide redundancies and better assure timeliness.<\\/p><p>Wherever we go, our experience, craftsmanship, safety focus and rigorous training means our customers can rely on us to provide undisturbed marine services.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(530,253,'_wp_page_template','default'),(531,253,'_elementor_edit_mode','builder'),(532,253,'_elementor_template_type','post'),(534,253,'_elementor_data','[{\"id\":\"3d429bd0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2783e4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4484cdb4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:<\\/p><blockquote><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi\\u00f1a coladas. (And gettin\' caught in the rain.)<\\/p><\\/blockquote><p>...or something like this:<\\/p><blockquote><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.<\\/p><\\/blockquote>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(535,2,'_elementor_version','0.4'),(536,254,'_wp_page_template','default'),(537,254,'_elementor_edit_mode','builder'),(538,254,'_elementor_template_type','post'),(539,254,'_elementor_data','[{\"id\":\"3d429bd0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2783e4df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4484cdb4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Nautilus Marine Towing and Transportation LLC <\\/strong>is a newly established general marine towing and transportation company based in New York. As an independent harbor assist provider, Nautilus is entering an under served market. The petroleum transportation segment of the maritime industry experienced a large scale consolidation in between the years of 2006 and 2008.\\u00a0 Much of the consolidation consisted of large oil transportation companies acquiring the assets of smaller, independent, third party tug operators.\\u00a0 This consolidation left very few independent, New York based, general towing providers, and even fewer providers with vessels greater than 2,000 horsepower.\\u00a0<\\/p><p>It is our intention, to take Nautilus on a growth path to a medium sized operation, by focusing on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways.<\\/p><p>Our approach is one of experienced New York based operators, with strong industry relationships, providing general towing and marine transportation services. With the capabilities to serve such market segments as (i) ship \\/ barge \\/ general vessel assist, (ii) construction and dredge support, and (iii) petroleum transportation.<\\/p><p>Our operating strategy and experienced management team provide the fundamental tools to deliver superior service over time, safeguard the environment and comply with an increasing nexus of regulation.<\\/p><p>Our vision is guided by a goal of being an unquestionable customer centric company that maintains realistic and transparent relationships with customers, partners and employees.<\\/p><p><u>Leadership and Trust<\\/u><\\/p><p>Nautilus Marine Towing and Transportation is a U.S. owned and operated company providing services in the New York Harbor region. It is a privately owned, founded and based in New York. The partners coming together to take Nautilus on a growth path include mariners and former owners with a deep understanding of the local and regional maritime industry, and complimented with an experienced senior banker formerly covering maritime activity.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(540,254,'_elementor_version','0.4'),(543,256,'_wp_attached_file','2018/12/logo650x160.png'),(544,256,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:649;s:6:\"height\";i:160;s:4:\"file\";s:23:\"2018/12/logo650x160.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"logo650x160-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"logo650x160-300x74.png\";s:5:\"width\";i:300;s:6:\"height\";i:74;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:23:\"logo650x160-550x160.png\";s:5:\"width\";i:550;s:6:\"height\";i:160;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:22:\"logo650x160-230x57.png\";s:5:\"width\";i:230;s:6:\"height\";i:57;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:22:\"logo650x160-350x86.png\";s:5:\"width\";i:350;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:23:\"logo650x160-480x118.png\";s:5:\"width\";i:480;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(547,258,'_wp_attached_file','2018/12/oie_yWKMN54E63Rh.png'),(548,258,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:697;s:6:\"height\";i:194;s:4:\"file\";s:28:\"2018/12/oie_yWKMN54E63Rh.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"oie_yWKMN54E63Rh-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"oie_yWKMN54E63Rh-300x84.png\";s:5:\"width\";i:300;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:28:\"oie_yWKMN54E63Rh-550x194.png\";s:5:\"width\";i:550;s:6:\"height\";i:194;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:27:\"oie_yWKMN54E63Rh-230x64.png\";s:5:\"width\";i:230;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:27:\"oie_yWKMN54E63Rh-350x97.png\";s:5:\"width\";i:350;s:6:\"height\";i:97;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:28:\"oie_yWKMN54E63Rh-480x134.png\";s:5:\"width\";i:480;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(549,259,'_wp_trash_meta_status','publish'),(550,259,'_wp_trash_meta_time','1545227979'),(555,260,'_elementor_version','0.4'),(556,260,'_thumbnail_id','0'),(558,261,'_wp_page_template','page-templates/page_front-page.php'),(559,261,'_elementor_edit_mode','builder'),(560,261,'_elementor_template_type','post'),(561,261,'_elementor_data','[{\"id\":\"9a87bc4\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f173cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"667b1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"4cfe18a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Maritime Corporation\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b98b98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"24085f1\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"a1a2048\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"868f10f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"676cf50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nautilus Maritime Corporation is a privately owned business group that controls four maritime subsidiaries that compliment each other. It\\u2019s core activities are general marine towing and assists; bunkering for workboats; servicing the nascent US offshore wind sector, and maritime consulting. The group was formed by three veteran captains joined by a senior banker with maritime experience. General maritime towing and capital markets are part of our corporate DNA which allows us to invest and enter other associated sectors with modern and efficient equipment with well trained and attentive crew.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ece733\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"454770d5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"services\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":444}},\"elements\":[{\"id\":\"49c465df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39c9553d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3584b5\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5453d6a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"extended\"},\"elements\":[{\"id\":\"1fc0243e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4da9bb52\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Nautilus Marine Towing and Transportation LLC\",\"description_text\":\"A subsidiary providing marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, this subsidiary operates 24 hours and 7 days a week. We also seek to enter container barge transportation activity (primarily PANYNJ Ports to Howland Hook, Red Hook and Hunts Point), and support DSNY seaborne container activity supporting NYC solid waste management program. This group includes our government business development team.\\n\\n(\\u201cNautilus\\u201d) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a \\u201cclean slate\\u201d approach that is aligned with future marine towing and transportation realities including:\\n\\u25cf Focus on regulatory compliance\\n\\u25cf Encouraging a safety conscious work environment\\n\\u25cf Responsible handling of equipment\\n\\u25cf Focus on vessel fuel efficiency\\n\",\"icon\":\"fa fa-anchor\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\",\"text_align\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"41677401\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"382d7417\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Nautilus Marine Energy Transportation LLC\",\"description_text\":\"A petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Initially this subsidiary will supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators and receive bilge water for disposal. In the future this subsidiary seeks to capitalize on developing seaborne transportation needs for Liquid Natural Gas (LNG), and LNG bunkering for commercial vessels once adopted in the Northeast.\",\"icon\":\"fa fa-ship\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":20},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46b34fb0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f5f5f5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f7a7227\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d651766\",\"elType\":\"widget\",\"settings\":{\"title\":\"What else we provide?\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b751239\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fbbf795\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Nautilus Solutions\",\"description_text\":\"Through our years experience and network of key marine professionals, we offer advice and support for business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering, and maritime accounting.\",\"icon\":\"fa fa-compass\",\"view\":\"framed\",\"position\":\"left\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":30},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5db10670\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5835b5b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/tugboat-3705035_1920.jpg\",\"id\":184}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af86639\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#7a7a7a\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c43a80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c271b4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-linkedin\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"e41e029\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5ab511\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f9da753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46c4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/bay-boats-business-357508.jpg\",\"id\":202},\"image_size\":\"sydney-small-thumb\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"455eaca\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"60d24e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Who We Are<\\/h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(562,261,'_elementor_version','0.4'),(563,261,'_thumbnail_id','0'),(582,264,'_elementor_data','[{\"id\":\"9a87bc4\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f173cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"667b1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"4cfe18a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Maritime Corporation\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b98b98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"24085f1\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"a1a2048\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"868f10f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"676cf50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nautilus Maritime Corporation is a privately owned business group that controls four maritime subsidiaries that compliment each other. It\\u2019s core activities are general marine towing and assists; bunkering for workboats; servicing the nascent US offshore wind sector, and maritime consulting. The group was formed by three veteran captains joined by a senior banker with maritime experience. General maritime towing and capital markets are part of our corporate DNA which allows us to invest and enter other associated sectors with modern and efficient equipment with well trained and attentive crew.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ece733\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"454770d5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"services\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"49c465df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39c9553d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3584b5\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ce82b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\"},\"elements\":[{\"id\":\"08f6b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bcb858\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-anchor\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"710cc4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Marine Towing and Transportation LLC<\\/strong><\\/p><p>A subsidiary providing marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, this subsidiary operates 24 hours and 7 days a week. We also seek to enter container barge transportation activity (primarily PANYNJ Ports to Howland Hook, Red Hook and Hunts Point), and support DSNY seaborne container activity supporting NYC solid waste management program. This group includes our government business development team.(\\u201cNautilus\\u201d) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a \\u201cclean slate\\u201d approach that is aligned with future marine towing and transportation realities including:<\\/p><ul><li>Focus on regulatory compliance<\\/li><li>Encouraging a safety conscious work environment<\\/li><li>Responsible handling of equipment<\\/li><li>Focus on vessel fuel efficiency<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"136fd09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cbc7b73\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-ship\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"68dcfba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Marine Energy Transportation LLC<\\/strong><\\/p><p>A petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Initially this subsidiary will supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators and receive bilge water for disposal. In the future this subsidiary seeks to capitalize on developing seaborne transportation needs for Liquid Natural Gas (LNG), and LNG bunkering for commercial vessels once adopted in the Northeast.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46b34fb0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f5f5f5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f7a7227\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d651766\",\"elType\":\"widget\",\"settings\":{\"title\":\"What else we provide?\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b751239\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fbbf795\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Nautilus Solutions\",\"description_text\":\"Through our years experience and network of key marine professionals, we offer advice and support for business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering, and maritime accounting.\",\"icon\":\"fa fa-compass\",\"view\":\"framed\",\"position\":\"left\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":30},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5db10670\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5835b5b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/tugboat-3705035_1920.jpg\",\"id\":184}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af86639\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#7a7a7a\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c43a80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c271b4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-linkedin\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"e41e029\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5ab511\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f9da753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46c4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/bay-boats-business-357508.jpg\",\"id\":202},\"image_size\":\"sydney-small-thumb\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"455eaca\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"60d24e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Who We Are<\\/h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(576,263,'_elementor_version','0.4'),(577,263,'_thumbnail_id','0'),(579,264,'_wp_page_template','page-templates/page_front-page.php'),(580,264,'_elementor_edit_mode','builder'),(581,264,'_elementor_template_type','post'),(572,263,'_wp_page_template','page-templates/page_front-page.php'),(573,263,'_elementor_edit_mode','builder'),(574,263,'_elementor_template_type','post'),(575,263,'_elementor_data','[{\"id\":\"9a87bc4\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f173cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"667b1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"4cfe18a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Maritime Corporation\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b98b98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"24085f1\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"a1a2048\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"868f10f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"676cf50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nautilus Maritime Corporation is a privately owned business group that controls four maritime subsidiaries that compliment each other. It\\u2019s core activities are general marine towing and assists; bunkering for workboats; servicing the nascent US offshore wind sector, and maritime consulting. The group was formed by three veteran captains joined by a senior banker with maritime experience. General maritime towing and capital markets are part of our corporate DNA which allows us to invest and enter other associated sectors with modern and efficient equipment with well trained and attentive crew.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ece733\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"454770d5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"services\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"49c465df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39c9553d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3584b5\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ce82b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\"},\"elements\":[{\"id\":\"08f6b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bcb858\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-anchor\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"710cc4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Nautilus Marine Energy Transportation LLC<\\/strong><\\/p><p>A subsidiary providing marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, this subsidiary operates 24 hours and 7 days a week. We also seek to enter container barge transportation activity (primarily PANYNJ Ports to Howland Hook, Red Hook and Hunts Point), and support DSNY seaborne container activity supporting NYC solid waste management program. This group includes our government business development team.(\\u201cNautilus\\u201d) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a \\u201cclean slate\\u201d approach that is aligned with future marine towing and transportation realities including:<\\/p><ul><li>Focus on regulatory compliance<\\/li><li>Encouraging a safety conscious work environment<\\/li><li>Responsible handling of equipment<\\/li><li>Focus on vessel fuel efficiency<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"136fd09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cbc7b73\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-ship\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"68dcfba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Nautilus Marine Energy Transportation LLC<\\/strong><\\/p><p>A petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Initially this subsidiary will supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators and receive bilge water for disposal. In the future this subsidiary seeks to capitalize on developing seaborne transportation needs for Liquid Natural Gas (LNG), and LNG bunkering for commercial vessels once adopted in the Northeast.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46b34fb0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f5f5f5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f7a7227\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d651766\",\"elType\":\"widget\",\"settings\":{\"title\":\"What else we provide?\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b751239\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fbbf795\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Nautilus Solutions\",\"description_text\":\"Through our years experience and network of key marine professionals, we offer advice and support for business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering, and maritime accounting.\",\"icon\":\"fa fa-compass\",\"view\":\"framed\",\"position\":\"left\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":30},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5db10670\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5835b5b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/tugboat-3705035_1920.jpg\",\"id\":184}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af86639\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#7a7a7a\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c43a80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c271b4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-linkedin\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"e41e029\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5ab511\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f9da753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46c4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/bay-boats-business-357508.jpg\",\"id\":202},\"image_size\":\"sydney-small-thumb\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"455eaca\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"60d24e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Who We Are<\\/h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(583,264,'_elementor_version','0.4'),(584,264,'_thumbnail_id','0'),(587,265,'_wp_page_template','page-templates/page_front-page.php'),(588,265,'_elementor_edit_mode','builder'),(589,265,'_elementor_template_type','post'),(590,265,'_elementor_data','[{\"id\":\"9a87bc4\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f173cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"667b1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"4cfe18a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Maritime Corporation\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b98b98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"24085f1\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"a1a2048\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"868f10f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"676cf50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nautilus Maritime Corporation is a privately owned business group that controls four maritime subsidiaries that compliment each other. It\\u2019s core activities are general marine towing and assists; bunkering for workboats; servicing the nascent US offshore wind sector, and maritime consulting. The group was formed by three veteran captains joined by a senior banker with maritime experience. General maritime towing and capital markets are part of our corporate DNA which allows us to invest and enter other associated sectors with modern and efficient equipment with well trained and attentive crew.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ece733\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"454770d5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"services\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"49c465df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39c9553d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3584b5\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ce82b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\"},\"elements\":[{\"id\":\"08f6b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bcb858\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-anchor\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"710cc4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Marine Towing and Transportation LLC<\\/strong><\\/p><p>A subsidiary providing marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, this subsidiary operates 24 hours and 7 days a week. We also seek to enter container barge transportation activity (primarily PANYNJ Ports to Howland Hook, Red Hook and Hunts Point), and support DSNY seaborne container activity supporting NYC solid waste management program. This group includes our government business development team.(\\u201cNautilus\\u201d) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a \\u201cclean slate\\u201d approach that is aligned with future marine towing and transportation realities including:<\\/p><ul><li>Focus on regulatory compliance<\\/li><li>Encouraging a safety conscious work environment<\\/li><li>Responsible handling of equipment<\\/li><li>Focus on vessel fuel efficiency<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"136fd09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cbc7b73\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-ship\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"68dcfba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Marine Energy Transportation LLC<\\/strong><\\/p><p>A petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Initially this subsidiary will supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators and receive bilge water for disposal. In the future this subsidiary seeks to capitalize on developing seaborne transportation needs for Liquid Natural Gas (LNG), and LNG bunkering for commercial vessels once adopted in the Northeast.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46b34fb0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f5f5f5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f7a7227\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d651766\",\"elType\":\"widget\",\"settings\":{\"title\":\"What else we provide?\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b751239\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fbbf795\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Nautilus Solutions\",\"description_text\":\"Through our years experience and network of key marine professionals, we offer advice and support for business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering, and maritime accounting.\",\"icon\":\"fa fa-compass\",\"view\":\"framed\",\"position\":\"left\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":30},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5db10670\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5835b5b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/tugboat-3705035_1920.jpg\",\"id\":184}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af86639\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#7a7a7a\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c43a80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c271b4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-linkedin\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"e41e029\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5ab511\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f9da753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46c4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/bay-boats-business-357508.jpg\",\"id\":202},\"image_size\":\"sydney-small-thumb\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"455eaca\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"60d24e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Who We Are<\\/h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(591,265,'_elementor_version','0.4'),(592,265,'_thumbnail_id','0'),(603,267,'_wp_page_template','page-templates/page_front-page.php'),(595,266,'_wp_page_template','page-templates/page_front-page.php'),(596,266,'_elementor_edit_mode','builder'),(597,266,'_elementor_template_type','post'),(598,266,'_elementor_data','[{\"id\":\"9a87bc4\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f173cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"667b1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"4cfe18a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Maritime Corporation\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b98b98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"24085f1\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"a1a2048\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"868f10f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"676cf50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nautilus Maritime Corporation is a privately owned business group that controls four maritime subsidiaries that compliment each other. It\\u2019s core activities are general marine towing and assists; bunkering for workboats; servicing the nascent US offshore wind sector, and maritime consulting. The group was formed by three veteran captains joined by a senior banker with maritime experience. General maritime towing and capital markets are part of our corporate DNA which allows us to invest and enter other associated sectors with modern and efficient equipment with well trained and attentive crew.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ece733\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"454770d5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"services\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"49c465df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39c9553d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3584b5\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ce82b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\"},\"elements\":[{\"id\":\"08f6b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bcb858\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-anchor\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"710cc4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Marine Towing and Transportation LLC<\\/strong><\\/p><p>A subsidiary providing marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, this subsidiary operates 24 hours and 7 days a week. We also seek to enter container barge transportation activity (primarily PANYNJ Ports to Howland Hook, Red Hook and Hunts Point), and support DSNY seaborne container activity supporting NYC solid waste management program. This group includes our government business development team.<\\/p><p>(\\u201cNautilus\\u201d) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a \\u201cclean slate\\u201d approach that is aligned with future marine towing and transportation realities including:<\\/p><ul><li>Focus on regulatory compliance<\\/li><li>Encouraging a safety conscious work environment<\\/li><li>Responsible handling of equipment<\\/li><li>Focus on vessel fuel efficiency<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"136fd09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cbc7b73\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-ship\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"68dcfba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Marine Energy Transportation LLC<\\/strong><\\/p><p>A petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Initially this subsidiary will supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators and receive bilge water for disposal. In the future this subsidiary seeks to capitalize on developing seaborne transportation needs for Liquid Natural Gas (LNG), and LNG bunkering for commercial vessels once adopted in the Northeast.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46b34fb0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f5f5f5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f7a7227\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d651766\",\"elType\":\"widget\",\"settings\":{\"title\":\"What else we provide?\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b751239\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1fbbf795\",\"elType\":\"widget\",\"settings\":{\"title_text\":\"Nautilus Solutions\",\"description_text\":\"Through our years experience and network of key marine professionals, we offer advice and support for business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering, and maritime accounting.\",\"icon\":\"fa fa-compass\",\"view\":\"framed\",\"position\":\"left\",\"primary_color\":\"#d65050\",\"icon_space\":{\"unit\":\"px\",\"size\":30},\"icon_size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":21},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":10},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"title_typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":false},{\"id\":\"5db10670\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5835b5b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/tugboat-3705035_1920.jpg\",\"id\":184}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af86639\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#7a7a7a\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c43a80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c271b4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-linkedin\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"e41e029\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5ab511\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f9da753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46c4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/bay-boats-business-357508.jpg\",\"id\":202},\"image_size\":\"sydney-small-thumb\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"455eaca\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"60d24e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Who We Are<\\/h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(599,266,'_elementor_version','0.4'),(600,266,'_thumbnail_id','0'),(604,267,'_elementor_edit_mode','builder'),(605,267,'_elementor_template_type','post'),(606,267,'_elementor_data','[{\"id\":\"9a87bc4\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f173cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"667b1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"4cfe18a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Maritime Corporation\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b98b98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"24085f1\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"a1a2048\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"868f10f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"676cf50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nautilus Maritime Corporation is a privately owned business group that controls four maritime subsidiaries that compliment each other. It\\u2019s core activities are general marine towing and assists; bunkering for workboats; servicing the nascent US offshore wind sector, and maritime consulting. The group was formed by three veteran captains joined by a senior banker with maritime experience. General maritime towing and capital markets are part of our corporate DNA which allows us to invest and enter other associated sectors with modern and efficient equipment with well trained and attentive crew.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ece733\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"454770d5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"services\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"49c465df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39c9553d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3584b5\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ce82b2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\"},\"elements\":[{\"id\":\"08f6b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bcb858\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-anchor\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"710cc4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Marine Towing and Transportation LLC<\\/strong><\\/p><p>A subsidiary providing marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, this subsidiary operates 24 hours and 7 days a week. We also seek to enter container barge transportation activity (primarily PANYNJ Ports to Howland Hook, Red Hook and Hunts Point), and support DSNY seaborne container activity supporting NYC solid waste management program. This group includes our government business development team.<\\/p><p>(\\u201cNautilus\\u201d) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a \\u201cclean slate\\u201d approach that is aligned with future marine towing and transportation realities including:<\\/p><ul><li>Focus on regulatory compliance<\\/li><li>Encouraging a safety conscious work environment<\\/li><li>Responsible handling of equipment<\\/li><li>Focus on vessel fuel efficiency<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"136fd09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cbc7b73\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-ship\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"68dcfba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Marine Energy Transportation LLC<\\/strong><\\/p><p>A petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Initially this subsidiary will supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators and receive bilge water for disposal. In the future this subsidiary seeks to capitalize on developing seaborne transportation needs for Liquid Natural Gas (LNG), and LNG bunkering for commercial vessels once adopted in the Northeast.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0373b06\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-compass\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"a705a22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Solutions<\\/strong><\\/p><p>Through our years experience and network of key marine professionals, we offer advice and support for business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering, and maritime accounting.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46b34fb0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f5f5f5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f7a7227\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d651766\",\"elType\":\"widget\",\"settings\":{\"title\":\"What else we provide?\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b751239\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false},{\"id\":\"5db10670\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5835b5b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/tugboat-3705035_1920.jpg\",\"id\":184}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af86639\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#7a7a7a\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c43a80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c271b4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-linkedin\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"e41e029\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5ab511\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f9da753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46c4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/bay-boats-business-357508.jpg\",\"id\":202},\"image_size\":\"sydney-small-thumb\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"455eaca\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"60d24e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Who We Are<\\/h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(607,267,'_elementor_version','0.4'),(608,267,'_thumbnail_id','0'),(616,269,'_wp_page_template','page-templates/page_front-page.php'),(617,269,'_elementor_edit_mode','builder'),(618,269,'_elementor_template_type','post'),(619,269,'_elementor_data','[{\"id\":\"9a87bc4\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f173cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"667b1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"4cfe18a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Maritime Corporation\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b98b98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"24085f1\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"a1a2048\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"868f10f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"676cf50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nautilus Maritime Corporation is a privately owned business group that controls four maritime subsidiaries that compliment each other. It\\u2019s core activities are general marine towing and assists; bunkering for workboats; servicing the nascent US offshore wind sector, and maritime consulting. The group was formed by three veteran captains joined by a senior banker with maritime experience. General maritime towing and capital markets are part of our corporate DNA which allows us to invest and enter other associated sectors with modern and efficient equipment with well trained and attentive crew.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ece733\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"454770d5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"services\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"49c465df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39c9553d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3584b5\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ce82b2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\"},\"elements\":[{\"id\":\"08f6b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bcb858\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-anchor\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"710cc4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Marine Towing and Transportation LLC<\\/strong><\\/p><p>A subsidiary providing marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, this subsidiary operates 24 hours and 7 days a week. We also seek to enter container barge transportation activity (primarily PANYNJ Ports to Howland Hook, Red Hook and Hunts Point), and support DSNY seaborne container activity supporting NYC solid waste management program. This group includes our government business development team.<\\/p><p>(\\u201cNautilus\\u201d) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a \\u201cclean slate\\u201d approach that is aligned with future marine towing and transportation realities including:<\\/p><ul><li>Focus on regulatory compliance<\\/li><li>Encouraging a safety conscious work environment<\\/li><li>Responsible handling of equipment<\\/li><li>Focus on vessel fuel efficiency<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"136fd09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cbc7b73\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-ship\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"68dcfba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Marine Energy Transportation LLC<\\/strong><\\/p><p>A petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Initially this subsidiary will supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators and receive bilge water for disposal. In the future this subsidiary seeks to capitalize on developing seaborne transportation needs for Liquid Natural Gas (LNG), and LNG bunkering for commercial vessels once adopted in the Northeast.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0373b06\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-compass\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"a705a22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Solutions<\\/strong><\\/p><p>Through our years experience and network of key marine professionals, we offer advice and support for business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering, and maritime accounting.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c17a690\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"341cc7d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Offshore Wind, LLC<\\/strong><\\/p><p>A subsidiary established to take advantage of the nascent Northeast Offshore Wind projects and developments. Nautilus Offshore Wind seeks to provide a complete range of maritime and offshore wind power infrastructure support services. Nautilus Offshore Wind seeks to provide a complete range of offshore wind project support services addressing the tetralogy of their life cycle. We are looking to enter the wind sector as a provider of maritime assets and logistics to support 4 phases of offshore wind projects: (1) Survey, (2) Construction, (3) Operations and Maintenance (O&amp;M), and (4) Decommissioning.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46b34fb0\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#f5f5f5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f7a7227\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"4d651766\",\"elType\":\"widget\",\"settings\":{\"title\":\"What else we provide?\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b751239\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false},{\"id\":\"5db10670\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5835b5b8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/tugboat-3705035_1920.jpg\",\"id\":184}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af86639\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#7a7a7a\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c43a80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c271b4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-linkedin\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"e41e029\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5ab511\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f9da753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46c4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/bay-boats-business-357508.jpg\",\"id\":202},\"image_size\":\"sydney-small-thumb\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"455eaca\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"60d24e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Who We Are<\\/h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(620,269,'_elementor_version','0.4'),(621,269,'_thumbnail_id','0'),(623,270,'_wp_attached_file','2018/12/oie_eUCBoGULxzbd.png'),(624,270,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:718;s:6:\"height\";i:195;s:4:\"file\";s:28:\"2018/12/oie_eUCBoGULxzbd.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"oie_eUCBoGULxzbd-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"oie_eUCBoGULxzbd-300x81.png\";s:5:\"width\";i:300;s:6:\"height\";i:81;s:9:\"mime-type\";s:9:\"image/png\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:28:\"oie_eUCBoGULxzbd-550x195.png\";s:5:\"width\";i:550;s:6:\"height\";i:195;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:27:\"oie_eUCBoGULxzbd-230x62.png\";s:5:\"width\";i:230;s:6:\"height\";i:62;s:9:\"mime-type\";s:9:\"image/png\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:27:\"oie_eUCBoGULxzbd-350x95.png\";s:5:\"width\";i:350;s:6:\"height\";i:95;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:28:\"oie_eUCBoGULxzbd-480x130.png\";s:5:\"width\";i:480;s:6:\"height\";i:130;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(625,271,'_wp_trash_meta_status','publish'),(626,271,'_wp_trash_meta_time','1545231060'),(635,273,'_elementor_version','0.4'),(636,273,'_thumbnail_id','0'),(880,315,'_wp_page_template','page-templates/page_front-page.php'),(881,315,'_elementor_edit_mode','builder'),(645,275,'_wp_page_template','elementor_header_footer'),(646,275,'_elementor_edit_mode','builder'),(639,274,'_wp_page_template','elementor_header_footer'),(640,274,'_elementor_edit_mode','builder'),(641,274,'_elementor_template_type','post'),(642,274,'_elementor_data','[{\"id\":\"7efac4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"eb43700\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"6f46963\",\"elType\":\"widget\",\"settings\":{\"title\":\"<strong><span class=\\\"elementor-inline-editing\\\" data-elementor-setting-key=\\\"title_text\\\" data-elementor-inline-editing-toolbar=\\\"none\\\">Nautilus Towing &amp; Transportation<\\/span><\\/strong>\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3c0fba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, we operates 24 hours and 7 days a week.<\\/p><p>As a new independent provider of third party marine towing services we are based in New York harbor and operate along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment.<\\/p><p>Over the past 12 years, the New York harbor towing market experienced a sizable consolidation by larger towing and transportation companies. This consolidation left very few independent operators. The lack of responsible third party services with larger horsepower is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. After extensively studying needs of the towing market in New York harbor, understanding the increased regulatory and compliance environment, and its adverse impact on older tonnage, Nautilus adopted the \\u201cclean slate\\u201d approach that is aligned with the future of marine towing and transportation realities including:<\\/p><ul><li>Focus on regulatory compliance<\\/li><li>Best ensuring a safety conscious work environment<\\/li><li>Responsible handling of equipment<\\/li><li>Focus on fuel efficiency<\\/li><\\/ul>\",\"description_text\":\"<h3 class=\\\"elementor-icon-box-title\\\" style=\\\"font-weight: 500; font-size: 16px; margin-bottom: 10px; white-space: normal;\\\"><span class=\\\"elementor-inline-editing\\\" data-elementor-setting-key=\\\"title_text\\\" data-elementor-inline-editing-toolbar=\\\"none\\\">Nautilus Towing &amp; Transportation<\\/span><\\/h3><span style=\\\"white-space: normal;\\\">Nautilus Marine Towing and Transportation are forming a newly established general marine towing and transportation company based in New York. As an independent harbor assist provider, Nautilus will enter an under served market. The petroleum transportation segment of the maritime industry experienced a large scale consolidation in between the years of 2006 and 2008. Much of the consolidation consisted of large oil transportation companies acquiring the assets of smaller, independent, third party tug operators. This consolidation left very few independent, New York based, general towing providers, and even fewer providers with vessels greater than 2,000 horsepower. It is our intention, to take Nautilus on a growth path to a medium sized operation, by focusing on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways.<\\/span>\",\"typography_typography\":\"custom\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f82c744\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"776d601\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/12\\/oie_4172628HKpa0fQU.jpg\",\"id\":241}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(643,274,'_elementor_version','0.4'),(644,274,'_elementor_css','a:5:{s:4:\"time\";i:1546521151;s:5:\"fonts\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(647,275,'_elementor_template_type','post'),(648,275,'_elementor_data','[{\"id\":\"7efac4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"eb43700\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"6f46963\",\"elType\":\"widget\",\"settings\":{\"title\":\"<strong><span class=\\\"elementor-inline-editing\\\" data-elementor-setting-key=\\\"title_text\\\" data-elementor-inline-editing-toolbar=\\\"none\\\">Nautilus Towing &amp; Transportation<\\/span><\\/strong>\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3c0fba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, we operates 24 hours and 7 days a week.<\\/p><p>As a new independent provider of third party marine towing services we are based in New York harbor and operate along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment.<\\/p><p>Over the past 12 years, the New York harbor towing market experienced a sizable consolidation by larger towing and transportation companies. This consolidation left very few independent operators. The lack of responsible third party services with larger horsepower is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. After extensively studying needs of the towing market in New York harbor, understanding the increased regulatory and compliance environment, and its adverse impact on older tonnage, Nautilus adopted the \\u201cclean slate\\u201d approach that is aligned with the future of marine towing and transportation realities including:<\\/p><ul><li>Focus on regulatory compliance<\\/li><li>Best ensuring a safety conscious work environment<\\/li><li>Responsible handling of equipment<\\/li><li>Focus on fuel efficiency<\\/li><\\/ul>\",\"description_text\":\"<h3 class=\\\"elementor-icon-box-title\\\" style=\\\"font-weight: 500; font-size: 16px; margin-bottom: 10px; white-space: normal;\\\"><span class=\\\"elementor-inline-editing\\\" data-elementor-setting-key=\\\"title_text\\\" data-elementor-inline-editing-toolbar=\\\"none\\\">Nautilus Towing &amp; Transportation<\\/span><\\/h3><span style=\\\"white-space: normal;\\\">Nautilus Marine Towing and Transportation are forming a newly established general marine towing and transportation company based in New York. As an independent harbor assist provider, Nautilus will enter an under served market. The petroleum transportation segment of the maritime industry experienced a large scale consolidation in between the years of 2006 and 2008. Much of the consolidation consisted of large oil transportation companies acquiring the assets of smaller, independent, third party tug operators. This consolidation left very few independent, New York based, general towing providers, and even fewer providers with vessels greater than 2,000 horsepower. It is our intention, to take Nautilus on a growth path to a medium sized operation, by focusing on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways.<\\/span>\",\"typography_typography\":\"custom\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f82c744\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"776d601\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/12\\/oie_4172628HKpa0fQU.jpg\",\"id\":241}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(649,275,'_elementor_version','0.4'),(650,276,'_edit_lock','1546522821:1'),(651,276,'_edit_last','1'),(652,276,'um_content_restriction','a:8:{s:26:\"_um_custom_access_settings\";s:1:\"0\";s:14:\"_um_accessible\";s:1:\"0\";s:19:\"_um_noaccess_action\";s:1:\"0\";s:30:\"_um_restrict_by_custom_message\";s:1:\"0\";s:27:\"_um_restrict_custom_message\";s:0:\"\";s:19:\"_um_access_redirect\";s:1:\"0\";s:23:\"_um_access_redirect_url\";s:0:\"\";s:28:\"_um_access_hide_from_queries\";s:1:\"0\";}'),(653,276,'_elementor_edit_mode','builder'),(654,276,'_elementor_template_type','post'),(655,276,'_wp_page_template','elementor_header_footer'),(656,276,'_elementor_data','[{\"id\":\"bdebaf9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5f053db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"62de050\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Marine Energy Transportation LLC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f2c913\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"30a78cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1dbb6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2019\\/01\\/puscher-verkauf-08.jpg\",\"id\":280}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9350aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"036495a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(657,276,'_elementor_version','0.4'),(658,278,'_elementor_edit_mode','builder'),(659,278,'_elementor_template_type','post'),(660,278,'_wp_page_template','default'),(661,278,'_elementor_data','[{\"id\":\"3f2c913\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"30a78cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1dbb6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/tugboat-89600_1920.jpg\",\"id\":185}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9350aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"036495a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(662,278,'_elementor_version','0.4'),(671,281,'_elementor_template_type','post'),(672,281,'_wp_page_template','default'),(673,281,'_elementor_data','[{\"id\":\"3f2c913\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"30a78cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1dbb6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2019\\/01\\/puscher-verkauf-08.jpg\",\"id\":280}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9350aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"7951a5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Marine Energy Transportation LLC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"036495a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(730,288,'_elementor_edit_mode','builder'),(731,288,'_elementor_template_type','post'),(724,287,'_elementor_edit_mode','builder'),(670,281,'_elementor_edit_mode','builder'),(668,280,'_wp_attached_file','2019/01/puscher-verkauf-08.jpg'),(669,280,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1140;s:6:\"height\";i:855;s:4:\"file\";s:30:\"2019/01/puscher-verkauf-08.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"puscher-verkauf-08-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"puscher-verkauf-08-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"puscher-verkauf-08-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"puscher-verkauf-08-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:30:\"puscher-verkauf-08-830x623.jpg\";s:5:\"width\";i:830;s:6:\"height\";i:623;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:30:\"puscher-verkauf-08-550x400.jpg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:30:\"puscher-verkauf-08-230x173.jpg\";s:5:\"width\";i:230;s:6:\"height\";i:173;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:30:\"puscher-verkauf-08-350x263.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:30:\"puscher-verkauf-08-480x360.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(674,281,'_elementor_version','0.4'),(675,282,'_menu_item_type','post_type'),(676,282,'_menu_item_menu_item_parent','284'),(677,282,'_menu_item_object_id','276'),(678,282,'_menu_item_object','page'),(679,282,'_menu_item_target',''),(680,282,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(681,282,'_menu_item_xfn',''),(682,282,'_menu_item_url',''),(705,282,'obfx_menu_icon',''),(684,283,'_menu_item_type','post_type'),(685,283,'_menu_item_menu_item_parent','284'),(686,283,'_menu_item_object_id','234'),(687,283,'_menu_item_object','page'),(688,283,'_menu_item_target',''),(689,283,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(690,283,'_menu_item_xfn',''),(691,283,'_menu_item_url',''),(709,283,'obfx_menu_icon',''),(693,284,'_menu_item_type','custom'),(694,284,'_menu_item_menu_item_parent','0'),(695,284,'_menu_item_object_id','284'),(696,284,'_menu_item_object','custom'),(697,284,'_menu_item_target',''),(698,284,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(699,284,'_menu_item_xfn',''),(700,284,'_menu_item_url','#'),(703,284,'obfx_menu_icon',''),(702,169,'obfx_menu_icon',''),(917,210,'_edit_lock','1547063324:1'),(707,221,'obfx_menu_icon',''),(708,220,'obfx_menu_icon',''),(712,285,'_elementor_edit_mode','builder'),(713,285,'_elementor_template_type','post'),(714,285,'_wp_page_template','default'),(715,285,'_elementor_data','[{\"id\":\"3f2c913\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"30a78cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1dbb6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2019\\/01\\/puscher-verkauf-08.jpg\",\"id\":280}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9350aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"7951a5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Marine Energy Transportation LLC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"036495a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(716,285,'_elementor_version','0.4'),(717,285,'_elementor_css','a:5:{s:4:\"time\";i:1546522308;s:5:\"fonts\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(718,286,'_elementor_edit_mode','builder'),(719,286,'_elementor_template_type','post'),(720,286,'_wp_page_template','default'),(721,286,'_elementor_data','[{\"id\":\"3f2c913\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"30a78cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1dbb6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2019\\/01\\/puscher-verkauf-08.jpg\",\"id\":280}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9350aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"7951a5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Marine Energy Transportation LLC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"036495a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(722,286,'_elementor_version','0.4'),(723,286,'_elementor_css','a:5:{s:4:\"time\";i:1546522308;s:5:\"fonts\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(725,287,'_elementor_template_type','post'),(726,287,'_wp_page_template','default'),(727,287,'_elementor_data','[{\"id\":\"3f2c913\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"30a78cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1dbb6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2019\\/01\\/puscher-verkauf-08.jpg\",\"id\":280}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9350aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"7951a5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"036495a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(728,287,'_elementor_version','0.4'),(729,287,'_elementor_css','a:5:{s:4:\"time\";i:1546522308;s:5:\"fonts\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(734,288,'_elementor_version','0.4'),(736,289,'_edit_lock','1546522923:1'),(737,289,'_edit_last','1'),(738,289,'um_content_restriction','a:8:{s:26:\"_um_custom_access_settings\";s:1:\"0\";s:14:\"_um_accessible\";s:1:\"0\";s:19:\"_um_noaccess_action\";s:1:\"0\";s:30:\"_um_restrict_by_custom_message\";s:1:\"0\";s:27:\"_um_restrict_custom_message\";s:0:\"\";s:19:\"_um_access_redirect\";s:1:\"0\";s:23:\"_um_access_redirect_url\";s:0:\"\";s:28:\"_um_access_hide_from_queries\";s:1:\"0\";}'),(739,289,'_elementor_edit_mode','builder'),(740,289,'_elementor_template_type','post'),(741,289,'_wp_page_template','elementor_header_footer'),(742,289,'_elementor_data','[{\"id\":\"99c5db2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e6c5bfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"573a485\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Solutions LLC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78fb9df\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"8615fad\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"34a0de9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our founding members have deep industry roots, market intelligence, and extensive relationships. Through our years of experience and a network of key marine professionals, we offer support and advice on a consulting basis to Jones Act maritime companies. Breadth of expertise ranges from business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering and financial accounting for U.S. owned maritime companies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"04409f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"735ebe9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2019\\/01\\/pexels-photo-356043.jpeg\",\"id\":291}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(743,289,'_elementor_version','0.4'),(744,291,'_wp_attached_file','2019/01/pexels-photo-356043.jpeg'),(745,291,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1173;s:4:\"file\";s:32:\"2019/01/pexels-photo-356043.jpeg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"pexels-photo-356043-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"pexels-photo-356043-300x183.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"pexels-photo-356043-768x469.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:469;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"pexels-photo-356043-1024x626.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:626;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-large-thumb\";a:4:{s:4:\"file\";s:32:\"pexels-photo-356043-830x507.jpeg\";s:5:\"width\";i:830;s:6:\"height\";i:507;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"sydney-medium-thumb\";a:4:{s:4:\"file\";s:32:\"pexels-photo-356043-550x400.jpeg\";s:5:\"width\";i:550;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"sydney-small-thumb\";a:4:{s:4:\"file\";s:32:\"pexels-photo-356043-230x141.jpeg\";s:5:\"width\";i:230;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"sydney-service-thumb\";a:4:{s:4:\"file\";s:32:\"pexels-photo-356043-350x214.jpeg\";s:5:\"width\";i:350;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"sydney-mas-thumb\";a:4:{s:4:\"file\";s:32:\"pexels-photo-356043-480x293.jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:293;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(746,292,'_elementor_edit_mode','builder'),(747,292,'_elementor_template_type','post'),(748,292,'_wp_page_template','elementor_header_footer'),(749,292,'_elementor_data','[{\"id\":\"78fb9df\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"8615fad\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"34a0de9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our founding members have deep industry roots, market intelligence, and extensive relationships. Through our years of experience and a network of key marine professionals, we offer support and advice on a consulting basis to Jones Act maritime companies. Breadth of expertise ranges from business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering and financial accounting for U.S. owned maritime companies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"04409f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"735ebe9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2019\\/01\\/pexels-photo-356043.jpeg\",\"id\":291}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(750,292,'_elementor_version','0.4'),(751,293,'_elementor_edit_mode','builder'),(752,293,'_elementor_template_type','post'),(753,293,'_wp_page_template','elementor_header_footer'),(754,293,'_elementor_data','[{\"id\":\"78fb9df\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"8615fad\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"1e299b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Solutions LLC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a0de9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our founding members have deep industry roots, market intelligence, and extensive relationships. Through our years of experience and a network of key marine professionals, we offer support and advice on a consulting basis to Jones Act maritime companies. Breadth of expertise ranges from business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering and financial accounting for U.S. owned maritime companies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"04409f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"735ebe9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2019\\/01\\/pexels-photo-356043.jpeg\",\"id\":291}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(755,293,'_elementor_version','0.4'),(756,294,'_menu_item_type','post_type'),(757,294,'_menu_item_menu_item_parent','284'),(758,294,'_menu_item_object_id','289'),(759,294,'_menu_item_object','page'),(760,294,'_menu_item_target',''),(761,294,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(762,294,'_menu_item_xfn',''),(763,294,'_menu_item_url',''),(765,294,'obfx_menu_icon',''),(796,300,'_edit_lock','1546523036:1'),(797,300,'_edit_last','1'),(767,295,'_elementor_edit_mode','builder'),(768,295,'_elementor_template_type','post'),(769,295,'_wp_page_template','default'),(770,295,'_elementor_data','[{\"id\":\"3f2c913\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"30a78cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1dbb6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2019\\/01\\/puscher-verkauf-08.jpg\",\"id\":280}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9350aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"036495a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(771,295,'_elementor_version','0.4'),(772,295,'_elementor_css','a:5:{s:4:\"time\";i:1546522406;s:5:\"fonts\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(779,297,'_elementor_edit_mode','builder'),(780,297,'_elementor_template_type','post'),(781,297,'_wp_page_template','elementor_header_footer'),(782,297,'_elementor_data','[{\"id\":\"bdebaf9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5f053db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"62de050\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Marine Energy Transportation LLC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f2c913\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\"},\"elements\":[{\"id\":\"30a78cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1a1dbb6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2019\\/01\\/puscher-verkauf-08.jpg\",\"id\":280}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"9350aaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"036495a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(783,297,'_elementor_version','0.4'),(784,298,'_elementor_edit_mode','builder'),(785,298,'_elementor_template_type','post'),(786,298,'_wp_page_template','elementor_header_footer'),(787,298,'_elementor_data','[{\"id\":\"78fb9df\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"8615fad\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"1e299b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Solutions LLC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a0de9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our founding members have deep industry roots, market intelligence, and extensive relationships. Through our years of experience and a network of key marine professionals, we offer support and advice on a consulting basis to Jones Act maritime companies. Breadth of expertise ranges from business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering and financial accounting for U.S. owned maritime companies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"04409f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"735ebe9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2019\\/01\\/pexels-photo-356043.jpeg\",\"id\":291}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(788,298,'_elementor_version','0.4'),(789,298,'_elementor_css','a:5:{s:4:\"time\";i:1546522860;s:5:\"fonts\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(790,299,'_elementor_edit_mode','builder'),(791,299,'_elementor_template_type','post'),(792,299,'_wp_page_template','elementor_header_footer'),(793,299,'_elementor_data','[{\"id\":\"99c5db2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"e6c5bfd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"573a485\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Solutions LLC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78fb9df\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"8615fad\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"34a0de9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our founding members have deep industry roots, market intelligence, and extensive relationships. Through our years of experience and a network of key marine professionals, we offer support and advice on a consulting basis to Jones Act maritime companies. Breadth of expertise ranges from business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering and financial accounting for U.S. owned maritime companies.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"04409f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"735ebe9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2019\\/01\\/pexels-photo-356043.jpeg\",\"id\":291}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(794,299,'_elementor_version','0.4'),(795,299,'_elementor_css','a:5:{s:4:\"time\";i:1546522860;s:5:\"fonts\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(798,300,'um_content_restriction','a:8:{s:26:\"_um_custom_access_settings\";s:1:\"0\";s:14:\"_um_accessible\";s:1:\"0\";s:19:\"_um_noaccess_action\";s:1:\"0\";s:30:\"_um_restrict_by_custom_message\";s:1:\"0\";s:27:\"_um_restrict_custom_message\";s:0:\"\";s:19:\"_um_access_redirect\";s:1:\"0\";s:23:\"_um_access_redirect_url\";s:0:\"\";s:28:\"_um_access_hide_from_queries\";s:1:\"0\";}'),(799,300,'_elementor_edit_mode','builder'),(800,300,'_elementor_template_type','post'),(801,300,'_wp_page_template','elementor_header_footer'),(802,300,'_elementor_data','[{\"id\":\"de6d224\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"29aea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"18e6610\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Offshore Wind  LLC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3978bf8\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"3abfd59\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5d0ddf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"72555ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A subsidiary established to take advantage of the nascent Northeast Offshore Wind projects and developments, Nautilus seeks to provide a complete range of maritime and offshore wind power infrastructure support services. As a provider a provider of maritime assets and logistics to support the 4 phases of offshore wind projects: (1) survey, (2) construction, (3) operations and maintenance and (4) decommissioning.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b2f98\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(803,300,'_elementor_version','0.4'),(804,302,'_elementor_edit_mode','builder'),(805,302,'_elementor_template_type','post'),(806,302,'_wp_page_template','elementor_header_footer'),(807,302,'_elementor_data','[{\"id\":\"de6d224\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"29aea44\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"18e6610\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Offshore Wind  LLC\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3978bf8\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"3abfd59\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"5d0ddf7\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"72555ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A subsidiary established to take advantage of the nascent Northeast Offshore Wind projects and developments, Nautilus seeks to provide a complete range of maritime and offshore wind power infrastructure support services. As a provider a provider of maritime assets and logistics to support the 4 phases of offshore wind projects: (1) survey, (2) construction, (3) operations and maintenance and (4) decommissioning.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"a5b2f98\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(808,302,'_elementor_version','0.4'),(809,303,'_menu_item_type','post_type'),(810,303,'_menu_item_menu_item_parent','284'),(811,303,'_menu_item_object_id','300'),(812,303,'_menu_item_object','page'),(813,303,'_menu_item_target',''),(814,303,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(815,303,'_menu_item_xfn',''),(816,303,'_menu_item_url',''),(818,303,'obfx_menu_icon',''),(819,289,'_elementor_css','a:5:{s:4:\"time\";i:1546523205;s:5:\"fonts\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(820,300,'_elementor_css','a:5:{s:4:\"time\";i:1546523213;s:5:\"fonts\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(821,276,'_elementor_css','a:5:{s:4:\"time\";i:1546523222;s:5:\"fonts\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(826,304,'_elementor_version','0.4'),(827,2,'_elementor_css','a:5:{s:4:\"time\";i:1546523339;s:5:\"fonts\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(828,214,'_elementor_css','a:5:{s:4:\"time\";i:1546523532;s:5:\"fonts\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(829,50,'_elementor_css','a:5:{s:4:\"time\";i:1546523535;s:5:\"fonts\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(830,52,'_edit_lock','1546523466:1'),(831,307,'_edit_lock','1546524312:1'),(832,307,'_edit_last','1'),(833,307,'um_content_restriction','a:8:{s:26:\"_um_custom_access_settings\";s:1:\"0\";s:14:\"_um_accessible\";s:1:\"0\";s:19:\"_um_noaccess_action\";s:1:\"0\";s:30:\"_um_restrict_by_custom_message\";s:1:\"0\";s:27:\"_um_restrict_custom_message\";s:0:\"\";s:19:\"_um_access_redirect\";s:1:\"0\";s:23:\"_um_access_redirect_url\";s:0:\"\";s:28:\"_um_access_hide_from_queries\";s:1:\"0\";}'),(834,307,'_elementor_edit_mode','builder'),(835,307,'_elementor_template_type','post'),(836,307,'_wp_page_template','elementor_header_footer'),(837,307,'_elementor_data','[{\"id\":\"de50495\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fa9b3cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"721162a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"595dbed\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"2c6d697\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"6213804\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please fill out the quick form and we will be in touch with lightning speed.\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3a4a2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[wpforms id=\\\"306\\\" title=\\\"false\\\" description=\\\"false\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ff0b3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1c73484\",\"elType\":\"widget\",\"settings\":{\"sidebar\":\"footer-1\"},\"elements\":[],\"widgetType\":\"sidebar\"}],\"isInner\":false}],\"isInner\":false}]'),(838,307,'_elementor_version','0.4'),(839,309,'_elementor_edit_mode','builder'),(840,309,'_elementor_template_type','post'),(841,309,'_wp_page_template','elementor_header_footer'),(842,309,'_elementor_data','[{\"id\":\"de50495\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fa9b3cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"721162a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"595dbed\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"2c6d697\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"6213804\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please fill out the quick form and we will be in touch with lightning speed.\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"1ff0b3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1c73484\",\"elType\":\"widget\",\"settings\":{\"sidebar\":\"footer-1\"},\"elements\":[],\"widgetType\":\"sidebar\"}],\"isInner\":false}],\"isInner\":false}]'),(843,309,'_elementor_version','0.4'),(844,310,'_elementor_edit_mode','builder'),(845,310,'_elementor_template_type','post'),(846,310,'_wp_page_template','elementor_header_footer'),(847,310,'_elementor_data','[{\"id\":\"de50495\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fa9b3cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"721162a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"595dbed\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"2c6d697\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"6213804\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please fill out the quick form and we will be in touch with lightning speed.\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3a4a2e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ff0b3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1c73484\",\"elType\":\"widget\",\"settings\":{\"sidebar\":\"footer-1\"},\"elements\":[],\"widgetType\":\"sidebar\"}],\"isInner\":false}],\"isInner\":false}]'),(848,310,'_elementor_version','0.4'),(849,311,'_menu_item_type','post_type'),(850,311,'_menu_item_menu_item_parent','221'),(851,311,'_menu_item_object_id','307'),(852,311,'_menu_item_object','page'),(853,311,'_menu_item_target',''),(854,311,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(855,311,'_menu_item_xfn',''),(856,311,'_menu_item_url',''),(858,311,'obfx_menu_icon',''),(872,307,'_elementor_css','a:5:{s:4:\"time\";i:1546524369;s:5:\"fonts\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(860,312,'_elementor_edit_mode','builder'),(861,312,'_elementor_template_type','post'),(862,312,'_wp_page_template','elementor_header_footer'),(863,312,'_elementor_data','[{\"id\":\"de50495\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fa9b3cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"721162a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"595dbed\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"2c6d697\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"6213804\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please fill out the quick form and we will be in touch with lightning speed.\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3a4a2e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ff0b3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1c73484\",\"elType\":\"widget\",\"settings\":{\"sidebar\":\"footer-1\"},\"elements\":[],\"widgetType\":\"sidebar\"}],\"isInner\":false}],\"isInner\":false}]'),(864,312,'_elementor_version','0.4'),(865,312,'_elementor_css','a:5:{s:4:\"time\";i:1546524286;s:5:\"fonts\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(866,313,'_elementor_edit_mode','builder'),(867,313,'_elementor_template_type','post'),(868,313,'_wp_page_template','elementor_header_footer'),(869,313,'_elementor_data','[{\"id\":\"de50495\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"fa9b3cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"721162a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"595dbed\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"2c6d697\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"6213804\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please fill out the quick form and we will be in touch with lightning speed.\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f3a4a2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>[wpforms id=\\\"306\\\" title=\\\"false\\\" description=\\\"false\\\"]<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"1ff0b3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1c73484\",\"elType\":\"widget\",\"settings\":{\"sidebar\":\"footer-1\"},\"elements\":[],\"widgetType\":\"sidebar\"}],\"isInner\":false}],\"isInner\":false}]'),(870,313,'_elementor_version','0.4'),(871,313,'_elementor_css','a:5:{s:4:\"time\";i:1546524286;s:5:\"fonts\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}'),(877,314,'_elementor_version','0.4'),(878,314,'_thumbnail_id','0'),(879,314,'_elementor_css','a:4:{s:4:\"time\";i:1546521133;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(882,315,'_elementor_template_type','post'),(883,315,'_elementor_data','[{\"id\":\"9a87bc4\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f173cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"667b1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"4cfe18a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Maritime Corporation\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b98b98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"24085f1\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"a1a2048\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"868f10f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"676cf50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nautilus Maritime Corporation is a privately owned business group that controls several maritime subsidiaries that compliment each other. Our core activities are general marine towing and assists with capabilities to serve market segments of\\u00a0 ship \\/ barge \\/ general vessel assist;\\u00a0 construction and dredge support; and petroleum transportation.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ece733\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"454770d5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"services\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"49c465df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39c9553d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3584b5\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ce82b2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\"},\"elements\":[{\"id\":\"08f6b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bcb858\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-anchor\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"710cc4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Marine Towing and Transportation LLC<\\/strong><\\/p><p>We provide marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, we operates 24 hours and 7 days a week.<\\/p><p>As a new independent provider of third party marine towing services we are based in New York harbor and operate along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment.<\\/p><p>Over the past 12 years, the New York harbor towing market experienced a sizable consolidation by larger towing and transportation companies. This consolidation left very few independent operators. The lack of responsible third party services with larger horsepower is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. After extensively studying needs of the towing market in New York harbor, understanding the increased regulatory and compliance environment, and its adverse impact on older tonnage, Nautilus adopted the \\u201cclean slate\\u201d approach that is aligned with the future of marine towing and transportation realities including:<\\/p><ul><li>Focus on regulatory compliance<\\/li><li>Best ensuring a safety conscious work environment<\\/li><li>Responsible handling of equipment<\\/li><li>Focus on fuel efficiency<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"136fd09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cbc7b73\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-ship\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"68dcfba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Marine Energy Transportation LLC<\\/strong><\\/p><p>A newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0373b06\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-compass\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"a705a22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Solutions<\\/strong><\\/p><p>Our founding members have deep industry roots, market intelligence, and extensive relationships. Through our years of experience and a network of key marine professionals, we offer support and advice on a consulting basis to Jones Act maritime companies. Breadth of expertise ranges from business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering and financial accounting for U.S. owned maritime companies.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c17a690\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"341cc7d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Offshore Wind, LLC<\\/strong><\\/p><p>A subsidiary established to take advantage of the nascent Northeast Offshore Wind projects and developments, Nautilus seeks to provide a complete range of maritime and offshore wind power infrastructure support services. As a provider a provider of maritime assets and logistics to support the 4 phases of offshore wind projects: (1) survey, (2) construction, (3) operations and maintenance and (4) decommissioning.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af86639\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#7a7a7a\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c43a80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c271b4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-linkedin\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"e41e029\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5ab511\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f9da753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46c4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/bay-boats-business-357508.jpg\",\"id\":202},\"image_size\":\"sydney-small-thumb\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"455eaca\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"60d24e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Who We Are<\\/h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(884,315,'_elementor_version','0.4'),(885,315,'_thumbnail_id','0'),(886,316,'_wp_page_template','page-templates/page_front-page.php'),(887,316,'_elementor_edit_mode','builder'),(888,316,'_elementor_template_type','post'),(889,316,'_elementor_data','[{\"id\":\"9a87bc4\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f173cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"667b1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"4cfe18a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Maritime Corporation\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b98b98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"24085f1\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"a1a2048\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"868f10f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"676cf50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nautilus Maritime Corporation is a privately owned business group that controls several maritime subsidiaries that compliment each other. Our core activities are general marine towing and assists with capabilities to serve market segments of\\u00a0 ship \\/ barge \\/ general vessel assist;\\u00a0 construction and dredge support and petroleum transportation.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ece733\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"454770d5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"services\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"49c465df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39c9553d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3584b5\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ce82b2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\"},\"elements\":[{\"id\":\"08f6b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bcb858\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-anchor\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"710cc4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Marine Towing and Transportation LLC<\\/strong><\\/p><p>We provide marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, we operates 24 hours and 7 days a week.<\\/p><p>As a new independent provider of third party marine towing services we are based in New York harbor and operate along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment.<\\/p><p>Over the past 12 years, the New York harbor towing market experienced a sizable consolidation by larger towing and transportation companies. This consolidation left very few independent operators. The lack of responsible third party services with larger horsepower is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. After extensively studying needs of the towing market in New York harbor, understanding the increased regulatory and compliance environment, and its adverse impact on older tonnage, Nautilus adopted the \\u201cclean slate\\u201d approach that is aligned with the future of marine towing and transportation realities including:<\\/p><ul><li>Focus on regulatory compliance<\\/li><li>Best ensuring a safety conscious work environment<\\/li><li>Responsible handling of equipment<\\/li><li>Focus on fuel efficiency<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"136fd09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cbc7b73\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-ship\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"68dcfba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Marine Energy Transportation LLC<\\/strong><\\/p><p>A newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0373b06\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-compass\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"a705a22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Solutions<\\/strong><\\/p><p>Our founding members have deep industry roots, market intelligence, and extensive relationships. Through our years of experience and a network of key marine professionals, we offer support and advice on a consulting basis to Jones Act maritime companies. Breadth of expertise ranges from business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering and financial accounting for U.S. owned maritime companies.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c17a690\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"341cc7d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Offshore Wind, LLC<\\/strong><\\/p><p>A subsidiary established to take advantage of the nascent Northeast Offshore Wind projects and developments, Nautilus seeks to provide a complete range of maritime and offshore wind power infrastructure support services. As a provider a provider of maritime assets and logistics to support the 4 phases of offshore wind projects: (1) survey, (2) construction, (3) operations and maintenance and (4) decommissioning.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af86639\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#7a7a7a\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c43a80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c271b4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-linkedin\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"e41e029\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5ab511\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f9da753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46c4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/bay-boats-business-357508.jpg\",\"id\":202},\"image_size\":\"sydney-small-thumb\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"455eaca\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"60d24e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Who We Are<\\/h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(890,316,'_elementor_version','0.4'),(891,316,'_thumbnail_id','0'),(892,317,'_wp_page_template','page-templates/page_front-page.php'),(893,317,'_elementor_edit_mode','builder'),(894,317,'_elementor_template_type','post'),(895,317,'_elementor_data','[{\"id\":\"9a87bc4\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f173cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"667b1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"4cfe18a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Maritime Corporation\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b98b98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"24085f1\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"a1a2048\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"868f10f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"676cf50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nautilus Maritime Corporation is a privately owned business group that controls several maritime subsidiaries that compliment each other. Our core activities are general marine towing and assists with capabilities to serve market segments of\\u00a0 ship \\/ barge \\/ general vessel assist;\\u00a0 construction and dredge support and petroleum transportation.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ece733\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"454770d5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"services\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"49c465df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39c9553d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3584b5\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ce82b2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\"},\"elements\":[{\"id\":\"08f6b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bcb858\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-anchor\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"710cc4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Marine Towing and Transportation LLC<\\/strong><\\/p><p>We provide marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, we operates 24 hours and 7 days a week.<\\/p><p>As a new independent provider of third party marine towing services we are based in New York harbor and operate along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment.<\\/p><p>Over the past 12 years, the New York harbor towing market experienced a sizable consolidation by larger towing and transportation companies. This consolidation left very few independent operators. The lack of responsible third party services with larger horsepower is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. After extensively studying needs of the towing market in New York harbor, understanding the increased regulatory and compliance environment, and its adverse impact on older tonnage, Nautilus adopted the \\u201cclean slate\\u201d approach that is aligned with the future of marine towing and transportation realities including:<\\/p><ul><li>Focus on regulatory compliance<\\/li><li>Best ensuring a safety conscious work environment<\\/li><li>Responsible handling of equipment<\\/li><li>Focus on fuel efficiency<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"136fd09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cbc7b73\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-ship\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"68dcfba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Marine Energy Transportation LLC<\\/strong><\\/p><p>A newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0373b06\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-compass\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"a705a22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Solutions, LLC<\\/strong><\\/p><p>Our founding members have deep industry roots, market intelligence, and extensive relationships. Through our years of experience and a network of key marine professionals, we offer support and advice on a consulting basis to Jones Act maritime companies. Breadth of expertise ranges from business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering and financial accounting for U.S. owned maritime companies.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c17a690\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"341cc7d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Offshore Wind, LLC<\\/strong><\\/p><p>A subsidiary established to take advantage of the nascent Northeast Offshore Wind projects and developments, Nautilus seeks to provide a complete range of maritime and offshore wind power infrastructure support services. As a provider a provider of maritime assets and logistics to support the 4 phases of offshore wind projects: (1) survey, (2) construction, (3) operations and maintenance and (4) decommissioning.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af86639\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#7a7a7a\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c43a80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c271b4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-linkedin\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"e41e029\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5ab511\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f9da753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46c4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/bay-boats-business-357508.jpg\",\"id\":202},\"image_size\":\"sydney-small-thumb\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"455eaca\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"60d24e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Who We Are<\\/h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(896,317,'_elementor_version','0.4'),(897,317,'_thumbnail_id','0'),(898,318,'_wp_page_template','page-templates/page_front-page.php'),(899,318,'_elementor_edit_mode','builder'),(900,318,'_elementor_template_type','post'),(901,318,'_elementor_data','[{\"id\":\"9a87bc4\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f173cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"667b1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"4cfe18a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Maritime Corporation\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b98b98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"24085f1\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"a1a2048\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"868f10f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"676cf50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nautilus Maritime Corporation is a privately owned business group that controls several maritime subsidiaries that compliment each other. Our core activities are general marine towing and assists with capabilities to serve market segments of\\u00a0 ship \\/ barge \\/ general vessel assist;\\u00a0 construction and dredge support and petroleum transportation.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ece733\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"454770d5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"services\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"49c465df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39c9553d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3584b5\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ce82b2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\"},\"elements\":[{\"id\":\"08f6b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bcb858\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-anchor\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"710cc4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Marine Towing and Transportation LLC<\\/strong><\\/p><p>We provide marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, we operates 24 hours and 7 days a week.<\\/p><p>As a new independent provider of third party marine towing services we are based in New York harbor and operate along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment.<\\/p><p>Over the past 12 years, the New York harbor towing market experienced a sizable consolidation by larger towing and transportation companies. This consolidation left very few independent operators. The lack of responsible third party services with larger horsepower is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. After extensively studying needs of the towing market in New York harbor, understanding the increased regulatory and compliance environment, and its adverse impact on older tonnage, Nautilus adopted the \\u201cclean slate\\u201d approach that is aligned with the future of marine towing and transportation realities including:<\\/p><ul><li>Focus on regulatory compliance<\\/li><li>Best ensuring a safety conscious work environment<\\/li><li>Responsible handling of equipment<\\/li><li>Focus on fuel efficiency<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"136fd09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cbc7b73\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-ship\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"68dcfba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Marine Energy Transportation LLC<\\/strong><\\/p><p>A newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0373b06\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-compass\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"a705a22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Solutions LLC<\\/strong><\\/p><p>Our founding members have deep industry roots, market intelligence, and extensive relationships. Through our years of experience and a network of key marine professionals, we offer support and advice on a consulting basis to Jones Act maritime companies. Breadth of expertise ranges from business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering and financial accounting for U.S. owned maritime companies.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c17a690\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"341cc7d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Offshore Wind, LLC<\\/strong><\\/p><p>A subsidiary established to take advantage of the nascent Northeast Offshore Wind projects and developments, Nautilus seeks to provide a complete range of maritime and offshore wind power infrastructure support services. As a provider a provider of maritime assets and logistics to support the 4 phases of offshore wind projects: (1) survey, (2) construction, (3) operations and maintenance and (4) decommissioning.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af86639\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#7a7a7a\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c43a80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c271b4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-linkedin\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"e41e029\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5ab511\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f9da753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46c4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/bay-boats-business-357508.jpg\",\"id\":202},\"image_size\":\"sydney-small-thumb\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"455eaca\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"60d24e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Who We Are<\\/h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(902,318,'_elementor_version','0.4'),(903,318,'_thumbnail_id','0'),(904,319,'_wp_page_template','page-templates/page_front-page.php'),(905,319,'_elementor_edit_mode','builder'),(906,319,'_elementor_template_type','post'),(907,319,'_elementor_data','[{\"id\":\"9a87bc4\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8f173cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"667b1f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"4cfe18a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Nautilus Maritime Corporation\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"b98b98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"24085f1\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"a1a2048\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"868f10f\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"676cf50\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Nautilus Maritime Corporation is a privately owned business group that controls several maritime subsidiaries that compliment each other. Our core activities are general marine towing and assists with capabilities to serve market segments of\\u00a0 ship \\/ barge \\/ general vessel assist;\\u00a0 construction and dredge support and petroleum transportation.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3ece733\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"454770d5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"services\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":0}},\"elements\":[{\"id\":\"49c465df\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":0},\"elements\":[{\"id\":\"39c9553d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our services\",\"header_size\":\"h3\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3584b5\",\"elType\":\"widget\",\"settings\":{\"color\":\"#d65050\",\"width\":{\"unit\":\"px\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ce82b2\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#bcbcbc\"},\"elements\":[{\"id\":\"08f6b1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5bcb858\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-anchor\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"710cc4f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Marine Towing and Transportation LLC<\\/strong><\\/p><p>We provide marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, we operates 24 hours and 7 days a week.<\\/p><p>As a new independent provider of third party marine towing services we are based in New York harbor and operate along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment.<\\/p><p>Over the past 12 years, the New York harbor towing market experienced a sizable consolidation by larger towing and transportation companies. This consolidation left very few independent operators. The lack of responsible third party services with larger horsepower is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. After extensively studying needs of the towing market in New York harbor, understanding the increased regulatory and compliance environment, and its adverse impact on older tonnage, Nautilus adopted the \\u201cclean slate\\u201d approach that is aligned with the future of marine towing and transportation realities including:<\\/p><ul><li>Focus on regulatory compliance<\\/li><li>Best ensuring a safety conscious work environment<\\/li><li>Responsible handling of equipment<\\/li><li>Focus on fuel efficiency<\\/li><\\/ul>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"136fd09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cbc7b73\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-ship\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"68dcfba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Marine Energy Transportation LLC<\\/strong><\\/p><p>A newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0373b06\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-compass\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"a705a22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Solutions LLC<\\/strong><\\/p><p>Our founding members have deep industry roots, market intelligence, and extensive relationships. Through our years of experience and a network of key marine professionals, we offer support and advice on a consulting basis to Jones Act maritime companies. Breadth of expertise ranges from business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering and financial accounting for U.S. owned maritime companies.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c17a690\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-superpowers\",\"view\":\"framed\",\"primary_color\":\"#d65050\",\"size\":{\"unit\":\"px\",\"size\":26},\"icon_padding\":{\"unit\":\"px\",\"size\":20},\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"341cc7d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: center;\\\"><strong>Nautilus Offshore Wind, LLC<\\/strong><\\/p><p>A subsidiary established to take advantage of the nascent Northeast Offshore Wind projects and developments, Nautilus seeks to provide a complete range of maritime and offshore wind power infrastructure support services. As a provider a provider of maritime assets and logistics to support the 4 phases of offshore wind projects: (1) survey, (2) construction, (3) operations and maintenance and (4) decommissioning.<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6af86639\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#7a7a7a\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c43a80e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c271b4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social\":\"fa fa-facebook\",\"_id\":\"1fc9825\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-twitter\",\"_id\":\"3cff2d5\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-google-plus\",\"_id\":\"6f788f3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"}},{\"social\":\"fa fa-linkedin\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\"},\"_id\":\"e41e029\"}],\"shape\":\"circle\",\"icon_color\":\"custom\",\"icon_primary_color\":\"rgba(0,0,0,0)\",\"icon_padding\":{\"unit\":\"em\",\"size\":0},\"icon_spacing\":{\"unit\":\"px\",\"size\":25},\"_css_classes\":\"sydney-social-row\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c5ab511\",\"elType\":\"section\",\"settings\":{\"structure\":\"21\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"f9da753\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"46c4cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/11\\/bay-boats-business-357508.jpg\",\"id\":202},\"image_size\":\"sydney-small-thumb\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"455eaca\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"60d24e4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>Who We Are<\\/h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.<\\/p><p>The Group was formed by three veteran captains joined by a senior banker with maritime experience. General maritime towing and capital markets are part of our corporate DNA which allows us to invest and enter associated sectors with modern and efficient equipment. Recruiting well trained and safety conscious crew are core to what we do.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(908,319,'_elementor_version','0.4'),(909,319,'_thumbnail_id','0'),(910,320,'_wp_page_template','elementor_header_footer'),(911,320,'_elementor_edit_mode','builder'),(912,320,'_elementor_template_type','post'),(913,320,'_elementor_data','[{\"id\":\"7efac4e\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"eb43700\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"6f46963\",\"elType\":\"widget\",\"settings\":{\"title\":\"<strong><span class=\\\"elementor-inline-editing\\\" data-elementor-setting-key=\\\"title_text\\\" data-elementor-inline-editing-toolbar=\\\"none\\\">Nautilus Towing &amp; Transportation LLC<\\/span><\\/strong>\",\"header_size\":\"h3\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c3c0fba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We provide marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, we operates 24 hours and 7 days a week.<\\/p><p>As a new independent provider of third party marine towing services we are based in New York harbor and operate along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment.<\\/p><p>Over the past 12 years, the New York harbor towing market experienced a sizable consolidation by larger towing and transportation companies. This consolidation left very few independent operators. The lack of responsible third party services with larger horsepower is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. After extensively studying needs of the towing market in New York harbor, understanding the increased regulatory and compliance environment, and its adverse impact on older tonnage, Nautilus adopted the \\u201cclean slate\\u201d approach that is aligned with the future of marine towing and transportation realities including:<\\/p><ul><li>Focus on regulatory compliance<\\/li><li>Best ensuring a safety conscious work environment<\\/li><li>Responsible handling of equipment<\\/li><li>Focus on fuel efficiency<\\/li><\\/ul>\",\"description_text\":\"<h3 class=\\\"elementor-icon-box-title\\\" style=\\\"font-weight: 500; font-size: 16px; margin-bottom: 10px; white-space: normal;\\\"><span class=\\\"elementor-inline-editing\\\" data-elementor-setting-key=\\\"title_text\\\" data-elementor-inline-editing-toolbar=\\\"none\\\">Nautilus Towing &amp; Transportation<\\/span><\\/h3><span style=\\\"white-space: normal;\\\">Nautilus Marine Towing and Transportation are forming a newly established general marine towing and transportation company based in New York. As an independent harbor assist provider, Nautilus will enter an under served market. The petroleum transportation segment of the maritime industry experienced a large scale consolidation in between the years of 2006 and 2008. Much of the consolidation consisted of large oil transportation companies acquiring the assets of smaller, independent, third party tug operators. This consolidation left very few independent, New York based, general towing providers, and even fewer providers with vessels greater than 2,000 horsepower. It is our intention, to take Nautilus on a growth path to a medium sized operation, by focusing on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways.<\\/span>\",\"typography_typography\":\"custom\",\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f82c744\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"776d601\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/nautilusmarineservice.com\\/development\\/wp-content\\/uploads\\/2018\\/12\\/oie_4172628HKpa0fQU.jpg\",\"id\":241}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(914,320,'_elementor_version','0.4'),(915,320,'_elementor_css','a:5:{s:4:\"time\";i:1546522312;s:5:\"fonts\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}');
/*!40000 ALTER TABLE `wpyt_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpyt_posts`
--

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

--
-- Dumping data for table `wpyt_posts`
--

LOCK TABLES `wpyt_posts` WRITE;
/*!40000 ALTER TABLE `wpyt_posts` DISABLE KEYS */;
INSERT INTO `wpyt_posts` VALUES (1,1,'2018-11-29 02:08:07','2018-11-29 02:08:07','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','publish','open','open','','hello-world','','','2018-11-29 02:08:07','2018-11-29 02:08:07','',0,'http://nautilusmarineservice.com/development/?p=1',0,'post','',1),(2,1,'2018-11-29 02:08:07','2018-11-29 02:08:07','<p><strong>Nautilus Marine Towing and Transportation</strong> focuses on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways and terminals.</p><p>Our approach is one of experienced New York based operators, with strong industry relationships, providing general towing and marine transportation services. With capabilities to serve segments of (i) ship / barge / general vessel assist, (ii) construction and dredge support, and (iii) petroleum transportation</p><p>Our operating strategy and experienced management team provide the fundamental tools to deliver superior service over time, safeguard the environment and comply with an increasing nexus of regulation.</p><p>Our vision is guided by a goal of being and unquestionable customer centric company that maintains realistic and transparent relationships with customers, partners and employees.</p><p>Our years of helm and engineering experience mitigate risk during sensitive maneuvering and docking operations. The result is a responsible, safe and efficient operation limiting risk and of disruption of services.</p><p>Our captains are experienced in local conditions. They are trained and highly experienced for the specific environments and locations they will be working in. This enables them to deal with situations that might arise from unique conditions.</p><p>Nautilus seeks to be a leader of innovative and environmentally friendly high quality maritime services. We continually seek to incorporate different technologies, both on and off the water, to provide redundancies and better assure timeliness.</p><p>Wherever we go, our experience, craftsmanship, safety focus and rigorous training means our customers can rely on us to provide undisturbed marine services.</p>','About','','publish','closed','open','','about','','','2019-01-03 13:48:33','2019-01-03 13:48:33','',0,'http://nautilusmarineservice.com/development/?page_id=2',0,'page','',0),(304,1,'2019-01-03 13:48:33','2019-01-03 13:48:33','<p><strong>Nautilus Marine Towing and Transportation</strong> focuses on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways and terminals.</p><p>Our approach is one of experienced New York based operators, with strong industry relationships, providing general towing and marine transportation services. With capabilities to serve segments of (i) ship / barge / general vessel assist, (ii) construction and dredge support, and (iii) petroleum transportation</p><p>Our operating strategy and experienced management team provide the fundamental tools to deliver superior service over time, safeguard the environment and comply with an increasing nexus of regulation.</p><p>Our vision is guided by a goal of being and unquestionable customer centric company that maintains realistic and transparent relationships with customers, partners and employees.</p><p>Our years of helm and engineering experience mitigate risk during sensitive maneuvering and docking operations. The result is a responsible, safe and efficient operation limiting risk and of disruption of services.</p><p>Our captains are experienced in local conditions. They are trained and highly experienced for the specific environments and locations they will be working in. This enables them to deal with situations that might arise from unique conditions.</p><p>Nautilus seeks to be a leader of innovative and environmentally friendly high quality maritime services. We continually seek to incorporate different technologies, both on and off the water, to provide redundancies and better assure timeliness.</p><p>Wherever we go, our experience, craftsmanship, safety focus and rigorous training means our customers can rely on us to provide undisturbed marine services.</p>','About','','inherit','closed','closed','','2-revision-v1','','','2019-01-03 13:48:33','2019-01-03 13:48:33','',2,'http://nautilusmarineservice.com/development/2019/01/03/2-revision-v1/',0,'revision','',0),(253,1,'2018-12-05 19:31:36','2018-12-05 19:31:36','<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p><blockquote><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p></blockquote><p>...or something like this:</p><blockquote><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>','About','','inherit','closed','closed','','2-revision-v1','','','2018-12-05 19:31:36','2018-12-05 19:31:36','',2,'http://nautilusmarineservice.com/development/2018/12/05/2-revision-v1/',0,'revision','',0),(3,1,'2018-11-29 02:08:07','2018-11-29 02:08:07','<h2>Who we are</h2><p>Our website address is: http://nautilusmarineservice.com/development.</p><h2>What personal data we collect and why we collect it</h2><h3>Comments</h3><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><h3>Media</h3><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><h3>Contact forms</h3><h3>Cookies</h3><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><p>If you have an account and you log in to this site, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><h3>Embedded content from other websites</h3><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><h3>Analytics</h3><h2>Who we share your data with</h2><h2>How long we retain your data</h2><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><h2>What rights you have over your data</h2><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><h2>Where we send your data</h2><p>Visitor comments may be checked through an automated spam detection service.</p><h2>Your contact information</h2><h2>Additional information</h2><h3>How we protect your data</h3><h3>What data breach procedures we have in place</h3><h3>What third parties we receive data from</h3><h3>What automated decision making and/or profiling we do with user data</h3><h3>Industry regulatory disclosure requirements</h3>','Privacy Policy','','draft','closed','open','','privacy-policy','','','2018-11-29 02:08:07','2018-11-29 02:08:07','',0,'http://nautilusmarineservice.com/development/?page_id=3',0,'page','',0),(272,1,'2019-01-03 13:00:39','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2019-01-03 13:00:39','0000-00-00 00:00:00','',0,'http://nautilusmarineservice.com/development/?p=272',0,'post','',0),(5,1,'2018-11-29 02:15:31','2018-11-29 02:15:31','','oie_12233124sFOrgQgu','','inherit','open','closed','','oie_12233124sforgqgu','','','2018-11-29 02:15:31','2018-11-29 02:15:31','',0,'http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/oie_12233124sFOrgQgu.jpg',0,'attachment','image/jpeg',0),(6,1,'2018-11-29 02:15:40','2018-11-29 02:15:40','','cropped-oie_12233124sFOrgQgu.jpg','','inherit','open','closed','','cropped-oie_12233124sforgqgu-jpg','','','2018-11-29 02:15:40','2018-11-29 02:15:40','',0,'http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/cropped-oie_12233124sFOrgQgu.jpg',0,'attachment','image/jpeg',0),(8,1,'2018-11-29 02:23:47','2018-11-29 02:23:47','','oie_QwA4hmAdSI8Z','','inherit','open','closed','','oie_qwa4hmadsi8z','','','2018-11-29 02:23:47','2018-11-29 02:23:47','',0,'http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/oie_QwA4hmAdSI8Z.png',0,'attachment','image/png',0),(9,1,'2018-11-29 02:24:07','2018-11-29 02:24:07','http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/cropped-oie_QwA4hmAdSI8Z.png','cropped-oie_QwA4hmAdSI8Z.png','','inherit','open','closed','','cropped-oie_qwa4hmadsi8z-png','','','2018-11-29 02:24:07','2018-11-29 02:24:07','',0,'http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/cropped-oie_QwA4hmAdSI8Z.png',0,'attachment','image/png',0),(11,1,'2018-11-29 02:24:35','2018-11-29 02:24:35','','cropped-oie_12233124sFOrgQgu-1.jpg','','inherit','open','closed','','cropped-oie_12233124sforgqgu-1-jpg','','','2018-11-29 02:24:35','2018-11-29 02:24:35','',0,'http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/cropped-oie_12233124sFOrgQgu-1.jpg',0,'attachment','image/jpeg',0),(275,1,'2019-01-03 13:15:17','2019-01-03 13:15:17','<h3><strong>Nautilus Towing &amp; Transportation</strong></h3>		\n		<p>We provide marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, we operates 24 hours and 7 days a week.</p><p>As a new independent provider of third party marine towing services we are based in New York harbor and operate along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment.</p><p>Over the past 12 years, the New York harbor towing market experienced a sizable consolidation by larger towing and transportation companies. This consolidation left very few independent operators. The lack of responsible third party services with larger horsepower is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. After extensively studying needs of the towing market in New York harbor, understanding the increased regulatory and compliance environment, and its adverse impact on older tonnage, Nautilus adopted the “clean slate” approach that is aligned with the future of marine towing and transportation realities including:</p><ul><li>Focus on regulatory compliance</li><li>Best ensuring a safety conscious work environment</li><li>Responsible handling of equipment</li><li>Focus on fuel efficiency</li></ul>		\n										<img width=\"1024\" height=\"768\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-1024x768.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-1024x768.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-300x225.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-768x576.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-830x622.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-230x172.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-350x262.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-480x360.jpg 480w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU.jpg 1331w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />','Nautilus Marine Towing and Transportation LLC','','inherit','closed','closed','','234-revision-v1','','','2019-01-03 13:15:17','2019-01-03 13:15:17','',234,'http://nautilusmarineservice.com/development/2019/01/03/234-revision-v1/',0,'revision','',0),(13,1,'2018-11-29 02:36:54','2018-11-29 02:36:54','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:\r\n<blockquote>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.)</blockquote>\r\n...or something like this:\r\n<blockquote>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.</blockquote>\r\nAs a new WordPress user, you should go to <a href=\"http://nautilusmarineservice.com/development/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2018-11-29 02:36:54','2018-11-29 02:36:54','',2,'http://nautilusmarineservice.com/development/2018/11/29/2-revision-v1/',0,'revision','',0),(15,1,'2018-11-29 11:12:44','2018-11-29 11:12:44','','One Click Demo Import - log_file_2018-11-29__11-12-44','','inherit','open','closed','','one-click-demo-import-log_file_2018-11-29__11-12-44','','','2018-11-29 11:12:44','2018-11-29 11:12:44','',0,'http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/log_file_2018-11-29__11-12-44.txt',0,'attachment','text/plain',0),(16,1,'2018-05-24 11:20:36','2018-05-24 11:20:36','','placeholder.png','','inherit','open','closed','','placeholder-png','','','2018-05-24 11:20:36','2018-05-24 11:20:36','',0,'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/placeholder.png',0,'attachment','image/png',0),(17,1,'2018-05-24 11:23:12','2018-05-24 11:23:12','','iphone-550x363','','inherit','open','closed','','iphone-550x363','','','2018-11-29 11:13:00','2018-11-29 11:13:00','',51,'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/iphone-550x363.png',0,'attachment','image/png',0),(18,1,'2018-05-24 11:23:40','2018-05-24 11:23:40','','imac-606765_1280','','inherit','open','closed','','imac-606765_1280','','','2018-11-29 11:13:00','2018-11-29 11:13:00','',51,'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/imac-606765_1280.jpg',0,'attachment','image/jpeg',0),(19,1,'2018-05-24 11:34:16','2018-05-24 11:34:16','','1','','inherit','open','closed','','1','','','2018-11-29 11:13:00','2018-11-29 11:13:00','',51,'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/1.jpg',0,'attachment','image/jpeg',0),(22,1,'2018-05-24 11:44:16','2018-05-24 11:44:16','','3','','inherit','open','closed','','3','','','2018-11-29 11:13:00','2018-11-29 11:13:00','',51,'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/3.jpg',0,'attachment','image/jpeg',0),(24,1,'2018-05-24 11:48:01','2018-05-24 11:48:01','','emp6','','inherit','open','closed','','emp6','','','2018-11-29 11:13:00','2018-11-29 11:13:00','',51,'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/emp6.jpg',0,'attachment','image/jpeg',0),(27,1,'2018-05-24 11:50:46','2018-05-24 11:50:46','','4','','inherit','open','closed','','4','','','2018-11-29 11:13:00','2018-11-29 11:13:00','',51,'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/4.jpg',0,'attachment','image/jpeg',0),(31,1,'2018-05-24 12:28:57','2018-05-24 12:28:57','','urban-438393_1280','','inherit','open','closed','','urban-438393_1280','','','2018-11-29 11:13:00','2018-11-29 11:13:00','',51,'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/urban-438393_1280.jpg',0,'attachment','image/jpeg',0),(33,1,'2018-05-24 12:41:13','2018-05-24 12:41:13','','girls-591552_640','','inherit','open','closed','','girls-591552_640','','','2018-11-29 11:13:00','2018-11-29 11:13:00','',51,'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/girls-591552_640.jpg',0,'attachment','image/jpeg',0),(34,1,'2018-05-24 12:41:14','2018-05-24 12:41:14','','helicopter-548421_640','','inherit','open','closed','','helicopter-548421_640','','','2018-11-29 11:13:00','2018-11-29 11:13:00','',51,'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/helicopter-548421_640.jpg',0,'attachment','image/jpeg',0),(35,1,'2018-05-24 12:41:14','2018-05-24 12:41:14','','lake-484190_640','','inherit','open','closed','','lake-484190_640','','','2018-11-29 11:13:00','2018-11-29 11:13:00','',51,'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/lake-484190_640.jpg',0,'attachment','image/jpeg',0),(36,1,'2018-05-24 12:41:15','2018-05-24 12:41:15','','legs-520604_640','','inherit','open','closed','','legs-520604_640','','','2018-11-29 11:13:00','2018-11-29 11:13:00','',51,'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/legs-520604_640.jpg',0,'attachment','image/jpeg',0),(37,1,'2018-05-24 12:41:15','2018-05-24 12:41:15','','men-521540_640','','inherit','open','closed','','men-521540_640','','','2018-11-29 11:13:00','2018-11-29 11:13:00','',51,'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/men-521540_640.jpg',0,'attachment','image/jpeg',0),(38,1,'2018-05-24 12:41:16','2018-05-24 12:41:16','','shimano-501433_640','','inherit','open','closed','','shimano-501433_640','','','2018-11-29 11:13:00','2018-11-29 11:13:00','',51,'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/shimano-501433_640.jpg',0,'attachment','image/jpeg',0),(39,1,'2018-05-24 12:41:16','2018-05-24 12:41:16','','sky-486846_640','','inherit','open','closed','','sky-486846_640','','','2018-11-29 11:13:00','2018-11-29 11:13:00','',51,'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/sky-486846_640.jpg',0,'attachment','image/jpeg',0),(40,1,'2018-05-24 12:41:16','2018-05-24 12:41:16','','statue-of-liberty-539318_640','','inherit','open','closed','','statue-of-liberty-539318_640','','','2018-11-29 11:13:00','2018-11-29 11:13:00','',51,'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/statue-of-liberty-539318_640.jpg',0,'attachment','image/jpeg',0),(41,1,'2018-05-24 12:41:17','2018-05-24 12:41:17','','woman-546207_640','','inherit','open','closed','','woman-546207_640','','','2018-11-29 11:13:00','2018-11-29 11:13:00','',51,'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/woman-546207_640.jpg',0,'attachment','image/jpeg',0),(42,1,'2018-05-24 12:41:17','2018-05-24 12:41:17','','sun-513848_640','','inherit','open','closed','','sun-513848_640','','','2018-11-29 11:13:00','2018-11-29 11:13:00','',51,'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/sun-513848_640.jpg',0,'attachment','image/jpeg',0),(48,1,'2018-05-24 12:46:49','2018-05-24 12:46:49','','1','','inherit','open','closed','','1-2','','','2018-11-29 11:13:00','2018-11-29 11:13:00','',51,'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/1.png',0,'attachment','image/png',0),(49,1,'2018-05-24 12:46:50','2018-05-24 12:46:50','','2','','inherit','open','closed','','2','','','2018-11-29 11:13:00','2018-11-29 11:13:00','',51,'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/2.png',0,'attachment','image/png',0),(50,1,'2018-05-24 11:14:26','2018-05-24 11:14:26','<h2>Our Fleet</h2>		\n										<img width=\"1024\" height=\"681\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-300x200.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-768x511.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-830x552.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-230x153.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-350x233.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-480x319.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		A Focus on Innovation\nCompanies that leverage digital technologies to move people or goods faster and cheaper will be future winners. We seek to create and maintain a competitive advantage through advancements in gathering and analyzing logistics, weather and tidal data to plan further and more accurately. We believe this approach is a perfect union for businesses seeking a competitive edge and necessary for companies hoping to compete in the future.</br></br>\nOn-going innovations to include:</br></br>\n<u>Engineering and technology improvements</u>\n<ul>\n 	<li>For our fleet all tug and barge components analyzed and optimized. Applying latest technology to minimize fuel consumption and emissions without compromising high levels of performance.</li>\n 	<li>New technologies are continually being developed to improve industrial and business operations. In shipping the aim is that they also make the industry safer and reduce its environmental impact.</li>\n 	<li>Understanding and proposing technologies and emerging solutions that look set to make significant changes to commercial shipping in the near future.</li>\n</ul></br>\nStudying and understanding well developed sensor technologies in other industries, how they are becoming increasingly intelligent, and how to incorporate in maritime practices. It provides better situational awareness and offers our crew  the power to carry out better decision-making.','Our Fleet','','publish','closed','open','','fleet','','','2018-12-05 19:28:35','2018-12-05 19:28:35','',0,'http://demo.athemes.com/sydney-temp/?page_id=2',0,'page','',0),(51,1,'2018-05-24 11:19:52','2018-05-24 11:19:52','<h2>Nautilus Maritime Corporation</h2>		\n		<p>Nautilus Maritime Corporation is a privately owned business group that controls several maritime subsidiaries that compliment each other. Our core activities are general marine towing and assists with capabilities to serve market segments of  ship / barge / general vessel assist;  construction and dredge support and petroleum transportation.</p>		\n			<h3>Our services</h3>		\n		<p style=\"text-align: center;\"><strong>Nautilus Marine Towing and Transportation LLC</strong></p><p>We provide marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, we operates 24 hours and 7 days a week.</p><p>As a new independent provider of third party marine towing services we are based in New York harbor and operate along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment.</p><p>Over the past 12 years, the New York harbor towing market experienced a sizable consolidation by larger towing and transportation companies. This consolidation left very few independent operators. The lack of responsible third party services with larger horsepower is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. After extensively studying needs of the towing market in New York harbor, understanding the increased regulatory and compliance environment, and its adverse impact on older tonnage, Nautilus adopted the “clean slate” approach that is aligned with the future of marine towing and transportation realities including:</p><ul><li>Focus on regulatory compliance</li><li>Best ensuring a safety conscious work environment</li><li>Responsible handling of equipment</li><li>Focus on fuel efficiency</li></ul>		\n		<p style=\"text-align: center;\"><strong>Nautilus Marine Energy Transportation LLC</strong></p><p>A newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.</p>		\n		<p style=\"text-align: center;\"><strong>Nautilus Solutions LLC</strong></p><p>Our founding members have deep industry roots, market intelligence, and extensive relationships. Through our years of experience and a network of key marine professionals, we offer support and advice on a consulting basis to Jones Act maritime companies. Breadth of expertise ranges from business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering and financial accounting for U.S. owned maritime companies.</p>		\n		<p style=\"text-align: center;\"><strong>Nautilus Offshore Wind, LLC</strong></p><p>A subsidiary established to take advantage of the nascent Northeast Offshore Wind projects and developments, Nautilus seeks to provide a complete range of maritime and offshore wind power infrastructure support services. As a provider a provider of maritime assets and logistics to support the 4 phases of offshore wind projects: (1) survey, (2) construction, (3) operations and maintenance and (4) decommissioning.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Linkedin\n				</a>\n										<img width=\"230\" height=\"345\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-200x300.jpg 200w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-768x1152.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-683x1024.jpg 683w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-830x1245.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-350x525.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-480x720.jpg 480w\" sizes=\"(max-width: 230px) 100vw, 230px\" />											\n		<h2>Who We Are</h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.</p><p>The Group was formed by three veteran captains joined by a senior banker with maritime experience. General maritime towing and capital markets are part of our corporate DNA which allows us to invest and enter associated sectors with modern and efficient equipment. Recruiting well trained and safety conscious crew are core to what we do.</p>','My front page','','publish','closed','closed','','my-front-page','','','2019-01-09 19:19:41','2019-01-09 19:19:41','',0,'http://demo.athemes.com/sydney-temp/?page_id=4',0,'page','',0),(314,1,'2019-01-09 19:15:32','2019-01-09 19:15:32','<h2>Nautilus Maritime Corporation</h2>		\n		<p>Nautilus Maritime Corporation is a privately owned business group that controls several maritime subsidiaries that compliment each other. Our core activities are general marine towing and assists with capabilities to serve market segments of (i) ship / barge / general vessel assist; (ii) construction and dredge support; (iii) petroleum transportation.</p>		\n			<h3>Our services</h3>		\n		<p style=\"text-align: center;\"><strong>Nautilus Marine Towing and Transportation LLC</strong></p><p>We provide marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, we operates 24 hours and 7 days a week.</p><p>As a new independent provider of third party marine towing services we are based in New York harbor and operate along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment.</p><p>Over the past 12 years, the New York harbor towing market experienced a sizable consolidation by larger towing and transportation companies. This consolidation left very few independent operators. The lack of responsible third party services with larger horsepower is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. After extensively studying needs of the towing market in New York harbor, understanding the increased regulatory and compliance environment, and its adverse impact on older tonnage, Nautilus adopted the “clean slate” approach that is aligned with the future of marine towing and transportation realities including:</p><ul><li>Focus on regulatory compliance</li><li>Best ensuring a safety conscious work environment</li><li>Responsible handling of equipment</li><li>Focus on fuel efficiency</li></ul>		\n		<p style=\"text-align: center;\"><strong>Nautilus Marine Energy Transportation LLC</strong></p><p>A newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.</p>		\n		<p style=\"text-align: center;\"><strong>Nautilus Solutions</strong></p><p>Our founding members have deep industry roots, market intelligence, and extensive relationships. Through our years of experience and a network of key marine professionals, we offer support and advice on a consulting basis to Jones Act maritime companies. Breadth of expertise ranges from business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering and financial accounting for U.S. owned maritime companies.</p>		\n		<p style=\"text-align: center;\"><strong>Nautilus Offshore Wind, LLC</strong></p><p>A subsidiary established to take advantage of the nascent Northeast Offshore Wind projects and developments, Nautilus seeks to provide a complete range of maritime and offshore wind power infrastructure support services. As a provider a provider of maritime assets and logistics to support the 4 phases of offshore wind projects: (1) survey, (2) construction, (3) operations and maintenance and (4) decommissioning.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Linkedin\n				</a>\n										<img width=\"230\" height=\"345\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-200x300.jpg 200w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-768x1152.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-683x1024.jpg 683w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-830x1245.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-350x525.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-480x720.jpg 480w\" sizes=\"(max-width: 230px) 100vw, 230px\" />											\n		<h2>Who We Are</h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.</p>','My front page','','inherit','closed','closed','','51-revision-v1','','','2019-01-09 19:15:32','2019-01-09 19:15:32','',51,'http://nautilusmarineservice.com/development/2019/01/09/51-revision-v1/',0,'revision','',0),(273,1,'2019-01-03 13:11:38','2019-01-03 13:11:38','<h2>Nautilus Maritime Corporation</h2>		\n		<p>Nautilus Maritime Corporation is a privately owned business group that controls several maritime subsidiaries that compliment each other. Our core activities are general marine towing and assists with capabilities to serve market segments of (i) ship / barge / general vessel assist; (ii) construction and dredge support; (iii) petroleum transportation.</p><p>To further support growth Nautilus recently established a subsidiary to explore bunkering for workboats (Tugs and Research Vessels); and a second subsidiary to provide maritime services for the nascent US offshore wind sector.</p><p>The Group was formed by three veteran captains joined by a senior banker with maritime experience. General maritime towing and capital markets are part of our corporate DNA which allows us to invest and enter associated sectors with modern and efficient equipment. Recruiting well trained and safety conscious crew are core to what we do.</p>		\n			<h3>Our services</h3>		\n		<p style=\"text-align: center;\"><strong>Nautilus Marine Towing and Transportation LLC</strong></p><p>We provide marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, we operates 24 hours and 7 days a week.</p><p>As a new independent provider of third party marine towing services we are based in New York harbor and operate along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment.</p><p>Over the past 12 years, the New York harbor towing market experienced a sizable consolidation by larger towing and transportation companies. This consolidation left very few independent operators. The lack of responsible third party services with larger horsepower is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. After extensively studying needs of the towing market in New York harbor, understanding the increased regulatory and compliance environment, and its adverse impact on older tonnage, Nautilus adopted the “clean slate” approach that is aligned with the future of marine towing and transportation realities including:</p><ul><li>Focus on regulatory compliance</li><li>Best ensuring a safety conscious work environment</li><li>Responsible handling of equipment</li><li>Focus on fuel efficiency</li></ul>		\n		<p style=\"text-align: center;\"><strong>Nautilus Marine Energy Transportation LLC</strong></p><p>A newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.</p>		\n		<p style=\"text-align: center;\"><strong>Nautilus Solutions</strong></p><p>Our founding members have deep industry roots, market intelligence, and extensive relationships. Through our years of experience and a network of key marine professionals, we offer support and advice on a consulting basis to Jones Act maritime companies. Breadth of expertise ranges from business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering and financial accounting for U.S. owned maritime companies.</p>		\n		<p style=\"text-align: center;\"><strong>Nautilus Offshore Wind, LLC</strong></p><p>A subsidiary established to take advantage of the nascent Northeast Offshore Wind projects and developments, Nautilus seeks to provide a complete range of maritime and offshore wind power infrastructure support services. As a provider a provider of maritime assets and logistics to support the 4 phases of offshore wind projects: (1) survey, (2) construction, (3) operations and maintenance and (4) decommissioning.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Linkedin\n				</a>\n										<img width=\"230\" height=\"345\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-200x300.jpg 200w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-768x1152.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-683x1024.jpg 683w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-830x1245.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-350x525.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-480x720.jpg 480w\" sizes=\"(max-width: 230px) 100vw, 230px\" />											\n		<h2>Who We Are</h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.</p>','My front page','','inherit','closed','closed','','51-revision-v1','','','2019-01-03 13:11:38','2019-01-03 13:11:38','',51,'http://nautilusmarineservice.com/development/2019/01/03/51-revision-v1/',0,'revision','',0),(195,1,'2018-11-29 11:48:24','2018-11-29 11:48:24','<h3>Our services</h3>		\n				<h3>\n					Photography\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.</p>\n				<h3>\n					Strategy\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.</p>\n				<h3>\n					Design\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.</p>\n			<a href=\"#\" role=\"button\">\n						See some more services\n					</a>\n			<h3>What else we provide?</h3>		\n				<h3>\n					Global coverage\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.</p>\n				<h3>\n					Free coffee\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.</p>\n				<h3>\n					Development\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.</p>\n			<h3>Who we are</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n					<ul>\n							<li >\n										Lorem ipsum dolor sit amet\n									</li>\n								<li >\n										Lorem ipsum dolor sit amet\n									</li>\n								<li >\n										Lorem ipsum dolor sit amet\n									</li>\n						</ul>\n						Design\n									81%\n						Development\n									87%\n						Photography\n									93%\n						Strategy\n									74%\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Wordpress\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Weibo\n				</a>','My front page','','inherit','closed','closed','','51-revision-v1','','','2018-11-29 11:48:24','2018-11-29 11:48:24','',51,'http://nautilusmarineservice.com/development/2018/11/29/51-revision-v1/',0,'revision','',0),(197,1,'2018-11-29 12:02:12','2018-11-29 12:02:12','<h3>Our services</h3>		\n				<h3>\n					Photography\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.</p>\n				<h3>\n					Strategy\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.</p>\n			<a href=\"#\" role=\"button\">\n						See some more services\n					</a>\n			<h3>What else we provide?</h3>		\n				<h3>\n					Global coverage\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.</p>\n										<img width=\"1024\" height=\"681\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-300x200.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-768x511.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-830x552.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-230x153.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-350x233.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-480x319.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Wordpress\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Weibo\n				</a>','My front page','','inherit','closed','closed','','51-revision-v1','','','2018-11-29 12:02:12','2018-11-29 12:02:12','',51,'http://nautilusmarineservice.com/development/2018/11/29/51-revision-v1/',0,'revision','',0),(198,1,'2018-11-29 12:06:55','2018-11-29 12:06:55','<p>Nautilus Marine Towing and Transportation</p><p>(“Nautilus”) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a “clean slate” approach that is aligned with future marine towing and transportation realities including:</p><p style=\"padding-left: 150px;\">Focus on regulatory compliance<br />Encouraging a safety conscious work environment<br />Responsible handling of equipment<br />Focus on vessel fuel efficiency</p>		\n			<h3>Our services</h3>		\n				<h3>\n					Photography\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.</p>\n				<h3>\n					Strategy\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.</p>\n			<a href=\"#\" role=\"button\">\n						See some more services\n					</a>\n			<h3>What else we provide?</h3>		\n				<h3>\n					Global coverage\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.</p>\n										<img width=\"1024\" height=\"681\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-300x200.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-768x511.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-830x552.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-230x153.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-350x233.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-480x319.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Wordpress\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Weibo\n				</a>','My front page','','inherit','closed','closed','','51-revision-v1','','','2018-11-29 12:06:55','2018-11-29 12:06:55','',51,'http://nautilusmarineservice.com/development/2018/11/29/51-revision-v1/',0,'revision','',0),(199,1,'2018-11-29 12:12:50','2018-11-29 12:12:50','<h2><br>Nautilus Maritime</h2>		\n		<p> </p><p>(“Nautilus”) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a “clean slate” approach that is aligned with future marine towing and transportation realities including:</p><p style=\"padding-left: 150px;\">Focus on regulatory compliance<br />Encouraging a safety conscious work environment<br />Responsible handling of equipment<br />Focus on vessel fuel efficiency</p>		\n			<h3>Our services</h3>		\n				<h3>\n					Photography\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.</p>\n				<h3>\n					Strategy\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.</p>\n			<a href=\"#\" role=\"button\">\n						See some more services\n					</a>\n			<h3>What else we provide?</h3>		\n				<h3>\n					Global coverage\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.</p>\n										<img width=\"1024\" height=\"681\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-300x200.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-768x511.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-830x552.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-230x153.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-350x233.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-480x319.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Wordpress\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Weibo\n				</a>','My front page','','inherit','closed','closed','','51-revision-v1','','','2018-11-29 12:12:50','2018-11-29 12:12:50','',51,'http://nautilusmarineservice.com/development/2018/11/29/51-revision-v1/',0,'revision','',0),(200,1,'2018-11-29 12:13:27','2018-11-29 12:13:27','<h2><br>Nautilus Maritime</h2>		\n		<p>(“Nautilus”) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a “clean slate” approach that is aligned with future marine towing and transportation realities including:</p><p style=\"padding-left: 150px;\">Focus on regulatory compliance<br />Encouraging a safety conscious work environment<br />Responsible handling of equipment<br />Focus on vessel fuel efficiency</p>		\n			<h3>Our services</h3>		\n				<h3>\n					Photography\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.</p>\n				<h3>\n					Strategy\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.</p>\n			<a href=\"#\" role=\"button\">\n						See some more services\n					</a>\n			<h3>What else we provide?</h3>		\n				<h3>\n					Global coverage\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.</p>\n										<img width=\"1024\" height=\"681\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-300x200.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-768x511.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-830x552.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-230x153.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-350x233.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-480x319.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Wordpress\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Weibo\n				</a>','My front page','','inherit','closed','closed','','51-revision-v1','','','2018-11-29 12:13:27','2018-11-29 12:13:27','',51,'http://nautilusmarineservice.com/development/2018/11/29/51-revision-v1/',0,'revision','',0),(52,1,'2018-05-24 11:20:04','2018-05-24 11:20:04','','My blog','','publish','closed','closed','','my-blog','','','2018-05-24 11:20:04','2018-05-24 11:20:04','',0,'http://demo.athemes.com/sydney-temp/?page_id=6',0,'page','',0),(53,1,'2018-05-24 11:20:37','2018-05-24 11:20:37','<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">Our services</h3>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n				<h3>\n					Photography\n				</h3>\n				<p data-elementor-setting-key=\"description_text\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.</p>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n				<h3>\n					Strategy\n				</h3>\n				<p data-elementor-setting-key=\"description_text\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.</p>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n				<h3>\n					Design\n				</h3>\n				<p data-elementor-setting-key=\"description_text\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.</p>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<a href=\"#\" role=\"button\">\n						See some more services\n					</a>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">What else we provide?</h3>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n				<h3>\n					Global coverage\n				</h3>\n				<p data-elementor-setting-key=\"description_text\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.</p>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n				<h3>\n					Free coffee\n				</h3>\n				<p data-elementor-setting-key=\"description_text\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.</p>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n				<h3>\n					Development\n				</h3>\n				<p data-elementor-setting-key=\"description_text\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.</p>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n										<img src=\"http://demo.athemes.com/sydney-temp/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />											\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">Do you want to...</h3>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">Take some time and meet our Employees?</h3>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<a href=\"#\" role=\"button\">\n						Meet the team\n					</a>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">Take some time and meet our Employees?</h3>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<a href=\"#\" role=\"button\">\n						Meet the team\n					</a>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">Our team</h3>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n							Briefcase\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n							Coffee cups\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n							Customers\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n							Awards\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">What our clients say</h3>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n                        <blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla id purus neque. Curabitur pulvinar elementum neque in dictum. Sed non lectus nec tortor iaculis tincidunt.</blockquote>                               \n                            <img src=\"http://demo.athemes.com/sydney-temp/wp-content/plugins/elementor/assets/images/placeholder.png\"/>\n                        	John Doe\n                        	Manager\n                        <blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla id purus neque. Curabitur pulvinar elementum neque in dictum. Sed non lectus nec tortor iaculis tincidunt.</blockquote>                               \n                            <img src=\"http://demo.athemes.com/sydney-temp/wp-content/plugins/elementor/assets/images/placeholder.png\"/>\n                        	James Stevens\n                        	Manager\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">Our work</h3>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul id=\"filters\">\n				<li><a href=\"#\" data-filter=\"*\">Show all</a></li>\n					<li><a href=\'#\' data-filter=\'.art\'>Art</a></li>\n			</ul>\n						<a >\n								<h3>\n									Project title\n								</h3>\n						</a>\n						<a href=\"#\">\n							<img src=\"\"/>\n						</a>\n						<a >\n								<h3>\n									Project title\n								</h3>\n						</a>\n						<a href=\"#\">\n							<img src=\"\"/>\n						</a>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h2 data-elementor-setting-key=\"title\">Waiting for redesign</h2>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">WANT TO KNOW MORE ABOUT OUR COMPANY? CURIOUS WHAT ELSE WE DO?</h3>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<a href=\"#\" role=\"button\">\n						Learn more\n					</a>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">About us</h3>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas vel placerat magna, eget scelerisque est. Ut tincidunt, sem vehicula sodales blandit, sem nisi pharetra dui, hendrerit pulvinar ante lectus eu lectus. Quisque sed enim fermentum, condimentum nisi nec, consequat lacus. Sed massa metus, tincidunt quis condimentum eget, viverra id sem. Nam dapibus nibh consectetur, accumsan libero sed, dictum augue. Nulla cursus tortor in felis cursus volutpat. Aenean laoreet sapien et justo ultrices, at pellentesque dui semper. In quis leo id sem semper accumsan nec vitae eros. Ut non hendrerit diam. Curabitur malesuada arcu sit amet nulla vulputate imperdiet.</p>https://www.youtube.com/watch?v=7iBqEknWOiU		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<h3 data-elementor-setting-key=\"title\">Latest news</h3>		\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n			<a href=\"#\" role=\"button\">\n						See all our news\n					</a>\n			<ul>\n				<li title=\"Edit Widget\">\n					Edit Widget\n				</li>\n									<li title=\"Duplicate Widget\">\n						Duplicate Widget\n					</li>\n									<li title=\"Remove Widget\">\n						Remove Widget\n					</li>\n							</ul>\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Wordpress\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Weibo\n				</a>','Sydney','','publish','closed','closed','','sydney','','','2018-05-24 11:20:37','2018-05-24 11:20:37','',0,'http://demo.athemes.com/sydney-temp/?elementor_library=sydney',0,'elementor_library','',0),(54,1,'2018-05-24 12:46:50','2018-05-24 12:46:50','','3','','inherit','open','closed','','3-2','','','2018-05-24 12:46:50','2018-05-24 12:46:50','',51,'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/3.png',0,'attachment','image/png',0),(55,1,'2018-05-24 12:46:50','2018-05-24 12:46:50','','4','','inherit','open','closed','','4-2','','','2018-05-24 12:46:50','2018-05-24 12:46:50','',51,'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/4.png',0,'attachment','image/png',0),(56,1,'2018-05-24 12:46:51','2018-05-24 12:46:51','','5','','inherit','open','closed','','5','','','2018-05-24 12:46:51','2018-05-24 12:46:51','',51,'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/5.png',0,'attachment','image/png',0),(57,1,'2018-05-24 12:49:02','2018-05-24 12:49:02','.sydney-social-row i {\n	font-size: 50px;\n}\n.sydney-social-row a,\n.sydney-social-row i {\n	width: auto;\n}\n.sydney-social-row i:before {\n	position: static;\n}\n\n\n.sydney-progress .elementor-progress-wrapper {\n	height: 10px;\n	line-height: 1;\n}\n.sydney-progress .elementor-progress-percentage {\n	font-size: 16px;\n	position: relative;\n	top: -30px;\n}\n.sydney-progress .elementor-progress-bar {\n	height: 100%;\n}\n.sydney-progress .elementor-title {\n	display: block;\n	margin-bottom: 10px;\n}','sydney','','publish','closed','closed','','sydney','','','2018-05-24 12:49:02','2018-05-24 12:49:02','',0,'http://demo.athemes.com/sydney-temp/2018/05/24/sydney/',0,'custom_css','',0),(137,1,'2015-03-10 09:53:01','2015-03-10 09:53:01','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed venenatis dignissim ultrices. Suspendisse ut sollicitudin nisi. Fusce efficitur nec nunc nec bibendum. Praesent laoreet tortor quis velit facilisis faucibus. Maecenas sollicitudin lectus diam, non vehicula arcu ullamcorper ac. In pharetra, est vitae interdum tincidunt, urna ligula rutrum tellus, sit amet pharetra purus magna eu enim. Sed iaculis imperdiet nisi, et pulvinar mauris gravida maximus. Phasellus vitae lorem at sem mattis volutpat. In eget dictum dui. Quisque nec sapien at massa mattis semper. Ut ac malesuada turpis. Fusce eu nulla vehicula, tincidunt dui ultrices, fermentum felis. Aliquam lectus nisi, feugiat ut aliquet sed, posuere sed libero.\r\n\r\nPellentesque consectetur massa nec nulla fermentum, at tincidunt elit volutpat. Duis vulputate placerat tortor, sit amet eleifend mauris tincidunt sit amet. Aliquam a maximus ligula. Phasellus nec sapien sed tellus tempor eleifend id a erat. Donec convallis bibendum posuere. Quisque mollis imperdiet malesuada. Suspendisse eget dictum massa.\r\n\r\nPhasellus ac posuere nibh, in finibus nulla. In diam arcu, luctus sit amet condimentum sit amet, tristique et leo. Sed tincidunt justo a porttitor tristique. Nulla eu metus tincidunt, ornare magna ullamcorper, semper lacus. Quisque vitae porttitor odio, id tincidunt tellus. Fusce a suscipit eros. Proin sit amet risus fermentum, lobortis quam sed, consequat velit. Quisque sit amet ultricies lorem. Phasellus scelerisque ipsum eget ipsum posuere suscipit. Proin id molestie mauris, a venenatis ipsum. Quisque efficitur, nibh a dapibus mollis, metus tortor fermentum ante, non pellentesque mi magna non leo. Integer quis sem hendrerit, euismod dolor id, dapibus nulla. Maecenas non ultrices lorem. Pellentesque lobortis, diam eget feugiat lacinia, ante augue ullamcorper tortor, vel ornare sapien lacus pharetra quam.','Just a simple post','','publish','open','open','','just-a-simple-post','','','2015-03-10 09:53:01','2015-03-10 09:53:01','',0,'http://demo.athemes.com/sydney/?p=137',0,'post','',0),(141,1,'2015-03-10 09:56:38','2015-03-10 09:56:38','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed venenatis dignissim ultrices. Suspendisse ut sollicitudin nisi. Fusce efficitur nec nunc nec bibendum. Praesent laoreet tortor quis velit facilisis faucibus. Maecenas sollicitudin lectus diam, non vehicula arcu ullamcorper ac. In pharetra, est vitae interdum tincidunt, urna ligula rutrum tellus, sit amet pharetra purus magna eu enim. Sed iaculis imperdiet nisi, et pulvinar mauris gravida maximus. Phasellus vitae lorem at sem mattis volutpat. In eget dictum dui. Quisque nec sapien at massa mattis semper. Ut ac malesuada turpis. Fusce eu nulla vehicula, tincidunt dui ultrices, fermentum felis. Aliquam lectus nisi, feugiat ut aliquet sed, posuere sed libero.\r\n\r\nPellentesque consectetur massa nec nulla fermentum, at tincidunt elit volutpat. Duis vulputate placerat tortor, sit amet eleifend mauris tincidunt sit amet. Aliquam a maximus ligula. Phasellus nec sapien sed tellus tempor eleifend id a erat. Donec convallis bibendum posuere. Quisque mollis imperdiet malesuada. Suspendisse eget dictum massa.\r\n\r\nPhasellus ac posuere nibh, in finibus nulla. In diam arcu, luctus sit amet condimentum sit amet, tristique et leo. Sed tincidunt justo a porttitor tristique. Nulla eu metus tincidunt, ornare magna ullamcorper, semper lacus. Quisque vitae porttitor odio, id tincidunt tellus. Fusce a suscipit eros. Proin sit amet risus fermentum, lobortis quam sed, consequat velit. Quisque sit amet ultricies lorem. Phasellus scelerisque ipsum eget ipsum posuere suscipit. Proin id molestie mauris, a venenatis ipsum. Quisque efficitur, nibh a dapibus mollis, metus tortor fermentum ante, non pellentesque mi magna non leo. Integer quis sem hendrerit, euismod dolor id, dapibus nulla. Maecenas non ultrices lorem. Pellentesque lobortis, diam eget feugiat lacinia, ante augue ullamcorper tortor, vel ornare sapien lacus pharetra quam.','A day at the office','','publish','open','open','','a-day-at-the-office','','','2015-03-10 09:56:38','2015-03-10 09:56:38','',0,'http://demo.athemes.com/sydney/?p=141',0,'post','',0),(149,1,'2018-05-24 12:55:27','2018-05-24 12:55:27','','macbook-336704_1280','','inherit','open','closed','','macbook-336704_1280','','','2018-11-29 11:13:00','2018-11-29 11:13:00','',144,'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/macbook-336704_1280.jpg',0,'attachment','image/jpeg',0),(151,1,'2018-05-24 12:55:51','2018-05-24 12:55:51','','ipad-606764_1280','','inherit','open','closed','','ipad-606764_1280','','','2018-05-24 12:55:51','2018-05-24 12:55:51','',141,'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/ipad-606764_1280.jpg',0,'attachment','image/jpeg',0),(153,1,'2018-05-24 12:56:20','2018-05-24 12:56:20','','imac-606765_1280','','inherit','open','closed','','imac-606765_1280-2','','','2018-05-24 12:56:20','2018-05-24 12:56:20','',137,'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/imac-606765_1280.jpg',0,'attachment','image/jpeg',0),(169,1,'2018-05-29 08:05:36','2018-05-29 08:05:36','','Home','','publish','closed','closed','','home','','','2019-01-09 19:38:33','2019-01-09 19:38:33','',0,'http://demo.athemes.com/sydney-temp/?p=169',1,'nav_menu_item','',0),(214,1,'2018-11-29 12:36:29','2018-11-29 12:36:29','[ultimatemember form_id=\"210\"]','Login','','publish','closed','closed','','login','','','2019-01-09 19:39:38','2019-01-09 19:39:38','',0,'http://nautilusmarineservice.com/development/login/',0,'page','',0),(213,1,'2018-11-29 12:36:29','2018-11-29 12:36:29','[ultimatemember form_id=\"211\"]','User','','publish','closed','closed','','user','','','2018-11-29 12:36:29','2018-11-29 12:36:29','',0,'http://nautilusmarineservice.com/development/user/',0,'page','',0),(223,1,'2018-11-29 13:08:26','2018-11-29 13:08:26','','cropped-pexels-photo-753331-1.jpeg','','inherit','closed','closed','','cropped-pexels-photo-753331-jpeg','','','2018-11-29 13:08:26','2018-11-29 13:08:26','',0,'http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/cropped-pexels-photo-753331.jpeg',0,'attachment','image/jpeg',0),(178,1,'2018-06-04 07:15:54','0000-00-00 00:00:00','','Your page title here','','draft','closed','closed','','your-page-title-here','','','2018-06-04 07:15:54','0000-00-00 00:00:00','',0,'http://demo.athemes.com/sydney-temp/?page_id=178',0,'page','',0),(144,1,'2015-03-10 09:57:52','2015-03-10 09:57:52','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed venenatis dignissim ultrices. Suspendisse ut sollicitudin nisi. Fusce efficitur nec nunc nec bibendum. Praesent laoreet tortor quis velit facilisis faucibus. Maecenas sollicitudin lectus diam, non vehicula arcu ullamcorper ac. In pharetra, est vitae interdum tincidunt, urna ligula rutrum tellus, sit amet pharetra purus magna eu enim. Sed iaculis imperdiet nisi, et pulvinar mauris gravida maximus. Phasellus vitae lorem at sem mattis volutpat. In eget dictum dui. Quisque nec sapien at massa mattis semper. Ut ac malesuada turpis. Fusce eu nulla vehicula, tincidunt dui ultrices, fermentum felis. Aliquam lectus nisi, feugiat ut aliquet sed, posuere sed libero.\r\n\r\nPellentesque consectetur massa nec nulla fermentum, at tincidunt elit volutpat. Duis vulputate placerat tortor, sit amet eleifend mauris tincidunt sit amet. Aliquam a maximus ligula. Phasellus nec sapien sed tellus tempor eleifend id a erat. Donec convallis bibendum posuere. Quisque mollis imperdiet malesuada. Suspendisse eget dictum massa.\r\n\r\nPhasellus ac posuere nibh, in finibus nulla. In diam arcu, luctus sit amet condimentum sit amet, tristique et leo. Sed tincidunt justo a porttitor tristique. Nulla eu metus tincidunt, ornare magna ullamcorper, semper lacus. Quisque vitae porttitor odio, id tincidunt tellus. Fusce a suscipit eros. Proin sit amet risus fermentum, lobortis quam sed, consequat velit. Quisque sit amet ultricies lorem. Phasellus scelerisque ipsum eget ipsum posuere suscipit. Proin id molestie mauris, a venenatis ipsum. Quisque efficitur, nibh a dapibus mollis, metus tortor fermentum ante, non pellentesque mi magna non leo. Integer quis sem hendrerit, euismod dolor id, dapibus nulla. Maecenas non ultrices lorem. Pellentesque lobortis, diam eget feugiat lacinia, ante augue ullamcorper tortor, vel ornare sapien lacus pharetra quam.','Don\'t miss our next event','','publish','open','open','','dont-miss-our-next-event','','','2015-03-10 09:57:52','2015-03-10 09:57:52','',0,'http://demo.athemes.com/sydney/?p=144',0,'post','',0),(180,1,'2018-11-29 11:13:02','2018-11-29 11:13:02','','1','','inherit','open','closed','','1-3','','','2018-11-29 11:13:02','2018-11-29 11:13:02','',0,'http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/1.jpg',0,'attachment','image/jpeg',0),(181,1,'2018-11-29 11:13:03','2018-11-29 11:13:03','','2','','inherit','open','closed','','2-2','','','2018-11-29 11:13:03','2018-11-29 11:13:03','',0,'http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/2.jpg',0,'attachment','image/jpeg',0),(184,1,'2018-11-29 11:26:22','2018-11-29 11:26:22','','tugboat-3705035_1920','','inherit','open','closed','','tugboat-3705035_1920','','','2018-11-29 11:26:22','2018-11-29 11:26:22','',0,'http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920.jpg',0,'attachment','image/jpeg',0),(185,1,'2018-11-29 11:26:26','2018-11-29 11:26:26','','tugboat-89600_1920','','inherit','open','closed','','tugboat-89600_1920','','','2018-11-29 11:26:26','2018-11-29 11:26:26','',0,'http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-89600_1920.jpg',0,'attachment','image/jpeg',0),(186,1,'2018-11-29 11:26:29','2018-11-29 11:26:29','','durban-3840075_1920','','inherit','open','closed','','durban-3840075_1920','','','2018-11-29 11:26:29','2018-11-29 11:26:29','',0,'http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/durban-3840075_1920.jpg',0,'attachment','image/jpeg',0),(187,1,'2018-11-29 11:26:33','2018-11-29 11:26:33','','pexels-photo-753331','','inherit','open','closed','','pexels-photo-753331','','','2018-11-29 11:26:33','2018-11-29 11:26:33','',0,'http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/pexels-photo-753331.jpeg',0,'attachment','image/jpeg',0),(188,1,'2018-11-29 11:27:31','2018-11-29 11:27:31','','pic2','','inherit','open','closed','','pic2','','','2018-11-29 11:27:31','2018-11-29 11:27:31','',0,'http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/pic2.jpg',0,'attachment','image/jpeg',0),(274,1,'2019-01-03 13:14:27','2019-01-03 13:14:27','<h3><strong>Nautilus Towing &amp; Transportation</strong></h3>		\n		<p>We provide marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, we operates 24 hours and 7 days a week.</p><p>As a new independent provider of third party marine towing services we are based in New York harbor and operate along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment.</p><p>Over the past 12 years, the New York harbor towing market experienced a sizable consolidation by larger towing and transportation companies. This consolidation left very few independent operators. The lack of responsible third party services with larger horsepower is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. After extensively studying needs of the towing market in New York harbor, understanding the increased regulatory and compliance environment, and its adverse impact on older tonnage, Nautilus adopted the “clean slate” approach that is aligned with the future of marine towing and transportation realities including:</p><ul><li>Focus on regulatory compliance</li><li>Best ensuring a safety conscious work environment</li><li>Responsible handling of equipment</li><li>Focus on fuel efficiency</li></ul>		\n										<img width=\"1024\" height=\"768\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-1024x768.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-1024x768.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-300x225.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-768x576.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-830x622.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-230x172.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-350x262.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-480x360.jpg 480w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU.jpg 1331w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />','Services','','inherit','closed','closed','','234-revision-v1','','','2019-01-03 13:14:27','2019-01-03 13:14:27','',234,'http://nautilusmarineservice.com/development/2019/01/03/234-revision-v1/',0,'revision','',0),(190,1,'2018-11-29 11:29:00','2018-11-29 11:29:00','','night-79624_1920','','inherit','open','closed','','night-79624_1920','','','2018-11-29 11:29:00','2018-11-29 11:29:00','',0,'http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/night-79624_1920.jpg',0,'attachment','image/jpeg',0),(191,1,'2018-11-29 11:35:35','2018-11-29 11:35:35','','oie_KeFD015ceQac','','inherit','open','closed','','oie_kefd015ceqac','','','2018-11-29 11:35:35','2018-11-29 11:35:35','',0,'http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/oie_KeFD015ceQac.png',0,'attachment','image/png',0),(194,1,'2018-11-29 11:48:24','2018-11-29 11:48:24','<h3>Our services</h3>		\n				<h3>\n					Photography\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.</p>\n				<h3>\n					Strategy\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.</p>\n				<h3>\n					Design\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.</p>\n			<a href=\"#\" role=\"button\">\n						See some more services\n					</a>\n			<h3>What else we provide?</h3>		\n				<h3>\n					Global coverage\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.</p>\n				<h3>\n					Free coffee\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.</p>\n				<h3>\n					Development\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.</p>\n										<img width=\"550\" height=\"363\" src=\"http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/iphone-550x363.png\" alt=\"\" srcset=\"http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/iphone-550x363.png 550w, http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/iphone-550x363-300x198.png 300w, http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/iphone-550x363-230x152.png 230w, http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/iphone-550x363-350x231.png 350w, http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/iphone-550x363-480x317.png 480w\" sizes=\"(max-width: 550px) 100vw, 550px\" />											\n			<h3>Do you want to...</h3>		\n			<h3>Take some time and meet our Employees?</h3>		\n			<a href=\"#\" role=\"button\">\n						Meet the team\n					</a>\n			<h3>Take some time and meet our Employees?</h3>		\n			<a href=\"#\" role=\"button\">\n						Meet the team\n					</a>\n			<h3>Our team</h3>		\n								John Doe\n								General Manager\n								<ul>\n																												<li><a href=\"#\" target=\"_blank\"></a></li>\n																												<li><a href=\"#\" target=\"_blank\"></a></li>\n																	</ul>\n						<img src=\"http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/1.jpg\"/>\n			        				        		<a href=\"#\">John Doe</a>\n			        General Manager\n			<!-- /.team-item -->\n								John Doe\n								General Manager\n								<ul>\n																												<li><a href=\"#\" target=\"_blank\"></a></li>\n																												<li><a href=\"#\" target=\"_blank\"></a></li>\n																	</ul>\n						<img src=\"http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/3.jpg\"/>\n			        				        		<a href=\"#\">John Doe</a>\n			        General Manager\n			<!-- /.team-item -->\n								John Doe\n								Accountant\n								<ul>\n																			<li><a href=\"#\" target=\"_blank\"></a></li>\n																												<li><a href=\"#\" target=\"_blank\"></a></li>\n																												<li><a href=\"#\" target=\"_blank\"></a></li>\n																	</ul>\n						<img src=\"http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/emp6.jpg\"/>\n			        				        		John Doe			        				        \n			        Accountant\n			<!-- /.team-item -->\n								John Doe\n								General Manager\n								<ul>\n																			<li><a href=\"#\" target=\"_blank\"></a></li>\n																												<li><a href=\"#\" target=\"_blank\"></a></li>\n																												<li><a href=\"#\" target=\"_blank\"></a></li>\n																	</ul>\n						<img src=\"http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/4.jpg\"/>\n			        				        		John Doe			        				        \n			        General Manager\n			<!-- /.team-item -->\n							Briefcase\n							Coffee cups\n							Customers\n							Awards\n			<h3>What our clients say</h3>		\n                        <blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla id purus neque. Curabitur pulvinar elementum neque in dictum. Sed non lectus nec tortor iaculis tincidunt.</blockquote>                               \n                            <img src=\"http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/3.jpg\"/>\n                        	John Doe\n                        	Manager\n                        <blockquote>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla id purus neque. Curabitur pulvinar elementum neque in dictum. Sed non lectus nec tortor iaculis tincidunt.</blockquote>                               \n                            <img src=\"http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/1.jpg\"/>\n                        	James Stevens\n                        	Manager\n			<h3>Our work</h3>		\n			<ul id=\"filters\">\n				<li><a href=\"#\" data-filter=\"*\">Show all</a></li>\n					<li><a href=\'#\' data-filter=\'.science\'>Science</a></li>\n					<li><a href=\'#\' data-filter=\'.art\'>Art</a></li>\n					<li><a href=\'#\' data-filter=\'.creative\'>Creative</a></li>\n			</ul>\n						<a >\n								<h3>\n									Project title\n								</h3>\n						</a>\n						<a href=\"#\">\n							<img src=\"http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/sun-513848_640.jpg\"/>\n						</a>\n						<a >\n								<h3>\n									Project title\n								</h3>\n						</a>\n						<a href=\"#\">\n							<img src=\"http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/woman-546207_640.jpg\"/>\n						</a>\n						<a >\n								<h3>\n									Project title\n								</h3>\n						</a>\n						<a href=\"#\">\n							<img src=\"http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/statue-of-liberty-539318_640.jpg\"/>\n						</a>\n						<a >\n								<h3>\n									Project title\n								</h3>\n						</a>\n						<a href=\"#\">\n							<img src=\"http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/sky-486846_640.jpg\"/>\n						</a>\n						<a >\n								<h3>\n									Project title\n								</h3>\n						</a>\n						<a href=\"#\">\n							<img src=\"http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/shimano-501433_640.jpg\"/>\n						</a>\n						<a >\n								<h3>\n									Project title\n								</h3>\n						</a>\n						<a href=\"#\">\n							<img src=\"http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/men-521540_640.jpg\"/>\n						</a>\n						<a >\n								<h3>\n									Project title\n								</h3>\n						</a>\n						<a href=\"#\">\n							<img src=\"http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/legs-520604_640.jpg\"/>\n						</a>\n						<a >\n								<h3>\n									Project title\n								</h3>\n						</a>\n						<a href=\"#\">\n							<img src=\"http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/lake-484190_640.jpg\"/>\n						</a>\n						<a >\n								<h3>\n									Project title\n								</h3>\n						</a>\n						<a href=\"#\">\n							<img src=\"http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/helicopter-548421_640.jpg\"/>\n						</a>\n						<a >\n								<h3>\n									Project title\n								</h3>\n						</a>\n						<a href=\"#\">\n							<img src=\"http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/girls-591552_640.jpg\"/>\n						</a>\n			<h3>Who we are</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>		\n					<ul>\n							<li >\n										Lorem ipsum dolor sit amet\n									</li>\n								<li >\n										Lorem ipsum dolor sit amet\n									</li>\n								<li >\n										Lorem ipsum dolor sit amet\n									</li>\n						</ul>\n						Design\n									81%\n						Development\n									87%\n						Photography\n									93%\n						Strategy\n									74%\n			<h3>WANT TO KNOW MORE ABOUT OUR COMPANY? CURIOUS WHAT ELSE WE DO?</h3>		\n			<a href=\"#\" role=\"button\">\n						Learn more\n					</a>\n			<h3>About us</h3>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas vel placerat magna, eget scelerisque est. Ut tincidunt, sem vehicula sodales blandit, sem nisi pharetra dui, hendrerit pulvinar ante lectus eu lectus. Quisque sed enim fermentum, condimentum nisi nec, consequat lacus. Sed massa metus, tincidunt quis condimentum eget, viverra id sem. Nam dapibus nibh consectetur, accumsan libero sed, dictum augue. Nulla cursus tortor in felis cursus volutpat. Aenean laoreet sapien et justo ultrices, at pellentesque dui semper. In quis leo id sem semper accumsan nec vitae eros. Ut non hendrerit diam. Curabitur malesuada arcu sit amet nulla vulputate imperdiet.</p>https://www.youtube.com/watch?v=7iBqEknWOiU		\n			<figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"3db8faf2\" href=\'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/1.png\'><img width=\"129\" height=\"90\" src=\"http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/1.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"3db8faf2\" href=\'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/2.png\'><img width=\"123\" height=\"90\" src=\"http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/2.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"3db8faf2\" href=\'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/3.png\'><img width=\"87\" height=\"90\" src=\"http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/3.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"3db8faf2\" href=\'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/4.png\'><img width=\"149\" height=\"90\" src=\"http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/4.png\" alt=\"\" /></a>\n			</figure><figure class=\'gallery-item\'>\n				<a data-elementor-open-lightbox=\"default\" data-elementor-lightbox-slideshow=\"3db8faf2\" href=\'http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/5.png\'><img width=\"88\" height=\"90\" src=\"http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2018/05/5.png\" alt=\"\" /></a>\n			</figure>\n			<h3>Latest news</h3>		\n						<a href=\"http://demo.athemes.com/sydney-temp/2015/03/10/dont-miss-our-next-event/\" title=\"Don&#8217;t miss our next event\">\n							<img width=\"1280\" height=\"853\" src=\"http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/macbook-336704_1280.jpg\" alt=\"\" srcset=\"http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/macbook-336704_1280.jpg 1280w, http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/macbook-336704_1280-300x200.jpg 300w, http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/macbook-336704_1280-768x512.jpg 768w, http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/macbook-336704_1280-1024x682.jpg 1024w, http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/macbook-336704_1280-830x553.jpg 830w, http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/macbook-336704_1280-230x153.jpg 230w, http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/macbook-336704_1280-350x233.jpg 350w, http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/macbook-336704_1280-480x320.jpg 480w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" />						</a>			\n				<h4><a href=\"http://demo.athemes.com/sydney-temp/2015/03/10/dont-miss-our-next-event/\" rel=\"bookmark\">Don&#8217;t miss our next event</a></h4>					\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed venenatis dignissim ultrices. Suspendisse ut sollicitudin nisi. Fusce efficitur nec nunc nec bibendum. Praesent laoreet tortor quis velit facilisis faucibus. Maecenas sollicitudin lectus diam, non vehicula arcu ullamcorper ac. In pharetra, est vitae interdum tincidunt, urna ligula rutrum tellus, sit amet pharetra purus magna eu enim. [&hellip;]</p>\n						<a href=\"http://demo.athemes.com/sydney-temp/2015/03/10/a-day-at-the-office/\" title=\"A day at the office\">\n							<img width=\"1280\" height=\"850\" src=\"http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/ipad-606764_1280.jpg\" alt=\"\" srcset=\"http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/ipad-606764_1280.jpg 1280w, http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/ipad-606764_1280-300x199.jpg 300w, http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/ipad-606764_1280-768x510.jpg 768w, http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/ipad-606764_1280-1024x680.jpg 1024w, http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/ipad-606764_1280-830x551.jpg 830w, http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/ipad-606764_1280-230x153.jpg 230w, http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/ipad-606764_1280-350x232.jpg 350w, http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/ipad-606764_1280-480x319.jpg 480w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" />						</a>			\n				<h4><a href=\"http://demo.athemes.com/sydney-temp/2015/03/10/a-day-at-the-office/\" rel=\"bookmark\">A day at the office</a></h4>					\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed venenatis dignissim ultrices. Suspendisse ut sollicitudin nisi. Fusce efficitur nec nunc nec bibendum. Praesent laoreet tortor quis velit facilisis faucibus. Maecenas sollicitudin lectus diam, non vehicula arcu ullamcorper ac. In pharetra, est vitae interdum tincidunt, urna ligula rutrum tellus, sit amet pharetra purus magna eu enim. [&hellip;]</p>\n						<a href=\"http://demo.athemes.com/sydney-temp/2015/03/10/just-a-simple-post/\" title=\"Just a simple post\">\n							<img width=\"1280\" height=\"850\" src=\"http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/imac-606765_1280.jpg\" alt=\"\" srcset=\"http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/imac-606765_1280.jpg 1280w, http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/imac-606765_1280-300x199.jpg 300w, http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/imac-606765_1280-768x510.jpg 768w, http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/imac-606765_1280-1024x680.jpg 1024w, http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/imac-606765_1280-830x551.jpg 830w, http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/imac-606765_1280-230x153.jpg 230w, http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/imac-606765_1280-350x232.jpg 350w, http://demo.athemes.com/sydney-temp/wp-content/uploads/sites/80/2015/03/imac-606765_1280-480x319.jpg 480w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" />						</a>			\n				<h4><a href=\"http://demo.athemes.com/sydney-temp/2015/03/10/just-a-simple-post/\" rel=\"bookmark\">Just a simple post</a></h4>					\n					<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed venenatis dignissim ultrices. Suspendisse ut sollicitudin nisi. Fusce efficitur nec nunc nec bibendum. Praesent laoreet tortor quis velit facilisis faucibus. Maecenas sollicitudin lectus diam, non vehicula arcu ullamcorper ac. In pharetra, est vitae interdum tincidunt, urna ligula rutrum tellus, sit amet pharetra purus magna eu enim. [&hellip;]</p>\n							<a href=\"http://demo.athemes.com/sydney-temp/my-blog-page/\">See all our news</a>\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Wordpress\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Weibo\n				</a>','My front page','','inherit','closed','closed','','51-revision-v1','','','2018-11-29 11:48:24','2018-11-29 11:48:24','',51,'http://nautilusmarineservice.com/development/2018/11/29/51-revision-v1/',0,'revision','',0),(201,1,'2018-11-29 12:23:24','2018-11-29 12:23:24','<h2><br>Nautilus Maritime</h2>		\n		<p>(“Nautilus”) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a “clean slate” approach that is aligned with future marine towing and transportation realities including:</p><p style=\"padding-left: 150px;\">Focus on regulatory compliance<br />Encouraging a safety conscious work environment<br />Responsible handling of equipment<br />Focus on vessel fuel efficiency</p>		\n			<h3>Our services</h3>		\n				<h3>\n					Photography\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.</p>\n				<h3>\n					Strategy\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.</p>\n			<a href=\"#\" role=\"button\">\n						See some more services\n					</a>\n			<h3>What else we provide?</h3>		\n				<h3>\n					Global coverage\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.</p>\n										<img width=\"1024\" height=\"681\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-300x200.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-768x511.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-830x552.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-230x153.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-350x233.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-480x319.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Wordpress\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Weibo\n				</a>\n		<p>Nautilus has been founded by an experienced New York based team with strong industry relationships focused on providing general towing and marine transportation services. Our decades of experience will enable us to serve multiple general towing segments such as:</p><ul><li>Ship docking</li><li>Tug and barge assist</li><li>Dredge support</li><li>Dry bulk towing including sand, stone, and scrap</li><li>Petroleum transportation as a third party, as needed</li></ul>','My front page','','inherit','closed','closed','','51-revision-v1','','','2018-11-29 12:23:24','2018-11-29 12:23:24','',51,'http://nautilusmarineservice.com/development/2018/11/29/51-revision-v1/',0,'revision','',0),(202,1,'2018-11-29 12:24:04','2018-11-29 12:24:04','','bay-boats-business-357508','','inherit','open','closed','','bay-boats-business-357508','','','2018-11-29 12:24:04','2018-11-29 12:24:04','',51,'http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508.jpg',0,'attachment','image/jpeg',0),(203,1,'2018-11-29 12:25:35','2018-11-29 12:25:35','<h2><br>Nautilus Maritime</h2>		\n		<p>(“Nautilus”) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a “clean slate” approach that is aligned with future marine towing and transportation realities including:</p><p style=\"padding-left: 150px;\">Focus on regulatory compliance<br />Encouraging a safety conscious work environment<br />Responsible handling of equipment<br />Focus on vessel fuel efficiency</p>		\n			<h3>Our services</h3>		\n				<h3>\n					Photography\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.</p>\n				<h3>\n					Strategy\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.</p>\n			<a href=\"#\" role=\"button\">\n						See some more services\n					</a>\n			<h3>What else we provide?</h3>		\n				<h3>\n					Global coverage\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim.</p>\n										<img width=\"1024\" height=\"681\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-300x200.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-768x511.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-830x552.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-230x153.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-350x233.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-480x319.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Wordpress\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Weibo\n				</a>\n										<img width=\"768\" height=\"1152\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-768x1152.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-768x1152.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-200x300.jpg 200w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-683x1024.jpg 683w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-830x1245.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-350x525.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-480x720.jpg 480w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		<p>Nautilus has been founded by an experienced New York based team with strong industry relationships focused on providing general towing and marine transportation services. Our decades of experience will enable us to serve multiple general towing segments such as:</p><ul><li>Ship docking</li><li>Tug and barge assist</li><li>Dredge support</li><li>Dry bulk towing including sand, stone, and scrap</li><li>Petroleum transportation as a third party, as needed</li></ul>','My front page','','inherit','closed','closed','','51-revision-v1','','','2018-11-29 12:25:35','2018-11-29 12:25:35','',51,'http://nautilusmarineservice.com/development/2018/11/29/51-revision-v1/',0,'revision','',0),(260,1,'2018-12-19 14:03:05','2018-12-19 14:03:05','<h2>Nautilus Maritime Corporation</h2>		\n		<p>Nautilus Maritime Corporation is a privately owned business group that controls four maritime subsidiaries that compliment each other. It’s core activities are general marine towing and assists; bunkering for workboats; servicing the nascent US offshore wind sector, and maritime consulting. The group was formed by three veteran captains joined by a senior banker with maritime experience. General maritime towing and capital markets are part of our corporate DNA which allows us to invest and enter other associated sectors with modern and efficient equipment with well trained and attentive crew.</p>		\n			<h3>Our services</h3>		\n				<h3>\n					Nautilus Marine Towing and Transportation LLC\n				</h3>\n				<p>A subsidiary providing marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, this subsidiary operates 24 hours and 7 days a week. We also seek to enter container barge transportation activity (primarily PANYNJ Ports to Howland Hook, Red Hook and Hunts Point), and support DSNY seaborne container activity supporting NYC solid waste management program. This group includes our government business development team.</p>\n				<h3>\n					Nautilus Marine Energy Transportation LLC\n				</h3>\n				<p>A petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Initially this subsidiary will supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators and receive bilge water for disposal. In the future this subsidiary seeks to capitalize on developing seaborne transportation needs for Liquid Natural Gas (LNG), and LNG bunkering for commercial vessels once adopted in the Northeast.</p>\n			<h3>What else we provide?</h3>		\n				<h3>\n					Nautilus Solutions\n				</h3>\n				<p>Through our years experience and network of key marine professionals, we offer advice and support for business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering, and maritime accounting.</p>\n										<img width=\"1024\" height=\"681\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-300x200.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-768x511.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-830x552.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-230x153.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-350x233.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-480x319.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Linkedin\n				</a>\n										<img width=\"230\" height=\"345\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-200x300.jpg 200w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-768x1152.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-683x1024.jpg 683w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-830x1245.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-350x525.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-480x720.jpg 480w\" sizes=\"(max-width: 230px) 100vw, 230px\" />											\n		<h2>Who We Are</h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.</p>','My front page','','inherit','closed','closed','','51-revision-v1','','','2018-12-19 14:03:05','2018-12-19 14:03:05','',51,'http://nautilusmarineservice.com/development/2018/12/19/51-revision-v1/',0,'revision','',0),(249,1,'2018-12-05 19:24:10','2018-12-05 19:24:10','<h2>Nautilus Maritime</h2>		\n		<p>(“Nautilus”) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a “clean slate” approach that is aligned with future marine towing and transportation realities including:</p><p style=\"padding-left: 150px;\">Focus on regulatory compliance<br />Encouraging a safety conscious work environment<br />Responsible handling of equipment<br />Focus on vessel fuel efficiency</p>		\n			<h3>Our services</h3>		\n				<h3>\n					Nautilus Marine Towing and Transportation LLC\n				</h3>\n				<p>A subsidiary providing marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, this subsidiary operates 24 hours and 7 days a week. We also seek to enter container barge transportation activity (primarily PANYNJ Ports to Howland Hook, Red Hook and Hunts Point), and support DSNY seaborne container activity supporting NYC solid waste management program. This group includes our government business development team.</p>\n				<h3>\n					Nautilus Marine Energy Transportation LLC\n				</h3>\n				<p>A petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Initially this subsidiary will supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators and receive bilge water for disposal. In the future this subsidiary seeks to capitalize on developing seaborne transportation needs for Liquid Natural Gas (LNG), and LNG bunkering for commercial vessels once adopted in the Northeast.</p>\n			<h3>What else we provide?</h3>		\n				<h3>\n					Nautilus Solutions\n				</h3>\n				<p>Through our years experience and network of key marine professionals, we offer advice and support for business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering, and maritime accounting.</p>\n										<img width=\"1024\" height=\"681\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-300x200.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-768x511.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-830x552.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-230x153.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-350x233.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-480x319.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Linkedin\n				</a>\n										<img width=\"230\" height=\"345\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-200x300.jpg 200w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-768x1152.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-683x1024.jpg 683w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-830x1245.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-350x525.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-480x720.jpg 480w\" sizes=\"(max-width: 230px) 100vw, 230px\" />											\n		<h2>Who We Are</h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.</p>','My front page','','inherit','closed','closed','','51-revision-v1','','','2018-12-05 19:24:10','2018-12-05 19:24:10','',51,'http://nautilusmarineservice.com/development/2018/12/05/51-revision-v1/',0,'revision','',0),(231,1,'2018-12-04 15:30:42','2018-12-04 15:30:42','<h2>Nautilus Maritime</h2>		\n		<p>(“Nautilus”) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a “clean slate” approach that is aligned with future marine towing and transportation realities including:</p><p style=\"padding-left: 150px;\">Focus on regulatory compliance<br />Encouraging a safety conscious work environment<br />Responsible handling of equipment<br />Focus on vessel fuel efficiency</p>		\n			<h3>Our services</h3>		\n				<h3>\n					Nautilus Towing & Transportation\n				</h3>\n				<p>Nautilus Marine Towing and Transportation are forming a newly established general marine towing and transportation company based in New York. As an independent harbor assist provider, Nautilus will enter an under served market. The petroleum transportation segment of the maritime industry experienced a large scale consolidation in between the years of 2006 and 2008.  Much of the consolidation consisted of large oil transportation companies acquiring the assets of smaller, independent, third party tug operators.  This consolidation left very few independent, New York based, general towing providers, and even fewer providers with vessels greater than 2,000 horsepower. \nIt is our intention, to take Nautilus on a growth path to a medium sized operation, by focusing on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways. \n</p>\n				<h3>\n					Strategy\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.</p>\n			<h3>What else we provide?</h3>		\n				<h3>\n					Consulting\n				</h3>\n				<p>Nautilus offers consulting services through conducting qualitative and quantitative analysis to evaluate business decisions. Industries served include seaborne transportation, general marine and towing; workboat crewing, maritime shore side assets and container barge logistics.</p>\n										<img width=\"1024\" height=\"681\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-300x200.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-768x511.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-830x552.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-230x153.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-350x233.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-480x319.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Linkedin\n				</a>\n			<h2>Who We Are</h2>		\n										<img width=\"230\" height=\"345\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-200x300.jpg 200w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-768x1152.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-683x1024.jpg 683w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-830x1245.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-350x525.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-480x720.jpg 480w\" sizes=\"(max-width: 230px) 100vw, 230px\" />											\n		<p>Nautilus has been founded by an experienced New York based team with strong industry relationships focused on providing general towing and marine transportation services. Our decades of experience will enable us to serve multiple general towing segments such as:</p><ul><li>Ship docking</li><li>Tug and barge assist</li><li>Dredge support</li><li>Dry bulk towing including sand, stone, and scrap</li><li>Petroleum transportation as a third party, as needed</li></ul>','My front page','','inherit','closed','closed','','51-revision-v1','','','2018-12-04 15:30:42','2018-12-04 15:30:42','',51,'http://nautilusmarineservice.com/development/2018/12/04/51-revision-v1/',0,'revision','',0),(205,1,'2018-11-29 12:33:13','2018-11-29 12:33:13','<h2><br>Nautilus Maritime</h2>		\n		<p>(“Nautilus”) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a “clean slate” approach that is aligned with future marine towing and transportation realities including:</p><p style=\"padding-left: 150px;\">Focus on regulatory compliance<br />Encouraging a safety conscious work environment<br />Responsible handling of equipment<br />Focus on vessel fuel efficiency</p>		\n			<h3>Our services</h3>		\n				<h3>\n					Nautilus Towing & Transportation\n				</h3>\n				<p>Nautilus Marine Towing and Transportation are forming a newly established general marine towing and transportation company based in New York. As an independent harbor assist provider, Nautilus will enter an under served market. The petroleum transportation segment of the maritime industry experienced a large scale consolidation in between the years of 2006 and 2008.  Much of the consolidation consisted of large oil transportation companies acquiring the assets of smaller, independent, third party tug operators.  This consolidation left very few independent, New York based, general towing providers, and even fewer providers with vessels greater than 2,000 horsepower. \nIt is our intention, to take Nautilus on a growth path to a medium sized operation, by focusing on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways. \n</p>\n				<h3>\n					Strategy\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.</p>\n			<a href=\"#\" role=\"button\">\n						See some more services\n					</a>\n			<h3>What else we provide?</h3>		\n				<h3>\n					Consulting\n				</h3>\n				<p>Nautilus offers consulting services through conducting qualitative and quantitative analysis to evaluate business decisions. Industries served include seaborne transportation, general marine and towing; workboat crewing, maritime shore side assets and container barge logistics.</p>\n										<img width=\"1024\" height=\"681\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-300x200.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-768x511.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-830x552.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-230x153.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-350x233.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-480x319.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Wordpress\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Weibo\n				</a>\n			<h2>Who We Are</h2>		\n										<img width=\"768\" height=\"1152\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-768x1152.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-768x1152.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-200x300.jpg 200w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-683x1024.jpg 683w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-830x1245.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-350x525.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-480x720.jpg 480w\" sizes=\"(max-width: 768px) 100vw, 768px\" />											\n		<p>Nautilus has been founded by an experienced New York based team with strong industry relationships focused on providing general towing and marine transportation services. Our decades of experience will enable us to serve multiple general towing segments such as:</p><ul><li>Ship docking</li><li>Tug and barge assist</li><li>Dredge support</li><li>Dry bulk towing including sand, stone, and scrap</li><li>Petroleum transportation as a third party, as needed</li></ul>','My front page','','inherit','closed','closed','','51-revision-v1','','','2018-11-29 12:33:13','2018-11-29 12:33:13','',51,'http://nautilusmarineservice.com/development/2018/11/29/51-revision-v1/',0,'revision','',0),(206,1,'2018-11-29 12:35:02','2018-11-29 12:35:02','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:\r\n<blockquote>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.)</blockquote>\r\n...or something like this:\r\n<blockquote>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.</blockquote>\r\nAs a new WordPress user, you should go to <a href=\"http://nautilusmarineservice.com/development/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','About','','inherit','closed','closed','','2-revision-v1','','','2018-11-29 12:35:02','2018-11-29 12:35:02','',2,'http://nautilusmarineservice.com/development/2018/11/29/2-revision-v1/',0,'revision','',0),(207,1,'2018-11-29 12:35:27','2018-11-29 12:35:27','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:\r\n<blockquote>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.)</blockquote>\r\n...or something like this:\r\n<blockquote>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.</blockquote>\r\nAs a new WordPress user, you should go to <a href=\"http://demo.athemes.com/sydney-temp/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Our Fleet','','inherit','closed','closed','','50-revision-v1','','','2018-11-29 12:35:27','2018-11-29 12:35:27','',50,'http://nautilusmarineservice.com/development/2018/11/29/50-revision-v1/',0,'revision','',0),(256,1,'2018-12-19 13:54:57','2018-12-19 13:54:57','','logo650x160','','inherit','open','closed','','logo650x160','','','2018-12-19 13:54:57','2018-12-19 13:54:57','',0,'http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/logo650x160.png',0,'attachment','image/png',0),(209,1,'2018-11-29 12:36:10','2018-11-29 12:36:10','','Default Registration','','publish','closed','closed','','default-registration','','','2018-11-29 12:36:10','2018-11-29 12:36:10','',0,'http://nautilusmarineservice.com/development/um_form/default-registration/',0,'um_form','',0),(210,1,'2018-11-29 12:36:10','2018-11-29 12:36:10','','Default Login','','publish','closed','closed','','default-login','','','2018-11-29 12:36:10','2018-11-29 12:36:10','',0,'http://nautilusmarineservice.com/development/um_form/default-login/',0,'um_form','',0),(211,1,'2018-11-29 12:36:10','2018-11-29 12:36:10','','Default Profile','','publish','closed','closed','','default-profile','','','2018-11-29 12:36:10','2018-11-29 12:36:10','',0,'http://nautilusmarineservice.com/development/um_form/default-profile/',0,'um_form','',0),(212,1,'2018-11-29 12:36:10','2018-11-29 12:36:10','','Members','','publish','closed','closed','','members','','','2018-11-29 12:36:10','2018-11-29 12:36:10','',0,'http://nautilusmarineservice.com/development/um_directory/members/',0,'um_directory','',0),(215,1,'2018-11-29 12:36:29','2018-11-29 12:36:29','[ultimatemember form_id=\"209\"]','Register','','publish','closed','closed','','register','','','2018-11-29 12:36:29','2018-11-29 12:36:29','',0,'http://nautilusmarineservice.com/development/register/',0,'page','',0),(216,1,'2018-11-29 12:36:29','2018-11-29 12:36:29','[ultimatemember form_id=\"212\"]','Members','','publish','closed','closed','','members','','','2018-11-29 12:36:29','2018-11-29 12:36:29','',0,'http://nautilusmarineservice.com/development/members/',0,'page','',0),(217,1,'2018-11-29 12:36:29','2018-11-29 12:36:29','','Logout','','publish','closed','closed','','logout','','','2018-11-29 12:36:29','2018-11-29 12:36:29','',0,'http://nautilusmarineservice.com/development/logout/',0,'page','',0),(218,1,'2018-11-29 12:36:29','2018-11-29 12:36:29','[ultimatemember_account]','Account','','publish','closed','closed','','account','','','2018-11-29 12:36:29','2018-11-29 12:36:29','',0,'http://nautilusmarineservice.com/development/account/',0,'page','',0),(219,1,'2018-11-29 12:36:29','2018-11-29 12:36:29','[ultimatemember_password]','Password Reset','','publish','closed','closed','','password-reset','','','2018-11-29 12:36:29','2018-11-29 12:36:29','',0,'http://nautilusmarineservice.com/development/password-reset/',0,'page','',0),(220,1,'2018-11-29 12:37:34','2018-11-29 12:37:34','','Employee Login','','publish','closed','closed','','employee-login','','','2019-01-09 19:38:33','2019-01-09 19:38:33','',0,'http://nautilusmarineservice.com/development/?p=220',9,'nav_menu_item','',0),(221,1,'2018-11-29 12:37:34','2018-11-29 12:37:34',' ','','','publish','closed','closed','','221','','','2019-01-09 19:38:33','2019-01-09 19:38:33','',0,'http://nautilusmarineservice.com/development/?p=221',7,'nav_menu_item','',0),(226,1,'2018-11-29 13:09:37','2018-11-29 13:09:37','[ultimatemember form_id=\"210\"]','Login','','inherit','closed','closed','','214-revision-v1','','','2018-11-29 13:09:37','2018-11-29 13:09:37','',214,'http://nautilusmarineservice.com/development/2018/11/29/214-revision-v1/',0,'revision','',0),(229,1,'2018-11-29 13:14:18','2018-11-29 13:14:18','<h2>Our Fleet</h2>		\n										<img width=\"1024\" height=\"681\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-300x200.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-768x511.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-830x552.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-230x153.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-350x233.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-480x319.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>','Our Fleet','','inherit','closed','closed','','50-revision-v1','','','2018-11-29 13:14:18','2018-11-29 13:14:18','',50,'http://nautilusmarineservice.com/development/2018/11/29/50-revision-v1/',0,'revision','',0),(228,1,'2018-11-29 13:14:00','2018-11-29 13:14:00','<h2>Our Fleet</h2>		\n										<img width=\"1024\" height=\"681\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-300x200.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-768x511.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-830x552.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-230x153.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-350x233.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-480x319.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Our Fleet','','inherit','closed','closed','','50-revision-v1','','','2018-11-29 13:14:00','2018-11-29 13:14:00','',50,'http://nautilusmarineservice.com/development/2018/11/29/50-revision-v1/',0,'revision','',0),(233,1,'2018-12-04 16:14:20','2018-12-04 16:14:20','<h2>Nautilus Maritime</h2>		\n		<p>(“Nautilus”) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a “clean slate” approach that is aligned with future marine towing and transportation realities including:</p><p style=\"padding-left: 150px;\">Focus on regulatory compliance<br />Encouraging a safety conscious work environment<br />Responsible handling of equipment<br />Focus on vessel fuel efficiency</p>		\n			<h3>Our services</h3>		\n				<h3>\n					Nautilus Towing & Transportation\n				</h3>\n				<p>Nautilus Marine Towing and Transportation are forming a newly established general marine towing and transportation company based in New York. As an independent harbor assist provider, Nautilus will enter an under served market. The petroleum transportation segment of the maritime industry experienced a large scale consolidation in between the years of 2006 and 2008.  Much of the consolidation consisted of large oil transportation companies acquiring the assets of smaller, independent, third party tug operators.  This consolidation left very few independent, New York based, general towing providers, and even fewer providers with vessels greater than 2,000 horsepower. \nIt is our intention, to take Nautilus on a growth path to a medium sized operation, by focusing on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways. \n</p>\n				<h3>\n					Strategy\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.</p>\n			<h3>What else we provide?</h3>		\n				<h3>\n					Consulting\n				</h3>\n				<p>Nautilus offers consulting services through conducting qualitative and quantitative analysis to evaluate business decisions. Industries served include seaborne transportation, general marine and towing; workboat crewing, maritime shore side assets and container barge logistics.</p>\n										<img width=\"1024\" height=\"681\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-300x200.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-768x511.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-830x552.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-230x153.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-350x233.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-480x319.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Linkedin\n				</a>\n										<img width=\"230\" height=\"345\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-200x300.jpg 200w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-768x1152.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-683x1024.jpg 683w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-830x1245.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-350x525.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-480x720.jpg 480w\" sizes=\"(max-width: 230px) 100vw, 230px\" />											\n		<h2>Who We Are</h2><p>Nautilus has been founded by an experienced New York based team with strong industry relationships focused on providing general towing and marine transportation services. Our decades of experience will enable us to serve multiple general towing segments such as:</p><ul><li>Ship docking</li><li>Tug and barge assist</li><li>Dredge support</li><li>Dry bulk towing including sand, stone, and scrap</li><li>Petroleum transportation as a third party, as needed</li></ul>','My front page','','inherit','closed','closed','','51-revision-v1','','','2018-12-04 16:14:20','2018-12-04 16:14:20','',51,'http://nautilusmarineservice.com/development/2018/12/04/51-revision-v1/',0,'revision','',0),(232,1,'2018-12-04 16:13:48','2018-12-04 16:13:48','<h2>Nautilus Maritime</h2>		\n		<p>(“Nautilus”) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a “clean slate” approach that is aligned with future marine towing and transportation realities including:</p><p style=\"padding-left: 150px;\">Focus on regulatory compliance<br />Encouraging a safety conscious work environment<br />Responsible handling of equipment<br />Focus on vessel fuel efficiency</p>		\n			<h3>Our services</h3>		\n				<h3>\n					Nautilus Towing & Transportation\n				</h3>\n				<p>Nautilus Marine Towing and Transportation are forming a newly established general marine towing and transportation company based in New York. As an independent harbor assist provider, Nautilus will enter an under served market. The petroleum transportation segment of the maritime industry experienced a large scale consolidation in between the years of 2006 and 2008.  Much of the consolidation consisted of large oil transportation companies acquiring the assets of smaller, independent, third party tug operators.  This consolidation left very few independent, New York based, general towing providers, and even fewer providers with vessels greater than 2,000 horsepower. \nIt is our intention, to take Nautilus on a growth path to a medium sized operation, by focusing on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways. \n</p>\n				<h3>\n					Strategy\n				</h3>\n				<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean ipsum enim, commodo in sapien eget, accumsan maximus metus.</p>\n			<h3>What else we provide?</h3>		\n				<h3>\n					Consulting\n				</h3>\n				<p>Nautilus offers consulting services through conducting qualitative and quantitative analysis to evaluate business decisions. Industries served include seaborne transportation, general marine and towing; workboat crewing, maritime shore side assets and container barge logistics.</p>\n										<img width=\"1024\" height=\"681\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-300x200.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-768x511.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-830x552.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-230x153.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-350x233.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-480x319.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Linkedin\n				</a>\n			<h2>Who We Are</h2>		\n										<img width=\"230\" height=\"345\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-200x300.jpg 200w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-768x1152.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-683x1024.jpg 683w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-830x1245.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-350x525.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-480x720.jpg 480w\" sizes=\"(max-width: 230px) 100vw, 230px\" />											\n		<h2>Who We Are</h2><p>Nautilus has been founded by an experienced New York based team with strong industry relationships focused on providing general towing and marine transportation services. Our decades of experience will enable us to serve multiple general towing segments such as:</p><ul><li>Ship docking</li><li>Tug and barge assist</li><li>Dredge support</li><li>Dry bulk towing including sand, stone, and scrap</li><li>Petroleum transportation as a third party, as needed</li></ul>','My front page','','inherit','closed','closed','','51-revision-v1','','','2018-12-04 16:13:48','2018-12-04 16:13:48','',51,'http://nautilusmarineservice.com/development/2018/12/04/51-revision-v1/',0,'revision','',0),(234,1,'2018-12-04 16:16:54','2018-12-04 16:16:54','<h3><strong>Nautilus Towing &amp; Transportation LLC</strong></h3>		\n		<p>We provide marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, we operates 24 hours and 7 days a week.</p><p>As a new independent provider of third party marine towing services we are based in New York harbor and operate along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment.</p><p>Over the past 12 years, the New York harbor towing market experienced a sizable consolidation by larger towing and transportation companies. This consolidation left very few independent operators. The lack of responsible third party services with larger horsepower is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. After extensively studying needs of the towing market in New York harbor, understanding the increased regulatory and compliance environment, and its adverse impact on older tonnage, Nautilus adopted the “clean slate” approach that is aligned with the future of marine towing and transportation realities including:</p><ul><li>Focus on regulatory compliance</li><li>Best ensuring a safety conscious work environment</li><li>Responsible handling of equipment</li><li>Focus on fuel efficiency</li></ul>		\n										<img width=\"1024\" height=\"768\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-1024x768.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-1024x768.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-300x225.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-768x576.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-830x622.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-230x172.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-350x262.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-480x360.jpg 480w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU.jpg 1331w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />','Nautilus Marine Towing and Transportation LLC','','publish','closed','closed','','towing','','','2019-01-09 19:21:39','2019-01-09 19:21:39','',0,'http://nautilusmarineservice.com/development/?page_id=234',0,'page','',0),(235,1,'2018-12-04 16:16:54','2018-12-04 16:16:54','','Services','','inherit','closed','closed','','234-revision-v1','','','2018-12-04 16:16:54','2018-12-04 16:16:54','',234,'http://nautilusmarineservice.com/development/2018/12/04/234-revision-v1/',0,'revision','',0),(240,1,'2018-12-04 16:26:08','2018-12-04 16:26:08','<h3 style=\"font-weight: 500; font-size: 16px; margin-bottom: 10px;\"><strong>Nautilus Towing &amp; Transportation</strong></h3><p style=\"margin-bottom: 0px; text-align: left;\" data-elementor-setting-key=\"description_text\">Nautilus Marine Towing and Transportation are forming a newly established general marine towing and transportation company based in New York. As an independent harbor assist provider, Nautilus will enter an under served market. The petroleum transportation segment of the maritime industry experienced a large scale consolidation in between the years of 2006 and 2008. Much of the consolidation consisted of large oil transportation companies acquiring the assets of smaller, independent, third party tug operators. This consolidation left very few independent, New York based, general towing providers, and even fewer providers with vessels greater than 2,000 horsepower. It is our intention, to take Nautilus on a growth path to a medium sized operation, by focusing on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways.</p>','Services','','inherit','closed','closed','','234-revision-v1','','','2018-12-04 16:26:08','2018-12-04 16:26:08','',234,'http://nautilusmarineservice.com/development/2018/12/04/234-revision-v1/',0,'revision','',0),(238,1,'2018-12-04 16:22:07','2018-12-04 16:22:07','<h3 style=\"font-weight: 500; font-size: 16px; margin-bottom: 10px; background-color: #bcbcbc;\">Nautilus Towing &amp; Transportation</h3><p style=\"margin-bottom: 0px; background-color: #bcbcbc; text-align: left;\" data-elementor-setting-key=\"description_text\">Nautilus Marine Towing and Transportation are forming a newly established general marine towing and transportation company based in New York. As an independent harbor assist provider, Nautilus will enter an under served market. The petroleum transportation segment of the maritime industry experienced a large scale consolidation in between the years of 2006 and 2008. Much of the consolidation consisted of large oil transportation companies acquiring the assets of smaller, independent, third party tug operators. This consolidation left very few independent, New York based, general towing providers, and even fewer providers with vessels greater than 2,000 horsepower. It is our intention, to take Nautilus on a growth path to a medium sized operation, by focusing on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways.</p>		\n										<img width=\"1024\" height=\"768\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/nytug-1024x768.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/nytug-1024x768.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/nytug-e1543940389798-300x225.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/nytug-768x576.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/nytug-830x623.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/nytug-e1543940389798-230x172.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/nytug-e1543940389798-350x262.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/nytug-480x360.jpg 480w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/nytug-e1543940389798.jpg 351w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />','Services','','inherit','closed','closed','','234-revision-v1','','','2018-12-04 16:22:07','2018-12-04 16:22:07','',234,'http://nautilusmarineservice.com/development/2018/12/04/234-revision-v1/',0,'revision','',0),(285,1,'2019-01-03 13:32:20','2019-01-03 13:32:20','<img width=\"1024\" height=\"768\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-1024x768.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-1024x768.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-300x225.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-768x576.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-830x623.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-230x173.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-350x263.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-480x360.jpg 480w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08.jpg 1140w\" sizes=\"(max-width: 1024px) 100vw, 1024px\">\n<h3>Nautilus Marine Energy Transportation LLC</h3>\nA newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.','Elementor #276','','inherit','closed','closed','','276-revision-v1','','','2019-01-03 13:32:20','2019-01-03 13:32:20','',276,'http://nautilusmarineservice.com/development/2019/01/03/276-revision-v1/',0,'revision','',0),(241,1,'2018-12-04 16:28:00','2018-12-04 16:28:00','','oie_4172628HKpa0fQU','','inherit','open','closed','','oie_4172628hkpa0fqu','','','2018-12-04 16:28:00','2018-12-04 16:28:00','',234,'http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU.jpg',0,'attachment','image/jpeg',0),(243,1,'2018-12-04 16:29:12','2018-12-04 16:29:12','<h3><strong>Nautilus Towing &amp; Transportation</strong></h3>		\n		<p style=\"margin-bottom: 0px; text-align: left;\" data-elementor-setting-key=\"description_text\">Nautilus Marine Towing and Transportation are forming a newly established general marine towing and transportation company based in New York. As an independent harbor assist provider, Nautilus will enter an under served market. The petroleum transportation segment of the maritime industry experienced a large scale consolidation in between the years of 2006 and 2008. Much of the consolidation consisted of large oil transportation companies acquiring the assets of smaller, independent, third party tug operators. This consolidation left very few independent, New York based, general towing providers, and even fewer providers with vessels greater than 2,000 horsepower. It is our intention, to take Nautilus on a growth path to a medium sized operation, by focusing on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways.</p>		\n										<img width=\"1024\" height=\"768\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-1024x768.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-1024x768.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-300x225.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-768x576.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-830x622.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-230x172.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-350x262.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-480x360.jpg 480w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU.jpg 1331w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />','Services','','inherit','closed','closed','','234-revision-v1','','','2018-12-04 16:29:12','2018-12-04 16:29:12','',234,'http://nautilusmarineservice.com/development/2018/12/04/234-revision-v1/',0,'revision','',0),(242,1,'2018-12-04 16:28:08','2018-12-04 16:28:08','<h3 style=\"font-weight: 500; font-size: 16px; margin-bottom: 10px;\"><strong>Nautilus Towing &amp; Transportation</strong></h3><p style=\"margin-bottom: 0px; text-align: left;\" data-elementor-setting-key=\"description_text\">Nautilus Marine Towing and Transportation are forming a newly established general marine towing and transportation company based in New York. As an independent harbor assist provider, Nautilus will enter an under served market. The petroleum transportation segment of the maritime industry experienced a large scale consolidation in between the years of 2006 and 2008. Much of the consolidation consisted of large oil transportation companies acquiring the assets of smaller, independent, third party tug operators. This consolidation left very few independent, New York based, general towing providers, and even fewer providers with vessels greater than 2,000 horsepower. It is our intention, to take Nautilus on a growth path to a medium sized operation, by focusing on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways.</p>		\n										<img width=\"1024\" height=\"768\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-1024x768.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-1024x768.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-300x225.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-768x576.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-830x622.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-230x172.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-350x262.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-480x360.jpg 480w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU.jpg 1331w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />','Services','','inherit','closed','closed','','234-revision-v1','','','2018-12-04 16:28:08','2018-12-04 16:28:08','',234,'http://nautilusmarineservice.com/development/2018/12/04/234-revision-v1/',0,'revision','',0),(244,1,'2018-12-04 22:35:51','2018-12-04 22:35:51','','cropped-night-79624_1920.jpg','','inherit','open','closed','','cropped-night-79624_1920-jpg','','','2018-12-04 22:35:51','2018-12-04 22:35:51','',0,'http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/cropped-night-79624_1920.jpg',0,'attachment','image/jpeg',0),(246,1,'2018-12-04 22:37:06','2018-12-04 22:37:06','http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/cropped-oie_QwA4hmAdSI8Z-1.png','cropped-oie_QwA4hmAdSI8Z-1.png','','inherit','open','closed','','cropped-oie_qwa4hmadsi8z-1-png','','','2018-12-04 22:37:06','2018-12-04 22:37:06','',0,'http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/cropped-oie_QwA4hmAdSI8Z-1.png',0,'attachment','image/png',0),(251,1,'2018-12-05 19:28:01','2018-12-05 19:28:01','<h2>Our Fleet</h2>		\n										<img width=\"1024\" height=\"681\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-300x200.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-768x511.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-830x552.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-230x153.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-350x233.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-480x319.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		A Focus on Innovation\nCompanies that leverage digital technologies to move people or goods faster and cheaper will be future winners. We seek to create and maintain a competitive advantage through advancements in gathering and analyzing logistics, weather and tidal data to plan further and more accurately. We believe this approach is a perfect union for businesses seeking a competitive edge and necessary for companies hoping to compete in the future.</br></br>\nOn-going innovations to include:</br></br>\n<u>Engineering and technology improvements</u>\n<ul>\n 	<li>For our fleet all tug and barge components analyzed and optimized. Applying latest technology to minimize fuel consumption and emissions without compromising high levels of performance.</li>\n 	<li>New technologies are continually being developed to improve industrial and business operations. In shipping the aim is that they also make the industry safer and reduce its environmental impact.</li>\n 	<li>Understanding and proposing technologies and emerging solutions that look set to make significant changes to commercial shipping in the near future.</li>\n</ul>\nStudying and understanding well developed sensor technologies in other industries, how they are becoming increasingly intelligent, and how to incorporate in maritime practices. It provides better situational awareness and offers our crew  the power to carry out better decision-making.','Our Fleet','','inherit','closed','closed','','50-revision-v1','','','2018-12-05 19:28:01','2018-12-05 19:28:01','',50,'http://nautilusmarineservice.com/development/2018/12/05/50-revision-v1/',0,'revision','',0),(250,1,'2018-12-05 19:25:39','2018-12-05 19:25:39','<h2>Our Fleet</h2>		\n										<img width=\"1024\" height=\"681\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-300x200.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-768x511.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-830x552.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-230x153.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-350x233.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-480x319.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		<p>A Focus on Innovation</p><p> </p><p>Companies that leverage digital technologies to move people or goods faster and cheaper will be future winners. We seek to create and maintain a competitive advantage through advancements in gathering and analyzing logistics, weather and tidal data to plan further and more accurately. We believe this approach is a perfect union for businesses seeking a competitive edge and necessary for companies hoping to compete in the future.</p><p> </p><p> </p><p>On-going innovations to include:</p><p> </p><p>            <u>Engineering and technology improvements</u></p><ul><li>For our fleet all tug and barge components analyzed and optimized. Applying latest technology to minimize fuel consumption and emissions without compromising high levels of performance.</li><li>New technologies are continually being developed to improve industrial and business operations. In shipping the aim is that they also make the industry safer and reduce its environmental impact.</li><li>Understanding and proposing technologies and emerging solutions that look set to make significant changes to commercial shipping in the near future.</li></ul><p>Studying and understanding well developed sensor technologies in other industries, how they are becoming increasingly intelligent, and how to incorporate in maritime practices. It provides better situational awareness and offers our crew  the power to carry out better decision-making.</p>','Our Fleet','','inherit','closed','closed','','50-revision-v1','','','2018-12-05 19:25:39','2018-12-05 19:25:39','',50,'http://nautilusmarineservice.com/development/2018/12/05/50-revision-v1/',0,'revision','',0),(252,1,'2018-12-05 19:28:35','2018-12-05 19:28:35','<h2>Our Fleet</h2>		\n										<img width=\"1024\" height=\"681\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-300x200.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-768x511.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-830x552.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-230x153.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-350x233.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-480x319.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		A Focus on Innovation\nCompanies that leverage digital technologies to move people or goods faster and cheaper will be future winners. We seek to create and maintain a competitive advantage through advancements in gathering and analyzing logistics, weather and tidal data to plan further and more accurately. We believe this approach is a perfect union for businesses seeking a competitive edge and necessary for companies hoping to compete in the future.</br></br>\nOn-going innovations to include:</br></br>\n<u>Engineering and technology improvements</u>\n<ul>\n 	<li>For our fleet all tug and barge components analyzed and optimized. Applying latest technology to minimize fuel consumption and emissions without compromising high levels of performance.</li>\n 	<li>New technologies are continually being developed to improve industrial and business operations. In shipping the aim is that they also make the industry safer and reduce its environmental impact.</li>\n 	<li>Understanding and proposing technologies and emerging solutions that look set to make significant changes to commercial shipping in the near future.</li>\n</ul></br>\nStudying and understanding well developed sensor technologies in other industries, how they are becoming increasingly intelligent, and how to incorporate in maritime practices. It provides better situational awareness and offers our crew  the power to carry out better decision-making.','Our Fleet','','inherit','closed','closed','','50-revision-v1','','','2018-12-05 19:28:35','2018-12-05 19:28:35','',50,'http://nautilusmarineservice.com/development/2018/12/05/50-revision-v1/',0,'revision','',0),(254,1,'2018-12-05 19:34:40','2018-12-05 19:34:40','<p><strong>Nautilus Marine Towing and Transportation LLC </strong>is a newly established general marine towing and transportation company based in New York. As an independent harbor assist provider, Nautilus is entering an under served market. The petroleum transportation segment of the maritime industry experienced a large scale consolidation in between the years of 2006 and 2008.  Much of the consolidation consisted of large oil transportation companies acquiring the assets of smaller, independent, third party tug operators.  This consolidation left very few independent, New York based, general towing providers, and even fewer providers with vessels greater than 2,000 horsepower. </p><p>It is our intention, to take Nautilus on a growth path to a medium sized operation, by focusing on acquisition of high quality vessels in the second hand market, and employing mariners with a deep familiarly of the local, and regional waterways.</p><p>Our approach is one of experienced New York based operators, with strong industry relationships, providing general towing and marine transportation services. With the capabilities to serve such market segments as (i) ship / barge / general vessel assist, (ii) construction and dredge support, and (iii) petroleum transportation.</p><p>Our operating strategy and experienced management team provide the fundamental tools to deliver superior service over time, safeguard the environment and comply with an increasing nexus of regulation.</p><p>Our vision is guided by a goal of being an unquestionable customer centric company that maintains realistic and transparent relationships with customers, partners and employees.</p><p><u>Leadership and Trust</u></p><p>Nautilus Marine Towing and Transportation is a U.S. owned and operated company providing services in the New York Harbor region. It is a privately owned, founded and based in New York. The partners coming together to take Nautilus on a growth path include mariners and former owners with a deep understanding of the local and regional maritime industry, and complimented with an experienced senior banker formerly covering maritime activity.</p>','About','','inherit','closed','closed','','2-revision-v1','','','2018-12-05 19:34:40','2018-12-05 19:34:40','',2,'http://nautilusmarineservice.com/development/2018/12/05/2-revision-v1/',0,'revision','',0),(258,1,'2018-12-19 13:59:28','2018-12-19 13:59:28','','oie_yWKMN54E63Rh','','inherit','open','closed','','oie_ywkmn54e63rh','','','2018-12-19 13:59:28','2018-12-19 13:59:28','',0,'http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_yWKMN54E63Rh.png',0,'attachment','image/png',0),(259,1,'2018-12-19 13:59:39','2018-12-19 13:59:39','{\n    \"sydney::site_logo\": {\n        \"value\": \"http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_yWKMN54E63Rh.png\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-12-19 13:59:39\"\n    }\n}','','','trash','closed','closed','','1b567669-6aba-4468-8029-cef79080c1d7','','','2018-12-19 13:59:39','2018-12-19 13:59:39','',0,'http://nautilusmarineservice.com/development/2018/12/19/1b567669-6aba-4468-8029-cef79080c1d7/',0,'customize_changeset','',0),(261,1,'2018-12-19 14:07:11','2018-12-19 14:07:11','<h2>Nautilus Maritime Corporation</h2>		\n		<p>Nautilus Maritime Corporation is a privately owned business group that controls four maritime subsidiaries that compliment each other. It’s core activities are general marine towing and assists; bunkering for workboats; servicing the nascent US offshore wind sector, and maritime consulting. The group was formed by three veteran captains joined by a senior banker with maritime experience. General maritime towing and capital markets are part of our corporate DNA which allows us to invest and enter other associated sectors with modern and efficient equipment with well trained and attentive crew.</p>		\n			<h3>Our services</h3>		\n				<h3>\n					Nautilus Marine Towing and Transportation LLC\n				</h3>\n				<p>A subsidiary providing marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, this subsidiary operates 24 hours and 7 days a week. We also seek to enter container barge transportation activity (primarily PANYNJ Ports to Howland Hook, Red Hook and Hunts Point), and support DSNY seaborne container activity supporting NYC solid waste management program. This group includes our government business development team.\n(“Nautilus”) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a “clean slate” approach that is aligned with future marine towing and transportation realities including:\n● Focus on regulatory compliance\n● Encouraging a safety conscious work environment\n● Responsible handling of equipment\n● Focus on vessel fuel efficiency\n</p>\n				<h3>\n					Nautilus Marine Energy Transportation LLC\n				</h3>\n				<p>A petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Initially this subsidiary will supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators and receive bilge water for disposal. In the future this subsidiary seeks to capitalize on developing seaborne transportation needs for Liquid Natural Gas (LNG), and LNG bunkering for commercial vessels once adopted in the Northeast.</p>\n			<h3>What else we provide?</h3>		\n				<h3>\n					Nautilus Solutions\n				</h3>\n				<p>Through our years experience and network of key marine professionals, we offer advice and support for business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering, and maritime accounting.</p>\n										<img width=\"1024\" height=\"681\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-300x200.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-768x511.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-830x552.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-230x153.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-350x233.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-480x319.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Linkedin\n				</a>\n										<img width=\"230\" height=\"345\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-200x300.jpg 200w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-768x1152.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-683x1024.jpg 683w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-830x1245.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-350x525.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-480x720.jpg 480w\" sizes=\"(max-width: 230px) 100vw, 230px\" />											\n		<h2>Who We Are</h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.</p>','My front page','','inherit','closed','closed','','51-revision-v1','','','2018-12-19 14:07:11','2018-12-19 14:07:11','',51,'http://nautilusmarineservice.com/development/2018/12/19/51-revision-v1/',0,'revision','',0),(263,1,'2018-12-19 14:32:08','2018-12-19 14:32:08','<h2>Nautilus Maritime Corporation</h2>		\n		<p>Nautilus Maritime Corporation is a privately owned business group that controls four maritime subsidiaries that compliment each other. It’s core activities are general marine towing and assists; bunkering for workboats; servicing the nascent US offshore wind sector, and maritime consulting. The group was formed by three veteran captains joined by a senior banker with maritime experience. General maritime towing and capital markets are part of our corporate DNA which allows us to invest and enter other associated sectors with modern and efficient equipment with well trained and attentive crew.</p>		\n			<h3>Our services</h3>		\n		<p><strong>Nautilus Marine Energy Transportation LLC</strong></p><p>A subsidiary providing marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, this subsidiary operates 24 hours and 7 days a week. We also seek to enter container barge transportation activity (primarily PANYNJ Ports to Howland Hook, Red Hook and Hunts Point), and support DSNY seaborne container activity supporting NYC solid waste management program. This group includes our government business development team.(“Nautilus”) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a “clean slate” approach that is aligned with future marine towing and transportation realities including:</p><ul><li>Focus on regulatory compliance</li><li>Encouraging a safety conscious work environment</li><li>Responsible handling of equipment</li><li>Focus on vessel fuel efficiency</li></ul>		\n		<p><strong>Nautilus Marine Energy Transportation LLC</strong></p><p>A petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Initially this subsidiary will supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators and receive bilge water for disposal. In the future this subsidiary seeks to capitalize on developing seaborne transportation needs for Liquid Natural Gas (LNG), and LNG bunkering for commercial vessels once adopted in the Northeast.</p>		\n			<h3>What else we provide?</h3>		\n				<h3>\n					Nautilus Solutions\n				</h3>\n				<p>Through our years experience and network of key marine professionals, we offer advice and support for business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering, and maritime accounting.</p>\n										<img width=\"1024\" height=\"681\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-300x200.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-768x511.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-830x552.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-230x153.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-350x233.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-480x319.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Linkedin\n				</a>\n										<img width=\"230\" height=\"345\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-200x300.jpg 200w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-768x1152.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-683x1024.jpg 683w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-830x1245.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-350x525.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-480x720.jpg 480w\" sizes=\"(max-width: 230px) 100vw, 230px\" />											\n		<h2>Who We Are</h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.</p>','My front page','','inherit','closed','closed','','51-revision-v1','','','2018-12-19 14:32:08','2018-12-19 14:32:08','',51,'http://nautilusmarineservice.com/development/2018/12/19/51-revision-v1/',0,'revision','',0),(264,1,'2018-12-19 14:34:15','2018-12-19 14:34:15','<h2>Nautilus Maritime Corporation</h2>		\n		<p>Nautilus Maritime Corporation is a privately owned business group that controls four maritime subsidiaries that compliment each other. It’s core activities are general marine towing and assists; bunkering for workboats; servicing the nascent US offshore wind sector, and maritime consulting. The group was formed by three veteran captains joined by a senior banker with maritime experience. General maritime towing and capital markets are part of our corporate DNA which allows us to invest and enter other associated sectors with modern and efficient equipment with well trained and attentive crew.</p>		\n			<h3>Our services</h3>		\n		<p style=\"text-align: center;\"><strong>Nautilus Marine Towing and Transportation LLC</strong></p><p>A subsidiary providing marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, this subsidiary operates 24 hours and 7 days a week. We also seek to enter container barge transportation activity (primarily PANYNJ Ports to Howland Hook, Red Hook and Hunts Point), and support DSNY seaborne container activity supporting NYC solid waste management program. This group includes our government business development team.(“Nautilus”) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a “clean slate” approach that is aligned with future marine towing and transportation realities including:</p><ul><li>Focus on regulatory compliance</li><li>Encouraging a safety conscious work environment</li><li>Responsible handling of equipment</li><li>Focus on vessel fuel efficiency</li></ul>		\n		<p style=\"text-align: center;\"><strong>Nautilus Marine Energy Transportation LLC</strong></p><p>A petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Initially this subsidiary will supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators and receive bilge water for disposal. In the future this subsidiary seeks to capitalize on developing seaborne transportation needs for Liquid Natural Gas (LNG), and LNG bunkering for commercial vessels once adopted in the Northeast.</p>		\n			<h3>What else we provide?</h3>		\n				<h3>\n					Nautilus Solutions\n				</h3>\n				<p>Through our years experience and network of key marine professionals, we offer advice and support for business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering, and maritime accounting.</p>\n										<img width=\"1024\" height=\"681\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-300x200.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-768x511.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-830x552.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-230x153.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-350x233.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-480x319.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Linkedin\n				</a>\n										<img width=\"230\" height=\"345\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-200x300.jpg 200w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-768x1152.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-683x1024.jpg 683w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-830x1245.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-350x525.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-480x720.jpg 480w\" sizes=\"(max-width: 230px) 100vw, 230px\" />											\n		<h2>Who We Are</h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.</p>','My front page','','inherit','closed','closed','','51-revision-v1','','','2018-12-19 14:34:15','2018-12-19 14:34:15','',51,'http://nautilusmarineservice.com/development/2018/12/19/51-revision-v1/',0,'revision','',0),(265,1,'2018-12-19 14:34:59','2018-12-19 14:34:59','<h2>Nautilus Maritime Corporation</h2>		\n		<p>Nautilus Maritime Corporation is a privately owned business group that controls four maritime subsidiaries that compliment each other. It’s core activities are general marine towing and assists; bunkering for workboats; servicing the nascent US offshore wind sector, and maritime consulting. The group was formed by three veteran captains joined by a senior banker with maritime experience. General maritime towing and capital markets are part of our corporate DNA which allows us to invest and enter other associated sectors with modern and efficient equipment with well trained and attentive crew.</p>		\n			<h3>Our services</h3>		\n		<p style=\"text-align: center;\"><strong>Nautilus Marine Towing and Transportation LLC</strong></p><p>A subsidiary providing marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, this subsidiary operates 24 hours and 7 days a week. We also seek to enter container barge transportation activity (primarily PANYNJ Ports to Howland Hook, Red Hook and Hunts Point), and support DSNY seaborne container activity supporting NYC solid waste management program. This group includes our government business development team.(“Nautilus”) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a “clean slate” approach that is aligned with future marine towing and transportation realities including:</p><ul><li>Focus on regulatory compliance</li><li>Encouraging a safety conscious work environment</li><li>Responsible handling of equipment</li><li>Focus on vessel fuel efficiency</li></ul>		\n		<p style=\"text-align: center;\"><strong>Nautilus Marine Energy Transportation LLC</strong></p><p>A petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Initially this subsidiary will supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators and receive bilge water for disposal. In the future this subsidiary seeks to capitalize on developing seaborne transportation needs for Liquid Natural Gas (LNG), and LNG bunkering for commercial vessels once adopted in the Northeast.</p>		\n			<h3>What else we provide?</h3>		\n				<h3>\n					Nautilus Solutions\n				</h3>\n				<p>Through our years experience and network of key marine professionals, we offer advice and support for business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering, and maritime accounting.</p>\n										<img width=\"1024\" height=\"681\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-300x200.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-768x511.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-830x552.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-230x153.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-350x233.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-480x319.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Linkedin\n				</a>\n										<img width=\"230\" height=\"345\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-200x300.jpg 200w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-768x1152.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-683x1024.jpg 683w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-830x1245.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-350x525.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-480x720.jpg 480w\" sizes=\"(max-width: 230px) 100vw, 230px\" />											\n		<h2>Who We Are</h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.</p>','My front page','','inherit','closed','closed','','51-revision-v1','','','2018-12-19 14:34:59','2018-12-19 14:34:59','',51,'http://nautilusmarineservice.com/development/2018/12/19/51-revision-v1/',0,'revision','',0),(266,1,'2018-12-19 14:36:12','2018-12-19 14:36:12','<h2>Nautilus Maritime Corporation</h2>		\n		<p>Nautilus Maritime Corporation is a privately owned business group that controls four maritime subsidiaries that compliment each other. It’s core activities are general marine towing and assists; bunkering for workboats; servicing the nascent US offshore wind sector, and maritime consulting. The group was formed by three veteran captains joined by a senior banker with maritime experience. General maritime towing and capital markets are part of our corporate DNA which allows us to invest and enter other associated sectors with modern and efficient equipment with well trained and attentive crew.</p>		\n			<h3>Our services</h3>		\n		<p style=\"text-align: center;\"><strong>Nautilus Marine Towing and Transportation LLC</strong></p><p>A subsidiary providing marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, this subsidiary operates 24 hours and 7 days a week. We also seek to enter container barge transportation activity (primarily PANYNJ Ports to Howland Hook, Red Hook and Hunts Point), and support DSNY seaborne container activity supporting NYC solid waste management program. This group includes our government business development team.</p><p>(“Nautilus”) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a “clean slate” approach that is aligned with future marine towing and transportation realities including:</p><ul><li>Focus on regulatory compliance</li><li>Encouraging a safety conscious work environment</li><li>Responsible handling of equipment</li><li>Focus on vessel fuel efficiency</li></ul>		\n		<p style=\"text-align: center;\"><strong>Nautilus Marine Energy Transportation LLC</strong></p><p>A petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Initially this subsidiary will supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators and receive bilge water for disposal. In the future this subsidiary seeks to capitalize on developing seaborne transportation needs for Liquid Natural Gas (LNG), and LNG bunkering for commercial vessels once adopted in the Northeast.</p>		\n			<h3>What else we provide?</h3>		\n				<h3>\n					Nautilus Solutions\n				</h3>\n				<p>Through our years experience and network of key marine professionals, we offer advice and support for business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering, and maritime accounting.</p>\n										<img width=\"1024\" height=\"681\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-300x200.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-768x511.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-830x552.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-230x153.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-350x233.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-480x319.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Linkedin\n				</a>\n										<img width=\"230\" height=\"345\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-200x300.jpg 200w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-768x1152.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-683x1024.jpg 683w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-830x1245.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-350x525.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-480x720.jpg 480w\" sizes=\"(max-width: 230px) 100vw, 230px\" />											\n		<h2>Who We Are</h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.</p>','My front page','','inherit','closed','closed','','51-revision-v1','','','2018-12-19 14:36:12','2018-12-19 14:36:12','',51,'http://nautilusmarineservice.com/development/2018/12/19/51-revision-v1/',0,'revision','',0),(267,1,'2018-12-19 14:41:15','2018-12-19 14:41:15','<h2>Nautilus Maritime Corporation</h2>		\n		<p>Nautilus Maritime Corporation is a privately owned business group that controls four maritime subsidiaries that compliment each other. It’s core activities are general marine towing and assists; bunkering for workboats; servicing the nascent US offshore wind sector, and maritime consulting. The group was formed by three veteran captains joined by a senior banker with maritime experience. General maritime towing and capital markets are part of our corporate DNA which allows us to invest and enter other associated sectors with modern and efficient equipment with well trained and attentive crew.</p>		\n			<h3>Our services</h3>		\n		<p style=\"text-align: center;\"><strong>Nautilus Marine Towing and Transportation LLC</strong></p><p>A subsidiary providing marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, this subsidiary operates 24 hours and 7 days a week. We also seek to enter container barge transportation activity (primarily PANYNJ Ports to Howland Hook, Red Hook and Hunts Point), and support DSNY seaborne container activity supporting NYC solid waste management program. This group includes our government business development team.</p><p>(“Nautilus”) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a “clean slate” approach that is aligned with future marine towing and transportation realities including:</p><ul><li>Focus on regulatory compliance</li><li>Encouraging a safety conscious work environment</li><li>Responsible handling of equipment</li><li>Focus on vessel fuel efficiency</li></ul>		\n		<p style=\"text-align: center;\"><strong>Nautilus Marine Energy Transportation LLC</strong></p><p>A petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Initially this subsidiary will supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators and receive bilge water for disposal. In the future this subsidiary seeks to capitalize on developing seaborne transportation needs for Liquid Natural Gas (LNG), and LNG bunkering for commercial vessels once adopted in the Northeast.</p>		\n		<p style=\"text-align: center;\"><strong>Nautilus Solutions</strong></p><p>Through our years experience and network of key marine professionals, we offer advice and support for business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering, and maritime accounting.</p>		\n			<h3>What else we provide?</h3>		\n										<img width=\"1024\" height=\"681\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-300x200.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-768x511.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-830x552.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-230x153.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-350x233.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-480x319.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Linkedin\n				</a>\n										<img width=\"230\" height=\"345\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-200x300.jpg 200w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-768x1152.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-683x1024.jpg 683w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-830x1245.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-350x525.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-480x720.jpg 480w\" sizes=\"(max-width: 230px) 100vw, 230px\" />											\n		<h2>Who We Are</h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.</p>','My front page','','inherit','closed','closed','','51-revision-v1','','','2018-12-19 14:41:15','2018-12-19 14:41:15','',51,'http://nautilusmarineservice.com/development/2018/12/19/51-revision-v1/',0,'revision','',0),(269,1,'2018-12-19 14:47:10','2018-12-19 14:47:10','<h2>Nautilus Maritime Corporation</h2>		\n		<p>Nautilus Maritime Corporation is a privately owned business group that controls four maritime subsidiaries that compliment each other. It’s core activities are general marine towing and assists; bunkering for workboats; servicing the nascent US offshore wind sector, and maritime consulting. The group was formed by three veteran captains joined by a senior banker with maritime experience. General maritime towing and capital markets are part of our corporate DNA which allows us to invest and enter other associated sectors with modern and efficient equipment with well trained and attentive crew.</p>		\n			<h3>Our services</h3>		\n		<p style=\"text-align: center;\"><strong>Nautilus Marine Towing and Transportation LLC</strong></p><p>A subsidiary providing marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, this subsidiary operates 24 hours and 7 days a week. We also seek to enter container barge transportation activity (primarily PANYNJ Ports to Howland Hook, Red Hook and Hunts Point), and support DSNY seaborne container activity supporting NYC solid waste management program. This group includes our government business development team.</p><p>(“Nautilus”) as a new independent provider of third party marine towing services based in New York harbor and operating along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment. Over the past 12 years, the New York harbor towing market has experienced a sizable consolidation by larger towing and transportation companies. The consolidation has left very few independent operators. The lack of responsible third party services is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. Having extensively studied the needs of the towing market in New York harbor, Nautilus has adopted a “clean slate” approach that is aligned with future marine towing and transportation realities including:</p><ul><li>Focus on regulatory compliance</li><li>Encouraging a safety conscious work environment</li><li>Responsible handling of equipment</li><li>Focus on vessel fuel efficiency</li></ul>		\n		<p style=\"text-align: center;\"><strong>Nautilus Marine Energy Transportation LLC</strong></p><p>A petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Initially this subsidiary will supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators and receive bilge water for disposal. In the future this subsidiary seeks to capitalize on developing seaborne transportation needs for Liquid Natural Gas (LNG), and LNG bunkering for commercial vessels once adopted in the Northeast.</p>		\n		<p style=\"text-align: center;\"><strong>Nautilus Solutions</strong></p><p>Through our years experience and network of key marine professionals, we offer advice and support for business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering, and maritime accounting.</p>		\n		<p style=\"text-align: center;\"><strong>Nautilus Offshore Wind, LLC</strong></p><p>A subsidiary established to take advantage of the nascent Northeast Offshore Wind projects and developments. Nautilus Offshore Wind seeks to provide a complete range of maritime and offshore wind power infrastructure support services. Nautilus Offshore Wind seeks to provide a complete range of offshore wind project support services addressing the tetralogy of their life cycle. We are looking to enter the wind sector as a provider of maritime assets and logistics to support 4 phases of offshore wind projects: (1) Survey, (2) Construction, (3) Operations and Maintenance (O&amp;M), and (4) Decommissioning.</p>		\n			<h3>What else we provide?</h3>		\n										<img width=\"1024\" height=\"681\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-1024x681.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-300x200.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-768x511.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-830x552.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-230x153.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-350x233.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-3705035_1920-480x319.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Linkedin\n				</a>\n										<img width=\"230\" height=\"345\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-200x300.jpg 200w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-768x1152.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-683x1024.jpg 683w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-830x1245.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-350x525.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-480x720.jpg 480w\" sizes=\"(max-width: 230px) 100vw, 230px\" />											\n		<h2>Who We Are</h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.</p>','My front page','','inherit','closed','closed','','51-revision-v1','','','2018-12-19 14:47:10','2018-12-19 14:47:10','',51,'http://nautilusmarineservice.com/development/2018/12/19/51-revision-v1/',0,'revision','',0),(270,1,'2018-12-19 14:50:45','2018-12-19 14:50:45','','oie_eUCBoGULxzbd','','inherit','open','closed','','oie_eucbogulxzbd','','','2018-12-19 14:50:45','2018-12-19 14:50:45','',0,'http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_eUCBoGULxzbd.png',0,'attachment','image/png',0),(271,1,'2018-12-19 14:51:00','2018-12-19 14:51:00','{\n    \"sydney::site_logo\": {\n        \"value\": \"http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_eUCBoGULxzbd.png\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2018-12-19 14:51:00\"\n    }\n}','','','trash','closed','closed','','0ca4409d-d50d-46e5-b352-0de1ea1b8e28','','','2018-12-19 14:51:00','2018-12-19 14:51:00','',0,'http://nautilusmarineservice.com/development/2018/12/19/0ca4409d-d50d-46e5-b352-0de1ea1b8e28/',0,'customize_changeset','',0),(276,1,'2019-01-03 13:18:34','2019-01-03 13:18:34','<h3>Nautilus Marine Energy Transportation LLC</h3>		\n										<img width=\"1024\" height=\"768\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-1024x768.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-1024x768.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-300x225.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-768x576.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-830x623.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-230x173.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-350x263.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-480x360.jpg 480w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08.jpg 1140w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		<p>A newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.</p>','Nautilus Marine Energy Transportation LLC​','','publish','closed','closed','','elementor-276','','','2019-01-03 13:42:36','2019-01-03 13:42:36','',0,'http://nautilusmarineservice.com/development/?page_id=276',0,'page','',0),(277,1,'2019-01-03 13:15:43','2019-01-03 13:15:43','','Elementor #276','','inherit','closed','closed','','276-revision-v1','','','2019-01-03 13:15:43','2019-01-03 13:15:43','',276,'http://nautilusmarineservice.com/development/2019/01/03/276-revision-v1/',0,'revision','',0),(278,1,'2019-01-03 13:18:52','2019-01-03 13:18:52','<img width=\"1024\" height=\"768\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-89600_1920-1024x768.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-89600_1920-1024x768.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-89600_1920-300x225.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-89600_1920-768x576.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-89600_1920-830x623.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-89600_1920-230x173.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-89600_1920-350x263.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/tugboat-89600_1920-480x360.jpg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		<p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>','Elementor #276','','inherit','closed','closed','','276-revision-v1','','','2019-01-03 13:18:52','2019-01-03 13:18:52','',276,'http://nautilusmarineservice.com/development/2019/01/03/276-revision-v1/',0,'revision','',0),(295,1,'2019-01-03 13:41:26','2019-01-03 13:41:26','<img width=\"1024\" height=\"768\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-1024x768.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-1024x768.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-300x225.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-768x576.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-830x623.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-230x173.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-350x263.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-480x360.jpg 480w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08.jpg 1140w\" sizes=\"(max-width: 1024px) 100vw, 1024px\">\n\nA newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.','Nautilus Marine Energy Transportation LLC​','','inherit','closed','closed','','276-revision-v1','','','2019-01-03 13:41:26','2019-01-03 13:41:26','',276,'http://nautilusmarineservice.com/development/2019/01/03/276-revision-v1/',0,'revision','',0),(281,1,'2019-01-03 13:29:05','2019-01-03 13:29:05','<img width=\"1024\" height=\"768\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-1024x768.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-1024x768.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-300x225.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-768x576.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-830x623.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-230x173.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-350x263.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-480x360.jpg 480w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08.jpg 1140w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<h3>Nautilus Marine Energy Transportation LLC</h3>		\n		<p>A newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.</p>','Elementor #276','','inherit','closed','closed','','276-revision-v1','','','2019-01-03 13:29:05','2019-01-03 13:29:05','',276,'http://nautilusmarineservice.com/development/2019/01/03/276-revision-v1/',0,'revision','',0),(280,1,'2019-01-03 13:28:56','2019-01-03 13:28:56','','puscher-verkauf-08','','inherit','open','closed','','puscher-verkauf-08','','','2019-01-03 13:28:56','2019-01-03 13:28:56','',276,'http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08.jpg',0,'attachment','image/jpeg',0),(282,1,'2019-01-03 13:31:14','2019-01-03 13:31:14','','Nautilus Marine Energy Transportation','','publish','closed','closed','','nautilus-marine-energy-transportation-llc','','','2019-01-09 19:38:33','2019-01-09 19:38:33','',0,'http://nautilusmarineservice.com/development/?p=282',4,'nav_menu_item','',0),(283,1,'2019-01-03 13:31:14','2019-01-03 13:31:14','','Nautilus Marine Towing and Transportation','','publish','closed','closed','','283','','','2019-01-09 19:38:33','2019-01-09 19:38:33','',0,'http://nautilusmarineservice.com/development/?p=283',3,'nav_menu_item','',0),(284,1,'2019-01-03 13:31:14','2019-01-03 13:31:14','','Services','','publish','closed','closed','','services','','','2019-01-09 19:38:33','2019-01-09 19:38:33','',0,'http://nautilusmarineservice.com/development/?p=284',2,'nav_menu_item','',0),(286,1,'2019-01-03 13:33:08','2019-01-03 13:33:08','<img width=\"1024\" height=\"768\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-1024x768.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-1024x768.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-300x225.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-768x576.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-830x623.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-230x173.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-350x263.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-480x360.jpg 480w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08.jpg 1140w\" sizes=\"(max-width: 1024px) 100vw, 1024px\">\n<h3>Nautilus Marine Energy Transportation LLC</h3>\nA newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.','Nautilus Marine Energy Transportation LLC​','','inherit','closed','closed','','276-revision-v1','','','2019-01-03 13:33:08','2019-01-03 13:33:08','',276,'http://nautilusmarineservice.com/development/2019/01/03/276-revision-v1/',0,'revision','',0),(287,1,'2019-01-03 13:33:08','2019-01-03 13:33:08','<img width=\"1024\" height=\"768\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-1024x768.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-1024x768.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-300x225.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-768x576.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-830x623.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-230x173.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-350x263.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-480x360.jpg 480w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08.jpg 1140w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		<p>A newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.</p>','Nautilus Marine Energy Transportation LLC​','','inherit','closed','closed','','276-revision-v1','','','2019-01-03 13:33:08','2019-01-03 13:33:08','',276,'http://nautilusmarineservice.com/development/2019/01/03/276-revision-v1/',0,'revision','',0),(288,1,'2019-01-03 13:33:18','2019-01-03 13:33:18','<img width=\"1024\" height=\"768\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-1024x768.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-1024x768.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-300x225.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-768x576.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-830x623.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-230x173.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-350x263.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-480x360.jpg 480w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08.jpg 1140w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		<p>A newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.</p>','Nautilus Marine Energy Transportation LLC​','','inherit','closed','closed','','276-revision-v1','','','2019-01-03 13:33:18','2019-01-03 13:33:18','',276,'http://nautilusmarineservice.com/development/2019/01/03/276-revision-v1/',0,'revision','',0),(289,1,'2019-01-03 13:38:28','2019-01-03 13:38:28','<h3>Nautilus Solutions LLC</h3>		\n		<p>Our founding members have deep industry roots, market intelligence, and extensive relationships. Through our years of experience and a network of key marine professionals, we offer support and advice on a consulting basis to Jones Act maritime companies. Breadth of expertise ranges from business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering and financial accounting for U.S. owned maritime companies.</p>		\n										<img width=\"1024\" height=\"626\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-1024x626.jpeg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-1024x626.jpeg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-300x183.jpeg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-768x469.jpeg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-830x507.jpeg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-230x141.jpeg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-350x214.jpeg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-480x293.jpeg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />','Nautilus Solutions LLC','','publish','closed','closed','','nautilus-solutions-llc','','','2019-01-03 13:44:10','2019-01-03 13:44:10','',0,'http://nautilusmarineservice.com/development/?page_id=289',0,'page','',0),(290,1,'2019-01-03 13:34:41','2019-01-03 13:34:41','','Elementor #289','','inherit','closed','closed','','289-revision-v1','','','2019-01-03 13:34:41','2019-01-03 13:34:41','',289,'http://nautilusmarineservice.com/development/2019/01/03/289-revision-v1/',0,'revision','',0),(291,1,'2019-01-03 13:37:35','2019-01-03 13:37:35','','pexels-photo-356043','','inherit','open','closed','','pexels-photo-356043','','','2019-01-03 13:37:35','2019-01-03 13:37:35','',289,'http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043.jpeg',0,'attachment','image/jpeg',0),(292,1,'2019-01-03 13:38:56','2019-01-03 13:38:56','<p>Our founding members have deep industry roots, market intelligence, and extensive relationships. Through our years of experience and a network of key marine professionals, we offer support and advice on a consulting basis to Jones Act maritime companies. Breadth of expertise ranges from business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering and financial accounting for U.S. owned maritime companies.</p>		\n										<img width=\"1024\" height=\"626\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-1024x626.jpeg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-1024x626.jpeg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-300x183.jpeg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-768x469.jpeg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-830x507.jpeg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-230x141.jpeg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-350x214.jpeg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-480x293.jpeg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />','Nautilus Solutions LLC','','inherit','closed','closed','','289-revision-v1','','','2019-01-03 13:38:56','2019-01-03 13:38:56','',289,'http://nautilusmarineservice.com/development/2019/01/03/289-revision-v1/',0,'revision','',0),(293,1,'2019-01-03 13:40:02','2019-01-03 13:40:02','<h3>Nautilus Solutions LLC</h3>		\n		<p>Our founding members have deep industry roots, market intelligence, and extensive relationships. Through our years of experience and a network of key marine professionals, we offer support and advice on a consulting basis to Jones Act maritime companies. Breadth of expertise ranges from business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering and financial accounting for U.S. owned maritime companies.</p>		\n										<img width=\"1024\" height=\"626\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-1024x626.jpeg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-1024x626.jpeg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-300x183.jpeg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-768x469.jpeg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-830x507.jpeg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-230x141.jpeg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-350x214.jpeg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-480x293.jpeg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />','Nautilus Solutions LLC','','inherit','closed','closed','','289-revision-v1','','','2019-01-03 13:40:02','2019-01-03 13:40:02','',289,'http://nautilusmarineservice.com/development/2019/01/03/289-revision-v1/',0,'revision','',0),(294,1,'2019-01-03 13:40:50','2019-01-03 13:40:50','','Nautilus Solutions','','publish','closed','closed','','nautilus-solutions','','','2019-01-09 19:38:33','2019-01-09 19:38:33','',0,'http://nautilusmarineservice.com/development/?p=294',5,'nav_menu_item','',0),(297,1,'2019-01-03 13:42:36','2019-01-03 13:42:36','<h3>Nautilus Marine Energy Transportation LLC</h3>		\n										<img width=\"1024\" height=\"768\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-1024x768.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-1024x768.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-300x225.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-768x576.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-830x623.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-230x173.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-350x263.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08-480x360.jpg 480w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/puscher-verkauf-08.jpg 1140w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n		<p>A newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.</p>','Nautilus Marine Energy Transportation LLC​','','inherit','closed','closed','','276-revision-v1','','','2019-01-03 13:42:36','2019-01-03 13:42:36','',276,'http://nautilusmarineservice.com/development/2019/01/03/276-revision-v1/',0,'revision','',0),(298,1,'2019-01-03 13:43:19','2019-01-03 13:43:19','<h3>Nautilus Solutions LLC</h3>\nOur founding members have deep industry roots, market intelligence, and extensive relationships. Through our years of experience and a network of key marine professionals, we offer support and advice on a consulting basis to Jones Act maritime companies. Breadth of expertise ranges from business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering and financial accounting for U.S. owned maritime companies.\n\n<img width=\"1024\" height=\"626\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-1024x626.jpeg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-1024x626.jpeg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-300x183.jpeg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-768x469.jpeg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-830x507.jpeg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-230x141.jpeg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-350x214.jpeg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-480x293.jpeg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\">','Nautilus Solutions LLC','','inherit','closed','closed','','289-revision-v1','','','2019-01-03 13:43:19','2019-01-03 13:43:19','',289,'http://nautilusmarineservice.com/development/2019/01/03/289-revision-v1/',0,'revision','',0),(299,1,'2019-01-03 13:44:10','2019-01-03 13:44:10','<h3>Nautilus Solutions LLC</h3>		\n		<p>Our founding members have deep industry roots, market intelligence, and extensive relationships. Through our years of experience and a network of key marine professionals, we offer support and advice on a consulting basis to Jones Act maritime companies. Breadth of expertise ranges from business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering and financial accounting for U.S. owned maritime companies.</p>		\n										<img width=\"1024\" height=\"626\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-1024x626.jpeg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-1024x626.jpeg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-300x183.jpeg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-768x469.jpeg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-830x507.jpeg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-230x141.jpeg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-350x214.jpeg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2019/01/pexels-photo-356043-480x293.jpeg 480w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />','Nautilus Solutions LLC','','inherit','closed','closed','','289-revision-v1','','','2019-01-03 13:44:10','2019-01-03 13:44:10','',289,'http://nautilusmarineservice.com/development/2019/01/03/289-revision-v1/',0,'revision','',0),(300,1,'2019-01-03 13:45:20','2019-01-03 13:45:20','<h3>Nautilus Offshore Wind  LLC</h3>		\n		<p>A subsidiary established to take advantage of the nascent Northeast Offshore Wind projects and developments, Nautilus seeks to provide a complete range of maritime and offshore wind power infrastructure support services. As a provider a provider of maritime assets and logistics to support the 4 phases of offshore wind projects: (1) survey, (2) construction, (3) operations and maintenance and (4) decommissioning.</p>','Nautilus Offshore Wind  LLC','','publish','closed','closed','','nautilus-offshore-wind-llc','','','2019-01-03 13:46:06','2019-01-03 13:46:06','',0,'http://nautilusmarineservice.com/development/?page_id=300',0,'page','',0),(301,1,'2019-01-03 13:44:59','2019-01-03 13:44:59','','Nautilus Offshore Wind  LLC','','inherit','closed','closed','','300-revision-v1','','','2019-01-03 13:44:59','2019-01-03 13:44:59','',300,'http://nautilusmarineservice.com/development/2019/01/03/300-revision-v1/',0,'revision','',0),(302,1,'2019-01-03 13:46:06','2019-01-03 13:46:06','<h3>Nautilus Offshore Wind  LLC</h3>		\n		<p>A subsidiary established to take advantage of the nascent Northeast Offshore Wind projects and developments, Nautilus seeks to provide a complete range of maritime and offshore wind power infrastructure support services. As a provider a provider of maritime assets and logistics to support the 4 phases of offshore wind projects: (1) survey, (2) construction, (3) operations and maintenance and (4) decommissioning.</p>','Nautilus Offshore Wind  LLC','','inherit','closed','closed','','300-revision-v1','','','2019-01-03 13:46:06','2019-01-03 13:46:06','',300,'http://nautilusmarineservice.com/development/2019/01/03/300-revision-v1/',0,'revision','',0),(303,1,'2019-01-03 13:46:39','2019-01-03 13:46:39','','Nautilus Offshore Wind','','publish','closed','closed','','nautilus-offshore-wind','','','2019-01-09 19:38:33','2019-01-09 19:38:33','',0,'http://nautilusmarineservice.com/development/?p=303',6,'nav_menu_item','',0),(305,1,'2019-01-03 13:49:55','2019-01-03 13:49:55','<p>This is the WPForms preview page. All your form previews will be handled on this page.</p><p>The page is set to private, so it is not publicly accessible. Please do not delete this page :) .</p>','WPForms Preview','','private','closed','closed','','wpforms-preview','','','2019-01-03 13:49:55','2019-01-03 13:49:55','',0,'http://nautilusmarineservice.com/development/wpforms-preview/',0,'page','',0),(306,1,'2019-01-03 13:50:09','2019-01-03 13:50:09','{\"id\":\"306\",\"field_id\":4,\"fields\":[{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"simple\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},{\"id\":\"2\",\"type\":\"textarea\",\"label\":\"Comment or Message\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}],\"settings\":{\"form_title\":\"Contact\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"mike@nautilusmarineservice.com, birk@nautilusmarineservice.com, sam@nautilusmarineservice.com\",\"subject\":\"New Entry: Contact\",\"sender_name\":\"{field_id=\\\"0\\\"}\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"1\\\"}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us! We will be in touch with you shortly.<\\/p>\",\"message_scroll\":\"1\",\"page\":\"2\",\"redirect\":\"\"}}},\"meta\":{\"template\":\"contact\"}}','Contact','','publish','closed','closed','','contact','','','2019-01-09 19:25:22','2019-01-09 19:25:22','',0,'http://nautilusmarineservice.com/development/?post_type=wpforms&#038;p=306',0,'wpforms','',0),(307,1,'2019-01-03 14:01:16','2019-01-03 14:01:16','<h3>Please fill out the quick form and we will be in touch with lightning speed.</h3>		\n		<p>[wpforms id=\"306\" title=\"false\" description=\"false\"]</p>','Contact Us','','publish','closed','closed','','contact-us','','','2019-01-03 14:06:05','2019-01-03 14:06:05','',0,'http://nautilusmarineservice.com/development/?page_id=307',0,'page','',0),(308,1,'2019-01-03 13:54:38','2019-01-03 13:54:38','','Contact Us','','inherit','closed','closed','','307-revision-v1','','','2019-01-03 13:54:38','2019-01-03 13:54:38','',307,'http://nautilusmarineservice.com/development/2019/01/03/307-revision-v1/',0,'revision','',0),(309,1,'2019-01-03 14:02:03','2019-01-03 14:02:03','<h3>Please fill out the quick form and we will be in touch with lightning speed.</h3>','Contact Us','','inherit','closed','closed','','307-revision-v1','','','2019-01-03 14:02:03','2019-01-03 14:02:03','',307,'http://nautilusmarineservice.com/development/2019/01/03/307-revision-v1/',0,'revision','',0),(313,1,'2019-01-03 14:06:05','2019-01-03 14:06:05','<h3>Please fill out the quick form and we will be in touch with lightning speed.</h3>		\n		<p>[wpforms id=\"306\" title=\"false\" description=\"false\"]</p>','Contact Us','','inherit','closed','closed','','307-revision-v1','','','2019-01-03 14:06:05','2019-01-03 14:06:05','',307,'http://nautilusmarineservice.com/development/2019/01/03/307-revision-v1/',0,'revision','',0),(310,1,'2019-01-03 14:02:03','2019-01-03 14:02:03','<h3>Please fill out the quick form and we will be in touch with lightning speed.</h3>		\n		Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Contact Us','','inherit','closed','closed','','307-revision-v1','','','2019-01-03 14:02:03','2019-01-03 14:02:03','',307,'http://nautilusmarineservice.com/development/2019/01/03/307-revision-v1/',0,'revision','',0),(311,1,'2019-01-03 14:04:40','2019-01-03 14:04:40',' ','','','publish','closed','closed','','311','','','2019-01-09 19:38:33','2019-01-09 19:38:33','',0,'http://nautilusmarineservice.com/development/?p=311',8,'nav_menu_item','',0),(312,1,'2019-01-03 14:05:32','2019-01-03 14:05:32','<h3>Please fill out the quick form and we will be in touch with lightning speed.</h3>\nClick edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.','Contact Us','','inherit','closed','closed','','307-revision-v1','','','2019-01-03 14:05:32','2019-01-03 14:05:32','',307,'http://nautilusmarineservice.com/development/2019/01/03/307-revision-v1/',0,'revision','',0),(315,1,'2019-01-09 19:15:58','2019-01-09 19:15:58','<h2>Nautilus Maritime Corporation</h2>		\n		<p>Nautilus Maritime Corporation is a privately owned business group that controls several maritime subsidiaries that compliment each other. Our core activities are general marine towing and assists with capabilities to serve market segments of  ship / barge / general vessel assist;  construction and dredge support; and petroleum transportation.</p>		\n			<h3>Our services</h3>		\n		<p style=\"text-align: center;\"><strong>Nautilus Marine Towing and Transportation LLC</strong></p><p>We provide marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, we operates 24 hours and 7 days a week.</p><p>As a new independent provider of third party marine towing services we are based in New York harbor and operate along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment.</p><p>Over the past 12 years, the New York harbor towing market experienced a sizable consolidation by larger towing and transportation companies. This consolidation left very few independent operators. The lack of responsible third party services with larger horsepower is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. After extensively studying needs of the towing market in New York harbor, understanding the increased regulatory and compliance environment, and its adverse impact on older tonnage, Nautilus adopted the “clean slate” approach that is aligned with the future of marine towing and transportation realities including:</p><ul><li>Focus on regulatory compliance</li><li>Best ensuring a safety conscious work environment</li><li>Responsible handling of equipment</li><li>Focus on fuel efficiency</li></ul>		\n		<p style=\"text-align: center;\"><strong>Nautilus Marine Energy Transportation LLC</strong></p><p>A newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.</p>		\n		<p style=\"text-align: center;\"><strong>Nautilus Solutions</strong></p><p>Our founding members have deep industry roots, market intelligence, and extensive relationships. Through our years of experience and a network of key marine professionals, we offer support and advice on a consulting basis to Jones Act maritime companies. Breadth of expertise ranges from business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering and financial accounting for U.S. owned maritime companies.</p>		\n		<p style=\"text-align: center;\"><strong>Nautilus Offshore Wind, LLC</strong></p><p>A subsidiary established to take advantage of the nascent Northeast Offshore Wind projects and developments, Nautilus seeks to provide a complete range of maritime and offshore wind power infrastructure support services. As a provider a provider of maritime assets and logistics to support the 4 phases of offshore wind projects: (1) survey, (2) construction, (3) operations and maintenance and (4) decommissioning.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Linkedin\n				</a>\n										<img width=\"230\" height=\"345\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-200x300.jpg 200w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-768x1152.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-683x1024.jpg 683w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-830x1245.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-350x525.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-480x720.jpg 480w\" sizes=\"(max-width: 230px) 100vw, 230px\" />											\n		<h2>Who We Are</h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.</p>','My front page','','inherit','closed','closed','','51-revision-v1','','','2019-01-09 19:15:58','2019-01-09 19:15:58','',51,'http://nautilusmarineservice.com/development/2019/01/09/51-revision-v1/',0,'revision','',0),(316,1,'2019-01-09 19:16:07','2019-01-09 19:16:07','<h2>Nautilus Maritime Corporation</h2>		\n		<p>Nautilus Maritime Corporation is a privately owned business group that controls several maritime subsidiaries that compliment each other. Our core activities are general marine towing and assists with capabilities to serve market segments of  ship / barge / general vessel assist;  construction and dredge support and petroleum transportation.</p>		\n			<h3>Our services</h3>		\n		<p style=\"text-align: center;\"><strong>Nautilus Marine Towing and Transportation LLC</strong></p><p>We provide marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, we operates 24 hours and 7 days a week.</p><p>As a new independent provider of third party marine towing services we are based in New York harbor and operate along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment.</p><p>Over the past 12 years, the New York harbor towing market experienced a sizable consolidation by larger towing and transportation companies. This consolidation left very few independent operators. The lack of responsible third party services with larger horsepower is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. After extensively studying needs of the towing market in New York harbor, understanding the increased regulatory and compliance environment, and its adverse impact on older tonnage, Nautilus adopted the “clean slate” approach that is aligned with the future of marine towing and transportation realities including:</p><ul><li>Focus on regulatory compliance</li><li>Best ensuring a safety conscious work environment</li><li>Responsible handling of equipment</li><li>Focus on fuel efficiency</li></ul>		\n		<p style=\"text-align: center;\"><strong>Nautilus Marine Energy Transportation LLC</strong></p><p>A newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.</p>		\n		<p style=\"text-align: center;\"><strong>Nautilus Solutions</strong></p><p>Our founding members have deep industry roots, market intelligence, and extensive relationships. Through our years of experience and a network of key marine professionals, we offer support and advice on a consulting basis to Jones Act maritime companies. Breadth of expertise ranges from business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering and financial accounting for U.S. owned maritime companies.</p>		\n		<p style=\"text-align: center;\"><strong>Nautilus Offshore Wind, LLC</strong></p><p>A subsidiary established to take advantage of the nascent Northeast Offshore Wind projects and developments, Nautilus seeks to provide a complete range of maritime and offshore wind power infrastructure support services. As a provider a provider of maritime assets and logistics to support the 4 phases of offshore wind projects: (1) survey, (2) construction, (3) operations and maintenance and (4) decommissioning.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Linkedin\n				</a>\n										<img width=\"230\" height=\"345\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-200x300.jpg 200w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-768x1152.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-683x1024.jpg 683w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-830x1245.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-350x525.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-480x720.jpg 480w\" sizes=\"(max-width: 230px) 100vw, 230px\" />											\n		<h2>Who We Are</h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.</p>','My front page','','inherit','closed','closed','','51-revision-v1','','','2019-01-09 19:16:07','2019-01-09 19:16:07','',51,'http://nautilusmarineservice.com/development/2019/01/09/51-revision-v1/',0,'revision','',0),(317,1,'2019-01-09 19:16:39','2019-01-09 19:16:39','<h2>Nautilus Maritime Corporation</h2>		\n		<p>Nautilus Maritime Corporation is a privately owned business group that controls several maritime subsidiaries that compliment each other. Our core activities are general marine towing and assists with capabilities to serve market segments of  ship / barge / general vessel assist;  construction and dredge support and petroleum transportation.</p>		\n			<h3>Our services</h3>		\n		<p style=\"text-align: center;\"><strong>Nautilus Marine Towing and Transportation LLC</strong></p><p>We provide marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, we operates 24 hours and 7 days a week.</p><p>As a new independent provider of third party marine towing services we are based in New York harbor and operate along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment.</p><p>Over the past 12 years, the New York harbor towing market experienced a sizable consolidation by larger towing and transportation companies. This consolidation left very few independent operators. The lack of responsible third party services with larger horsepower is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. After extensively studying needs of the towing market in New York harbor, understanding the increased regulatory and compliance environment, and its adverse impact on older tonnage, Nautilus adopted the “clean slate” approach that is aligned with the future of marine towing and transportation realities including:</p><ul><li>Focus on regulatory compliance</li><li>Best ensuring a safety conscious work environment</li><li>Responsible handling of equipment</li><li>Focus on fuel efficiency</li></ul>		\n		<p style=\"text-align: center;\"><strong>Nautilus Marine Energy Transportation LLC</strong></p><p>A newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.</p>		\n		<p style=\"text-align: center;\"><strong>Nautilus Solutions, LLC</strong></p><p>Our founding members have deep industry roots, market intelligence, and extensive relationships. Through our years of experience and a network of key marine professionals, we offer support and advice on a consulting basis to Jones Act maritime companies. Breadth of expertise ranges from business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering and financial accounting for U.S. owned maritime companies.</p>		\n		<p style=\"text-align: center;\"><strong>Nautilus Offshore Wind, LLC</strong></p><p>A subsidiary established to take advantage of the nascent Northeast Offshore Wind projects and developments, Nautilus seeks to provide a complete range of maritime and offshore wind power infrastructure support services. As a provider a provider of maritime assets and logistics to support the 4 phases of offshore wind projects: (1) survey, (2) construction, (3) operations and maintenance and (4) decommissioning.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Linkedin\n				</a>\n										<img width=\"230\" height=\"345\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-200x300.jpg 200w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-768x1152.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-683x1024.jpg 683w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-830x1245.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-350x525.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-480x720.jpg 480w\" sizes=\"(max-width: 230px) 100vw, 230px\" />											\n		<h2>Who We Are</h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.</p>','My front page','','inherit','closed','closed','','51-revision-v1','','','2019-01-09 19:16:39','2019-01-09 19:16:39','',51,'http://nautilusmarineservice.com/development/2019/01/09/51-revision-v1/',0,'revision','',0),(318,1,'2019-01-09 19:16:45','2019-01-09 19:16:45','<h2>Nautilus Maritime Corporation</h2>		\n		<p>Nautilus Maritime Corporation is a privately owned business group that controls several maritime subsidiaries that compliment each other. Our core activities are general marine towing and assists with capabilities to serve market segments of  ship / barge / general vessel assist;  construction and dredge support and petroleum transportation.</p>		\n			<h3>Our services</h3>		\n		<p style=\"text-align: center;\"><strong>Nautilus Marine Towing and Transportation LLC</strong></p><p>We provide marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, we operates 24 hours and 7 days a week.</p><p>As a new independent provider of third party marine towing services we are based in New York harbor and operate along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment.</p><p>Over the past 12 years, the New York harbor towing market experienced a sizable consolidation by larger towing and transportation companies. This consolidation left very few independent operators. The lack of responsible third party services with larger horsepower is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. After extensively studying needs of the towing market in New York harbor, understanding the increased regulatory and compliance environment, and its adverse impact on older tonnage, Nautilus adopted the “clean slate” approach that is aligned with the future of marine towing and transportation realities including:</p><ul><li>Focus on regulatory compliance</li><li>Best ensuring a safety conscious work environment</li><li>Responsible handling of equipment</li><li>Focus on fuel efficiency</li></ul>		\n		<p style=\"text-align: center;\"><strong>Nautilus Marine Energy Transportation LLC</strong></p><p>A newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.</p>		\n		<p style=\"text-align: center;\"><strong>Nautilus Solutions LLC</strong></p><p>Our founding members have deep industry roots, market intelligence, and extensive relationships. Through our years of experience and a network of key marine professionals, we offer support and advice on a consulting basis to Jones Act maritime companies. Breadth of expertise ranges from business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering and financial accounting for U.S. owned maritime companies.</p>		\n		<p style=\"text-align: center;\"><strong>Nautilus Offshore Wind, LLC</strong></p><p>A subsidiary established to take advantage of the nascent Northeast Offshore Wind projects and developments, Nautilus seeks to provide a complete range of maritime and offshore wind power infrastructure support services. As a provider a provider of maritime assets and logistics to support the 4 phases of offshore wind projects: (1) survey, (2) construction, (3) operations and maintenance and (4) decommissioning.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Linkedin\n				</a>\n										<img width=\"230\" height=\"345\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-200x300.jpg 200w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-768x1152.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-683x1024.jpg 683w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-830x1245.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-350x525.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-480x720.jpg 480w\" sizes=\"(max-width: 230px) 100vw, 230px\" />											\n		<h2>Who We Are</h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.</p>','My front page','','inherit','closed','closed','','51-revision-v1','','','2019-01-09 19:16:45','2019-01-09 19:16:45','',51,'http://nautilusmarineservice.com/development/2019/01/09/51-revision-v1/',0,'revision','',0),(319,1,'2019-01-09 19:19:41','2019-01-09 19:19:41','<h2>Nautilus Maritime Corporation</h2>		\n		<p>Nautilus Maritime Corporation is a privately owned business group that controls several maritime subsidiaries that compliment each other. Our core activities are general marine towing and assists with capabilities to serve market segments of  ship / barge / general vessel assist;  construction and dredge support and petroleum transportation.</p>		\n			<h3>Our services</h3>		\n		<p style=\"text-align: center;\"><strong>Nautilus Marine Towing and Transportation LLC</strong></p><p>We provide marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, we operates 24 hours and 7 days a week.</p><p>As a new independent provider of third party marine towing services we are based in New York harbor and operate along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment.</p><p>Over the past 12 years, the New York harbor towing market experienced a sizable consolidation by larger towing and transportation companies. This consolidation left very few independent operators. The lack of responsible third party services with larger horsepower is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. After extensively studying needs of the towing market in New York harbor, understanding the increased regulatory and compliance environment, and its adverse impact on older tonnage, Nautilus adopted the “clean slate” approach that is aligned with the future of marine towing and transportation realities including:</p><ul><li>Focus on regulatory compliance</li><li>Best ensuring a safety conscious work environment</li><li>Responsible handling of equipment</li><li>Focus on fuel efficiency</li></ul>		\n		<p style=\"text-align: center;\"><strong>Nautilus Marine Energy Transportation LLC</strong></p><p>A newly formed petroleum and chemical transportation subsidiary to provide bunkering for tugs and workboats in NY harbor. Our focus is to supply Marine Diesel Oil (MDO), lube oil and potable water to commercial tug operators, and receive bilge water for disposal.</p>		\n		<p style=\"text-align: center;\"><strong>Nautilus Solutions LLC</strong></p><p>Our founding members have deep industry roots, market intelligence, and extensive relationships. Through our years of experience and a network of key marine professionals, we offer support and advice on a consulting basis to Jones Act maritime companies. Breadth of expertise ranges from business strategy, training, crewing, compliance, industry regulations, ship inspections, marine engineering and financial accounting for U.S. owned maritime companies.</p>		\n		<p style=\"text-align: center;\"><strong>Nautilus Offshore Wind, LLC</strong></p><p>A subsidiary established to take advantage of the nascent Northeast Offshore Wind projects and developments, Nautilus seeks to provide a complete range of maritime and offshore wind power infrastructure support services. As a provider a provider of maritime assets and logistics to support the 4 phases of offshore wind projects: (1) survey, (2) construction, (3) operations and maintenance and (4) decommissioning.</p>		\n							<a href=\"\" target=\"_blank\">\n					Facebook\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Twitter\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Google-plus\n				</a>\n							<a href=\"\" target=\"_blank\">\n					Linkedin\n				</a>\n										<img width=\"230\" height=\"345\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-230x345.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-200x300.jpg 200w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-768x1152.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-683x1024.jpg 683w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-830x1245.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-350x525.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/11/bay-boats-business-357508-480x720.jpg 480w\" sizes=\"(max-width: 230px) 100vw, 230px\" />											\n		<h2>Who We Are</h2><p>U.S. owned and operated marine solutions, transportation and logistics company providing services in four principle domestic markets: general marine towing and transportation; bunkering for workboats; support of offshore wind projects; and maritime consulting services.</p><p>The Group was formed by three veteran captains joined by a senior banker with maritime experience. General maritime towing and capital markets are part of our corporate DNA which allows us to invest and enter associated sectors with modern and efficient equipment. Recruiting well trained and safety conscious crew are core to what we do.</p>','My front page','','inherit','closed','closed','','51-revision-v1','','','2019-01-09 19:19:41','2019-01-09 19:19:41','',51,'http://nautilusmarineservice.com/development/2019/01/09/51-revision-v1/',0,'revision','',0),(320,1,'2019-01-09 19:21:39','2019-01-09 19:21:39','<h3><strong>Nautilus Towing &amp; Transportation LLC</strong></h3>		\n		<p>We provide marine harbor services that include tug and barge assists, ship assists, marine construction and dredge support, and ocean towage. With continual service, we operates 24 hours and 7 days a week.</p><p>As a new independent provider of third party marine towing services we are based in New York harbor and operate along the eastern seaboard. The company is focused on the 3,000 horsepower and higher market segment.</p><p>Over the past 12 years, the New York harbor towing market experienced a sizable consolidation by larger towing and transportation companies. This consolidation left very few independent operators. The lack of responsible third party services with larger horsepower is most apparent during peak seasons, times of abnormally strong currents and poor weather conditions. After extensively studying needs of the towing market in New York harbor, understanding the increased regulatory and compliance environment, and its adverse impact on older tonnage, Nautilus adopted the “clean slate” approach that is aligned with the future of marine towing and transportation realities including:</p><ul><li>Focus on regulatory compliance</li><li>Best ensuring a safety conscious work environment</li><li>Responsible handling of equipment</li><li>Focus on fuel efficiency</li></ul>		\n										<img width=\"1024\" height=\"768\" src=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-1024x768.jpg\" alt=\"\" srcset=\"http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-1024x768.jpg 1024w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-300x225.jpg 300w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-768x576.jpg 768w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-830x622.jpg 830w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-230x172.jpg 230w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-350x262.jpg 350w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU-480x360.jpg 480w, http://nautilusmarineservice.com/development/wp-content/uploads/2018/12/oie_4172628HKpa0fQU.jpg 1331w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />','Nautilus Marine Towing and Transportation LLC','','inherit','closed','closed','','234-revision-v1','','','2019-01-09 19:21:39','2019-01-09 19:21:39','',234,'http://nautilusmarineservice.com/development/2019/01/09/234-revision-v1/',0,'revision','',0);
/*!40000 ALTER TABLE `wpyt_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpyt_term_relationships`
--

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

--
-- Dumping data for table `wpyt_term_relationships`
--

LOCK TABLES `wpyt_term_relationships` WRITE;
/*!40000 ALTER TABLE `wpyt_term_relationships` DISABLE KEYS */;
INSERT INTO `wpyt_term_relationships` VALUES (1,1,0),(53,4,0),(169,5,0),(137,2,0),(141,3,0),(294,5,0),(144,2,0),(221,5,0),(220,5,0),(284,5,0),(282,5,0),(283,5,0),(303,5,0),(311,5,0);
/*!40000 ALTER TABLE `wpyt_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpyt_term_taxonomy`
--

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

--
-- Dumping data for table `wpyt_term_taxonomy`
--

LOCK TABLES `wpyt_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wpyt_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wpyt_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'category','',0,2),(3,3,'category','',0,1),(4,4,'elementor_library_type','',0,1),(5,5,'nav_menu','',0,9);
/*!40000 ALTER TABLE `wpyt_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpyt_termmeta`
--

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

--
-- Dumping data for table `wpyt_termmeta`
--

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

--
-- Table structure for table `wpyt_terms`
--

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

--
-- Dumping data for table `wpyt_terms`
--

LOCK TABLES `wpyt_terms` WRITE;
/*!40000 ALTER TABLE `wpyt_terms` DISABLE KEYS */;
INSERT INTO `wpyt_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Technology','technology',0),(3,'Work','work',0),(4,'page','page',0),(5,'Menu 1','menu-1',0);
/*!40000 ALTER TABLE `wpyt_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpyt_usermeta`
--

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

--
-- Dumping data for table `wpyt_usermeta`
--

LOCK TABLES `wpyt_usermeta` WRITE;
/*!40000 ALTER TABLE `wpyt_usermeta` DISABLE KEYS */;
INSERT INTO `wpyt_usermeta` VALUES (1,1,'nickname','wendell.koi@seaprosolutions.com'),(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,'wpyt_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wpyt_user_level','10'),(14,1,'dismissed_wp_pointers','wp496_privacy'),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"21653f324f57ffb12b6964e436dd0e9f6d94eda7e71556c9014ff1e649f83277\";a:4:{s:10:\"expiration\";i:1547234074;s:2:\"ip\";s:13:\"66.73.204.181\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36\";s:5:\"login\";i:1547061274;}}'),(17,1,'wpyt_user-settings','imgsize=full&libraryContent=browse&editor=tinymce&hidetb=1'),(18,1,'wpyt_user-settings-time','1544038501'),(19,1,'wpyt_dashboard_quick_press_last_post_id','272'),(20,1,'community-events-location','a:1:{s:2:\"ip\";s:11:\"66.73.204.0\";}'),(111,1,'_um_last_login','1547061274'),(21,1,'elementor_introduction','a:1:{i:2;b:1;}'),(22,1,'account_status','approved'),(23,1,'nav_menu_recently_edited','5'),(24,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(25,1,'metaboxhidden_nav-menus','a:2:{i:0;s:12:\"add-post_tag\";i:1;s:15:\"add-post_format\";}'),(26,1,'um_account_secure_fields','a:0:{}'),(27,2,'nickname','judetallis8020'),(28,2,'first_name','Jude'),(29,2,'last_name','Tallis'),(30,2,'description',''),(31,2,'rich_editing','true'),(32,2,'syntax_highlighting','true'),(33,2,'comment_shortcuts','false'),(34,2,'admin_color','fresh'),(35,2,'use_ssl','0'),(36,2,'show_admin_bar_front','true'),(37,2,'locale',''),(38,2,'wpyt_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(39,2,'wpyt_user_level','0'),(40,2,'synced_gravatar_hashed_id','17f01db6c8ce4a36f8957964036f4723'),(41,2,'submitted','a:9:{s:7:\"form_id\";s:3:\"209\";s:9:\"timestamp\";s:10:\"1543500341\";s:7:\"request\";s:0:\"\";s:8:\"_wpnonce\";s:10:\"b5840fc901\";s:16:\"_wp_http_referer\";s:22:\"/development/register/\";s:10:\"user_login\";s:14:\"judetallis8020\";s:10:\"first_name\";s:4:\"Jude\";s:9:\"last_name\";s:6:\"Tallis\";s:10:\"user_email\";s:26:\"judetallis@forum.freog.com\";}'),(42,2,'form_id','209'),(43,2,'timestamp','1543500341'),(44,2,'request',''),(45,2,'_wpnonce','b5840fc901'),(46,2,'_wp_http_referer','/development/register/'),(47,2,'user_login','judetallis8020'),(48,2,'um_user_profile_url_slug_user_login','judetallis8020'),(51,2,'account_status','approved'),(50,2,'full_name','judetallis8020'),(52,2,'session_tokens','a:2:{s:64:\"b97f1f918e6f1ae5a1c3f73e5b07246306b1ed0412a15599a56acb59e475901d\";a:4:{s:10:\"expiration\";i:1543673151;s:2:\"ip\";s:15:\"104.151.211.130\";s:2:\"ua\";s:69:\"Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17\";s:5:\"login\";i:1543500351;}s:64:\"cbfa7877307ea5cd55b1bb5276877a4798366cc021c434722ba65fca1dd55eb5\";a:4:{s:10:\"expiration\";i:1544710158;s:2:\"ip\";s:14:\"23.105.159.221\";s:2:\"ua\";s:69:\"Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17\";s:5:\"login\";i:1543500558;}}'),(53,2,'_um_last_login','1543500558'),(54,2,'um_account_secure_fields','a:0:{}'),(55,3,'nickname','linoschrader044'),(56,3,'first_name','Lino'),(57,3,'last_name','Schrader'),(58,3,'description',''),(59,3,'rich_editing','true'),(60,3,'syntax_highlighting','true'),(61,3,'comment_shortcuts','false'),(62,3,'admin_color','fresh'),(63,3,'use_ssl','0'),(64,3,'show_admin_bar_front','true'),(65,3,'locale',''),(66,3,'wpyt_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(67,3,'wpyt_user_level','0'),(68,3,'synced_gravatar_hashed_id','6694f6b804a20af754c6983dc3519b15'),(69,3,'submitted','a:9:{s:7:\"form_id\";s:3:\"209\";s:9:\"timestamp\";s:10:\"1543531862\";s:7:\"request\";s:0:\"\";s:8:\"_wpnonce\";s:10:\"b5840fc901\";s:16:\"_wp_http_referer\";s:22:\"/development/register/\";s:10:\"user_login\";s:15:\"linoschrader044\";s:10:\"first_name\";s:4:\"Lino\";s:9:\"last_name\";s:8:\"Schrader\";s:10:\"user_email\";s:20:\"gerty@buygsalist.com\";}'),(70,3,'form_id','209'),(71,3,'timestamp','1543531862'),(72,3,'request',''),(73,3,'_wpnonce','b5840fc901'),(74,3,'_wp_http_referer','/development/register/'),(75,3,'user_login','linoschrader044'),(76,3,'um_user_profile_url_slug_user_login','linoschrader044'),(79,3,'account_status','approved'),(78,3,'full_name','linoschrader044'),(80,3,'session_tokens','a:1:{s:64:\"f6d8113327b0d37b25a26b3bd6a75cb6f60a1c16de94e8f38e72359baece34f0\";a:4:{s:10:\"expiration\";i:1543704670;s:2:\"ip\";s:12:\"75.75.235.48\";s:2:\"ua\";s:69:\"Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17\";s:5:\"login\";i:1543531870;}}'),(81,3,'_um_last_login','1543531870'),(82,3,'um_account_secure_fields','a:0:{}'),(83,4,'nickname','stephanyw04'),(84,4,'first_name','Stephany'),(85,4,'last_name','Quarles'),(86,4,'description',''),(87,4,'rich_editing','true'),(88,4,'syntax_highlighting','true'),(89,4,'comment_shortcuts','false'),(90,4,'admin_color','fresh'),(91,4,'use_ssl','0'),(92,4,'show_admin_bar_front','true'),(93,4,'locale',''),(94,4,'wpyt_capabilities','a:1:{s:10:\"subscriber\";b:1;}'),(95,4,'wpyt_user_level','0'),(96,4,'synced_gravatar_hashed_id','8147d6b46424305019b97ff3190030b0'),(97,4,'submitted','a:9:{s:7:\"form_id\";s:3:\"209\";s:9:\"timestamp\";s:10:\"1543546332\";s:7:\"request\";s:0:\"\";s:8:\"_wpnonce\";s:10:\"e1294e69e0\";s:16:\"_wp_http_referer\";s:22:\"/development/register/\";s:10:\"user_login\";s:11:\"stephanyw04\";s:10:\"first_name\";s:8:\"Stephany\";s:9:\"last_name\";s:7:\"Quarles\";s:10:\"user_email\";s:31:\"marybeth@unisexsunglasses.store\";}'),(98,4,'form_id','209'),(99,4,'timestamp','1543546332'),(100,4,'request',''),(101,4,'_wpnonce','e1294e69e0'),(102,4,'_wp_http_referer','/development/register/'),(103,4,'user_login','stephanyw04'),(104,4,'um_user_profile_url_slug_user_login','stephanyw04'),(107,4,'account_status','approved'),(106,4,'full_name','stephanyw04'),(108,4,'session_tokens','a:1:{s:64:\"043989d8b6dc9b0dc660964dd253d2091d370bd60f92c5b37006424bed0815d0\";a:4:{s:10:\"expiration\";i:1543719141;s:2:\"ip\";s:15:\"181.177.111.120\";s:2:\"ua\";s:69:\"Opera/9.80 (Windows NT 6.2; Win64; x64) Presto/2.12.388 Version/12.17\";s:5:\"login\";i:1543546341;}}'),(109,4,'_um_last_login','1543546341'),(110,4,'um_account_secure_fields','a:0:{}'),(112,1,'obfx_ignore_visit_dashboard_notice','true');
/*!40000 ALTER TABLE `wpyt_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpyt_users`
--

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

--
-- Dumping data for table `wpyt_users`
--

LOCK TABLES `wpyt_users` WRITE;
/*!40000 ALTER TABLE `wpyt_users` DISABLE KEYS */;
INSERT INTO `wpyt_users` VALUES (1,'wendell.koi@seaprosolutions.com','$P$BNEWzsKvD1hzsMYK.5GNZsXZUZ8v2z/','wendell.koi@seaprosolutions.com','wendell.koi@seaprosolutions.com','','2018-11-29 02:08:07','',0,'wendell.koi@seaprosolutions.com'),(2,'judetallis8020','$P$BWw8GTTRtQRVW8Ew1pJL9P8zIWewlG1','judetallis8020','judetallis@forum.freog.com','','2018-11-29 14:05:47','1543500559:$P$BR5T96tYROsS8st8Se6JcbY/fAFdyK1',0,'Jude Tallis'),(3,'linoschrader044','$P$Bk9wAsm0Sv.H26P4co5.mMXy6R6qN1.','linoschrader044','gerty@buygsalist.com','','2018-11-29 22:51:08','1543531871:$P$BGST7aijIxdS7Ye8crwIQeAYc6ldUT0',0,'Lino Schrader'),(4,'stephanyw04','$P$BoXo9G5k6WzJV.RTX0UjerAz8ls2si/','stephanyw04','marybeth@unisexsunglasses.store','','2018-11-30 02:52:19','1543546342:$P$BCPXgB7kV7XT9TVzPWJ7rIpGijvYBU.',0,'Stephany Quarles');
/*!40000 ALTER TABLE `wpyt_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpyt_wpforms_lite`
--

DROP TABLE IF EXISTS `wpyt_wpforms_lite`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpyt_wpforms_lite` (
  `rid` int(10) NOT NULL AUTO_INCREMENT,
  `start` bigint(20) NOT NULL,
  `end` bigint(20) NOT NULL,
  `status` tinyint(2) NOT NULL DEFAULT 1,
  `date` int(10) NOT NULL,
  PRIMARY KEY (`rid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpyt_wpforms_lite`
--

LOCK TABLES `wpyt_wpforms_lite` WRITE;
/*!40000 ALTER TABLE `wpyt_wpforms_lite` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpyt_wpforms_lite` 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 2019-01-09 16:17:33
