/* DUPLICATOR-LITE (PHP BUILD MODE) MYSQL SCRIPT CREATED ON : 2020-05-27 02:05:32 */

/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;

SET FOREIGN_KEY_CHECKS = 0;

CREATE TABLE `lt_actionscheduler_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `hook` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `scheduled_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `scheduled_date_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `args` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `schedule` longtext COLLATE utf8mb4_unicode_ci,
  `group_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `attempts` int(11) NOT NULL DEFAULT '0',
  `last_attempt_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_attempt_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `claim_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `extended_args` varchar(8000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`action_id`),
  KEY `hook` (`hook`),
  KEY `status` (`status`),
  KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
  KEY `args` (`args`),
  KEY `group_id` (`group_id`),
  KEY `last_attempt_gmt` (`last_attempt_gmt`),
  KEY `claim_id` (`claim_id`)
) ENGINE=InnoDB AUTO_INCREMENT=400 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_actionscheduler_claims` (
  `claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`claim_id`),
  KEY `date_created_gmt` (`date_created_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=1541 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_actionscheduler_groups` (
  `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`group_id`),
  KEY `slug` (`slug`(191))
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_actionscheduler_logs` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `action_id` bigint(20) unsigned NOT NULL,
  `message` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `log_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `log_date_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`log_id`),
  KEY `action_id` (`action_id`),
  KEY `log_date_gmt` (`log_date_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=700 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_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)),
  KEY `woo_idx_comment_type` (`comment_type`)
) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_db7_forms` (
  `form_id` bigint(20) NOT NULL AUTO_INCREMENT,
  `form_post_id` bigint(20) NOT NULL,
  `form_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `form_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`form_id`)
) ENGINE=InnoDB AUTO_INCREMENT=54 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_duplicator_packages` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(250) NOT NULL,
  `hash` varchar(50) NOT NULL,
  `status` int(11) NOT NULL,
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `owner` varchar(60) NOT NULL,
  `package` longtext NOT NULL,
  PRIMARY KEY (`id`),
  KEY `hash` (`hash`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;

CREATE TABLE `lt_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
  `link_rating` int(11) NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_mailchimp_carts` (
  `id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `cart` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_mailchimp_jobs` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `obj_id` text COLLATE utf8mb4_unicode_ci,
  `job` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=3226 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=2332 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

CREATE TABLE `lt_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=297 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT '0',
  `display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_wc_admin_note_actions` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `note_id` bigint(20) unsigned NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `query` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_primary` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`action_id`),
  KEY `note_id` (`note_id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_wc_admin_notes` (
  `note_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `locale` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `title` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `icon` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `content_data` longtext COLLATE utf8mb4_unicode_ci,
  `status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_reminder` datetime DEFAULT NULL,
  `is_snoozable` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`note_id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_wc_category_lookup` (
  `category_tree_id` bigint(20) unsigned NOT NULL,
  `category_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`category_tree_id`,`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_wc_customer_lookup` (
  `customer_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `username` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `first_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `date_last_active` timestamp NULL DEFAULT NULL,
  `date_registered` timestamp NULL DEFAULT NULL,
  `country` char(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `postcode` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `city` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `state` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`customer_id`),
  UNIQUE KEY `user_id` (`user_id`),
  KEY `email` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_wc_download_log` (
  `download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `permission_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip_address` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
  PRIMARY KEY (`download_log_id`),
  KEY `permission_id` (`permission_id`),
  KEY `timestamp` (`timestamp`),
  CONSTRAINT `fk_lt_wc_download_log_permission_id` FOREIGN KEY (`permission_id`) REFERENCES `lt_woocommerce_downloadable_product_permissions` (`permission_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_wc_order_coupon_lookup` (
  `order_id` bigint(20) unsigned NOT NULL,
  `coupon_id` bigint(20) unsigned NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `discount_amount` double NOT NULL DEFAULT '0',
  PRIMARY KEY (`order_id`,`coupon_id`),
  KEY `coupon_id` (`coupon_id`),
  KEY `date_created` (`date_created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_wc_order_product_lookup` (
  `order_item_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `variation_id` bigint(20) unsigned NOT NULL,
  `customer_id` bigint(20) unsigned DEFAULT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `product_qty` int(11) NOT NULL,
  `product_net_revenue` double NOT NULL DEFAULT '0',
  `product_gross_revenue` double NOT NULL DEFAULT '0',
  `coupon_amount` double NOT NULL DEFAULT '0',
  `tax_amount` double NOT NULL DEFAULT '0',
  `shipping_amount` double NOT NULL DEFAULT '0',
  `shipping_tax_amount` double NOT NULL DEFAULT '0',
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`),
  KEY `product_id` (`product_id`),
  KEY `customer_id` (`customer_id`),
  KEY `date_created` (`date_created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_wc_order_stats` (
  `order_id` bigint(20) unsigned NOT NULL,
  `parent_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `num_items_sold` int(11) NOT NULL DEFAULT '0',
  `total_sales` double NOT NULL DEFAULT '0',
  `tax_total` double NOT NULL DEFAULT '0',
  `shipping_total` double NOT NULL DEFAULT '0',
  `net_total` double NOT NULL DEFAULT '0',
  `returning_customer` tinyint(1) DEFAULT NULL,
  `status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `customer_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_id`),
  KEY `date_created` (`date_created`),
  KEY `customer_id` (`customer_id`),
  KEY `status` (`status`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_wc_order_tax_lookup` (
  `order_id` bigint(20) unsigned NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `shipping_tax` double NOT NULL DEFAULT '0',
  `order_tax` double NOT NULL DEFAULT '0',
  `total_tax` double NOT NULL DEFAULT '0',
  PRIMARY KEY (`order_id`,`tax_rate_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `date_created` (`date_created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_wc_product_meta_lookup` (
  `product_id` bigint(20) NOT NULL,
  `sku` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
  `virtual` tinyint(1) DEFAULT '0',
  `downloadable` tinyint(1) DEFAULT '0',
  `min_price` decimal(19,4) DEFAULT NULL,
  `max_price` decimal(19,4) DEFAULT NULL,
  `onsale` tinyint(1) DEFAULT '0',
  `stock_quantity` double DEFAULT NULL,
  `stock_status` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT 'instock',
  `rating_count` bigint(20) DEFAULT '0',
  `average_rating` decimal(3,2) DEFAULT '0.00',
  `total_sales` bigint(20) DEFAULT '0',
  `tax_status` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT 'taxable',
  `tax_class` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
  PRIMARY KEY (`product_id`),
  KEY `virtual` (`virtual`),
  KEY `downloadable` (`downloadable`),
  KEY `stock_status` (`stock_status`),
  KEY `stock_quantity` (`stock_quantity`),
  KEY `onsale` (`onsale`),
  KEY `min_max_price` (`min_price`,`max_price`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_wc_tax_rate_classes` (
  `tax_rate_class_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_class_id`),
  UNIQUE KEY `slug` (`slug`(191))
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_wc_webhooks` (
  `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `delivery_url` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `secret` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `topic` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `api_version` smallint(4) NOT NULL,
  `failure_count` smallint(10) NOT NULL DEFAULT '0',
  `pending_delivery` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`webhook_id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_woocommerce_api_keys` (
  `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `description` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `permissions` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `consumer_key` char(64) COLLATE utf8mb4_unicode_ci NOT NULL,
  `consumer_secret` char(43) COLLATE utf8mb4_unicode_ci NOT NULL,
  `nonces` longtext COLLATE utf8mb4_unicode_ci,
  `truncated_key` char(7) COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_access` datetime DEFAULT NULL,
  PRIMARY KEY (`key_id`),
  KEY `consumer_key` (`consumer_key`),
  KEY `consumer_secret` (`consumer_secret`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_label` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `attribute_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_orderby` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_public` int(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`attribute_id`),
  KEY `attribute_name` (`attribute_name`(20))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `download_id` varchar(36) COLLATE utf8mb4_unicode_ci NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `order_key` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_email` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `downloads_remaining` varchar(9) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access_expires` datetime DEFAULT NULL,
  `download_count` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`permission_id`),
  KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`),
  KEY `download_order_product` (`download_id`,`order_id`,`product_id`),
  KEY `order_id` (`order_id`),
  KEY `user_order_remaining_expires` (`user_id`,`order_id`,`downloads_remaining`,`access_expires`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_woocommerce_log` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `level` smallint(4) NOT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `context` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`log_id`),
  KEY `level` (`level`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_woocommerce_order_itemmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `order_item_id` (`order_item_id`),
  KEY `meta_key` (`meta_key`(32))
) ENGINE=InnoDB AUTO_INCREMENT=172 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_woocommerce_order_items` (
  `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_name` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `order_item_type` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `order_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`)
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_woocommerce_payment_tokenmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `payment_token_id` bigint(20) unsigned NOT NULL,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `payment_token_id` (`payment_token_id`),
  KEY `meta_key` (`meta_key`(32))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_woocommerce_payment_tokens` (
  `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `gateway_id` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `type` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`token_id`),
  KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_woocommerce_sessions` (
  `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `session_key` char(32) COLLATE utf8mb4_unicode_ci NOT NULL,
  `session_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `session_expiry` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`session_id`),
  UNIQUE KEY `session_key` (`session_key`)
) ENGINE=InnoDB AUTO_INCREMENT=206 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_woocommerce_shipping_zone_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_id` bigint(20) unsigned NOT NULL,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `location_id` (`location_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_woocommerce_shipping_zone_methods` (
  `zone_id` bigint(20) unsigned NOT NULL,
  `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `method_id` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `method_order` bigint(20) unsigned NOT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`instance_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_woocommerce_shipping_zones` (
  `zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `zone_order` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`zone_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_woocommerce_tax_rate_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

CREATE TABLE `lt_woocommerce_tax_rates` (
  `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tax_rate_country` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate` varchar(8) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_priority` bigint(20) unsigned NOT NULL,
  `tax_rate_compound` int(1) NOT NULL DEFAULT '0',
  `tax_rate_shipping` int(1) NOT NULL DEFAULT '1',
  `tax_rate_order` bigint(20) unsigned NOT NULL,
  `tax_rate_class` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_id`),
  KEY `tax_rate_country` (`tax_rate_country`),
  KEY `tax_rate_state` (`tax_rate_state`(2)),
  KEY `tax_rate_class` (`tax_rate_class`(10)),
  KEY `tax_rate_priority` (`tax_rate_priority`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


/* INSERT TABLE DATA: lt_actionscheduler_actions */
INSERT INTO `lt_actionscheduler_actions` VALUES("166", "action_scheduler/migration_hook", "complete", "2020-05-14 06:29:08", "2020-05-14 13:29:08", "[]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589437748;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589437748;}", "1", "1", "2020-05-14 06:29:13", "2020-05-14 13:29:13", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("167", "woocommerce_update_marketplace_suggestions", "complete", "2020-05-14 06:32:17", "2020-05-14 13:32:17", "[]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589437937;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589437937;}", "0", "1", "2020-05-14 06:32:20", "2020-05-14 13:32:20", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("168", "wc-admin_import_customers", "complete", "2020-05-14 08:13:16", "2020-05-14 15:13:16", "[1]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589443996;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589443996;}", "2", "1", "2020-05-14 08:14:15", "2020-05-14 15:14:15", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("169", "wc-admin_import_orders", "complete", "2020-05-14 08:13:16", "2020-05-14 15:13:16", "[177]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589443996;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589443996;}", "2", "1", "2020-05-14 08:14:15", "2020-05-14 15:14:15", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("170", "wc-admin_import_customers", "complete", "2020-05-14 08:16:38", "2020-05-14 15:16:38", "[1]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589444198;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589444198;}", "2", "1", "2020-05-14 08:17:18", "2020-05-14 15:17:18", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("171", "wc-admin_import_orders", "complete", "2020-05-14 08:16:38", "2020-05-14 15:16:38", "[179]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589444198;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589444198;}", "2", "1", "2020-05-14 08:17:18", "2020-05-14 15:17:18", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("172", "wc-admin_import_customers", "complete", "2020-05-14 08:55:58", "2020-05-14 15:55:58", "[1]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589446558;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589446558;}", "2", "1", "2020-05-14 08:56:22", "2020-05-14 15:56:22", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("173", "wc-admin_import_orders", "complete", "2020-05-14 08:55:58", "2020-05-14 15:55:58", "[184]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589446558;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589446558;}", "2", "1", "2020-05-14 08:56:22", "2020-05-14 15:56:22", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("174", "wc-admin_import_orders", "complete", "2020-05-14 14:22:49", "2020-05-14 21:22:49", "[177]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589466169;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589466169;}", "2", "1", "2020-05-14 14:23:58", "2020-05-14 21:23:58", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("175", "wc-admin_import_orders", "complete", "2020-05-14 14:22:49", "2020-05-14 21:22:49", "[179]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589466169;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589466169;}", "2", "1", "2020-05-14 14:23:58", "2020-05-14 21:23:58", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("176", "wc-admin_import_orders", "complete", "2020-05-14 14:22:49", "2020-05-14 21:22:49", "[184]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589466169;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589466169;}", "2", "1", "2020-05-14 14:23:58", "2020-05-14 21:23:58", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("177", "action_scheduler/migration_hook", "complete", "2020-05-18 03:09:52", "2020-05-18 10:09:52", "[]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589771392;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589771392;}", "1", "1", "2020-05-18 03:10:07", "2020-05-18 10:10:07", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("178", "wc-admin_import_customers", "complete", "2020-05-18 03:23:10", "2020-05-18 10:23:10", "[3]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589772190;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589772190;}", "2", "1", "2020-05-18 03:23:59", "2020-05-18 10:23:59", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("179", "wc-admin_import_orders", "complete", "2020-05-18 03:23:11", "2020-05-18 10:23:11", "[232]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589772191;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589772191;}", "2", "1", "2020-05-18 03:23:59", "2020-05-18 10:23:59", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("180", "wc-admin_import_customers", "complete", "2020-05-18 03:29:27", "2020-05-18 10:29:27", "[3]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589772567;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589772567;}", "2", "1", "2020-05-18 03:31:26", "2020-05-18 10:31:26", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("181", "wc-admin_import_orders", "complete", "2020-05-18 03:29:27", "2020-05-18 10:29:27", "[233]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589772567;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589772567;}", "2", "1", "2020-05-18 03:31:26", "2020-05-18 10:31:26", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("182", "wc-admin_import_customers", "complete", "2020-05-18 04:10:40", "2020-05-18 11:10:40", "[1]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589775040;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589775040;}", "2", "1", "2020-05-18 04:12:22", "2020-05-18 11:12:22", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("183", "wc-admin_import_orders", "complete", "2020-05-18 04:10:40", "2020-05-18 11:10:40", "[239]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589775040;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589775040;}", "2", "1", "2020-05-18 04:12:22", "2020-05-18 11:12:22", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("184", "wc_facebook_regenerate_feed", "complete", "2020-05-18 04:29:47", "2020-05-18 11:29:47", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589776187;s:18:\"\0*\0first_timestamp\";i:1589776187;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589776187;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 04:29:57", "2020-05-18 11:29:57", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("186", "wc_facebook_regenerate_feed", "complete", "2020-05-18 04:30:20", "2020-05-18 11:30:20", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589776220;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589776220;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 04:31:24", "2020-05-18 11:31:24", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("187", "wc_facebook_regenerate_feed", "complete", "2020-05-18 04:46:24", "2020-05-18 11:46:24", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589777184;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589777184;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 04:46:35", "2020-05-18 11:46:35", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("188", "wc-admin_import_customers", "complete", "2020-05-18 04:32:16", "2020-05-18 11:32:16", "[1]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589776336;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589776336;}", "2", "1", "2020-05-18 04:32:26", "2020-05-18 11:32:26", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("189", "wc-admin_import_orders", "complete", "2020-05-18 04:32:16", "2020-05-18 11:32:16", "[240]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589776336;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589776336;}", "2", "1", "2020-05-18 04:32:26", "2020-05-18 11:32:26", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("190", "wc-admin_import_orders", "complete", "2020-05-18 04:42:31", "2020-05-18 11:42:31", "[240]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589776951;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589776951;}", "2", "1", "2020-05-18 04:42:54", "2020-05-18 11:42:54", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("191", "wc-admin_import_orders", "complete", "2020-05-18 04:42:31", "2020-05-18 11:42:31", "[239]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589776951;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589776951;}", "2", "1", "2020-05-18 04:42:54", "2020-05-18 11:42:54", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("192", "wc-admin_import_orders", "complete", "2020-05-18 04:42:31", "2020-05-18 11:42:31", "[233]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589776951;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589776951;}", "2", "1", "2020-05-18 04:42:54", "2020-05-18 11:42:54", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("193", "wc-admin_import_orders", "complete", "2020-05-18 04:42:31", "2020-05-18 11:42:31", "[232]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589776951;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589776951;}", "2", "1", "2020-05-18 04:42:54", "2020-05-18 11:42:54", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("194", "wc-admin_import_orders", "complete", "2020-05-18 04:42:31", "2020-05-18 11:42:31", "[184]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589776951;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589776951;}", "2", "1", "2020-05-18 04:42:54", "2020-05-18 11:42:54", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("195", "wc-admin_import_orders", "complete", "2020-05-18 04:42:31", "2020-05-18 11:42:31", "[179]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589776951;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589776951;}", "2", "1", "2020-05-18 04:42:54", "2020-05-18 11:42:54", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("196", "wc-admin_import_orders", "complete", "2020-05-18 04:42:31", "2020-05-18 11:42:31", "[177]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589776951;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589776951;}", "2", "1", "2020-05-18 04:42:54", "2020-05-18 11:42:54", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("197", "wc_facebook_regenerate_feed", "complete", "2020-05-18 05:01:35", "2020-05-18 12:01:35", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589778095;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589778095;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 05:01:56", "2020-05-18 12:01:56", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("198", "wc_facebook_regenerate_feed", "complete", "2020-05-18 05:16:56", "2020-05-18 12:16:56", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589779016;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589779016;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 05:18:05", "2020-05-18 12:18:05", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("199", "wc-admin_import_customers", "complete", "2020-05-18 05:14:30", "2020-05-18 12:14:30", "[1]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589778870;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589778870;}", "2", "1", "2020-05-18 05:15:34", "2020-05-18 12:15:34", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("200", "wc-admin_import_orders", "complete", "2020-05-18 05:14:30", "2020-05-18 12:14:30", "[248]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589778870;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589778870;}", "2", "1", "2020-05-18 05:15:34", "2020-05-18 12:15:34", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("201", "wc_facebook_regenerate_feed", "complete", "2020-05-18 05:33:05", "2020-05-18 12:33:05", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589779985;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589779985;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 05:33:05", "2020-05-18 12:33:05", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("202", "wc-admin_import_customers", "complete", "2020-05-18 05:26:02", "2020-05-18 12:26:02", "[4]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589779562;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589779562;}", "2", "1", "2020-05-18 05:26:30", "2020-05-18 12:26:30", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("203", "wc-admin_import_orders", "complete", "2020-05-18 05:26:02", "2020-05-18 12:26:02", "[249]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589779562;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589779562;}", "2", "1", "2020-05-18 05:26:30", "2020-05-18 12:26:30", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("204", "wc_facebook_regenerate_feed", "complete", "2020-05-18 05:48:05", "2020-05-18 12:48:05", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589780885;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589780885;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 05:48:16", "2020-05-18 12:48:16", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("205", "wc_facebook_regenerate_feed", "complete", "2020-05-18 06:03:16", "2020-05-18 13:03:16", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589781796;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589781796;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 06:05:05", "2020-05-18 13:05:05", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("206", "wc_facebook_regenerate_feed", "complete", "2020-05-18 06:20:05", "2020-05-18 13:20:05", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589782805;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589782805;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 06:20:08", "2020-05-18 13:20:08", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("207", "wc_facebook_regenerate_feed", "complete", "2020-05-18 06:35:08", "2020-05-18 13:35:08", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589783708;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589783708;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 06:35:15", "2020-05-18 13:35:15", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("208", "wc_facebook_regenerate_feed", "complete", "2020-05-18 06:50:15", "2020-05-18 13:50:15", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589784615;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589784615;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 06:50:43", "2020-05-18 13:50:43", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("209", "wc_facebook_regenerate_feed", "complete", "2020-05-18 07:05:43", "2020-05-18 14:05:43", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589785543;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589785543;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 07:07:06", "2020-05-18 14:07:06", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("210", "wc_facebook_regenerate_feed", "complete", "2020-05-18 07:22:06", "2020-05-18 14:22:06", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589786526;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589786526;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 07:22:06", "2020-05-18 14:22:06", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("211", "wc-admin_import_orders", "complete", "2020-05-18 07:11:13", "2020-05-18 14:11:13", "[248]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589785873;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589785873;}", "2", "1", "2020-05-18 07:13:08", "2020-05-18 14:13:08", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("212", "wc-admin_import_orders", "complete", "2020-05-18 07:11:13", "2020-05-18 14:11:13", "[249]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589785873;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589785873;}", "2", "1", "2020-05-18 07:13:08", "2020-05-18 14:13:08", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("213", "wc_facebook_regenerate_feed", "complete", "2020-05-18 07:37:06", "2020-05-18 14:37:06", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589787426;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589787426;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 07:37:14", "2020-05-18 14:37:14", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("214", "wc_facebook_regenerate_feed", "complete", "2020-05-18 07:52:14", "2020-05-18 14:52:14", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589788334;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589788334;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 07:52:17", "2020-05-18 14:52:17", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("215", "wc_facebook_regenerate_feed", "complete", "2020-05-18 08:07:17", "2020-05-18 15:07:17", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589789237;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589789237;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 08:21:33", "2020-05-18 15:21:33", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("216", "wc_facebook_regenerate_feed", "complete", "2020-05-18 08:36:33", "2020-05-18 15:36:33", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589790993;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589790993;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 08:40:37", "2020-05-18 15:40:37", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("217", "wc_facebook_regenerate_feed", "complete", "2020-05-18 08:55:37", "2020-05-18 15:55:37", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589792137;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589792137;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 08:59:10", "2020-05-18 15:59:10", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("218", "wc_facebook_regenerate_feed", "complete", "2020-05-18 09:14:10", "2020-05-18 16:14:10", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589793250;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589793250;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 09:17:17", "2020-05-18 16:17:17", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("219", "wc_facebook_regenerate_feed", "complete", "2020-05-18 09:32:17", "2020-05-18 16:32:17", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589794337;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589794337;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 09:37:08", "2020-05-18 16:37:08", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("220", "wc_facebook_regenerate_feed", "complete", "2020-05-18 09:52:08", "2020-05-18 16:52:08", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589795528;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589795528;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 09:56:02", "2020-05-18 16:56:02", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("221", "wc_facebook_regenerate_feed", "complete", "2020-05-18 10:11:02", "2020-05-18 17:11:02", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589796662;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589796662;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 10:15:14", "2020-05-18 17:15:14", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("222", "wc_facebook_regenerate_feed", "complete", "2020-05-18 10:30:14", "2020-05-18 17:30:14", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589797814;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589797814;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 10:34:37", "2020-05-18 17:34:37", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("223", "wc_facebook_regenerate_feed", "complete", "2020-05-18 10:49:37", "2020-05-18 17:49:37", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589798977;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589798977;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 10:52:59", "2020-05-18 17:52:59", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("224", "wc_facebook_regenerate_feed", "complete", "2020-05-18 11:07:59", "2020-05-18 18:07:59", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589800079;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589800079;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 11:14:02", "2020-05-18 18:14:02", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("225", "wc_facebook_regenerate_feed", "complete", "2020-05-18 11:29:02", "2020-05-18 18:29:02", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589801342;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589801342;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 11:29:48", "2020-05-18 18:29:48", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("226", "wc_facebook_regenerate_feed", "complete", "2020-05-18 11:44:48", "2020-05-18 18:44:48", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589802288;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589802288;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 11:53:28", "2020-05-18 18:53:28", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("227", "wc_facebook_regenerate_feed", "complete", "2020-05-18 12:08:28", "2020-05-18 19:08:28", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589803708;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589803708;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 12:14:25", "2020-05-18 19:14:25", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("228", "wc_facebook_regenerate_feed", "complete", "2020-05-18 12:29:25", "2020-05-18 19:29:25", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589804965;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589804965;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 12:29:58", "2020-05-18 19:29:58", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("229", "wc_facebook_regenerate_feed", "complete", "2020-05-18 12:44:58", "2020-05-18 19:44:58", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589805898;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589805898;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 12:57:05", "2020-05-18 19:57:05", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("230", "wc_facebook_regenerate_feed", "complete", "2020-05-18 13:12:05", "2020-05-18 20:12:05", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589807525;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589807525;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 13:17:55", "2020-05-18 20:17:55", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("231", "wc_facebook_regenerate_feed", "complete", "2020-05-18 13:32:55", "2020-05-18 20:32:55", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589808775;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589808775;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 13:37:59", "2020-05-18 20:37:59", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("232", "wc_facebook_regenerate_feed", "complete", "2020-05-18 13:52:59", "2020-05-18 20:52:59", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589809979;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589809979;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 14:00:51", "2020-05-18 21:00:51", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("233", "wc_facebook_regenerate_feed", "complete", "2020-05-18 14:15:51", "2020-05-18 21:15:51", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589811351;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589811351;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 14:23:33", "2020-05-18 21:23:33", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("234", "wc_facebook_regenerate_feed", "complete", "2020-05-18 14:38:33", "2020-05-18 21:38:33", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589812713;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589812713;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 14:44:12", "2020-05-18 21:44:12", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("235", "wc_facebook_regenerate_feed", "complete", "2020-05-18 14:59:12", "2020-05-18 21:59:12", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589813952;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589813952;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 15:07:02", "2020-05-18 22:07:02", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("236", "wc_facebook_regenerate_feed", "complete", "2020-05-18 15:22:02", "2020-05-18 22:22:02", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589815322;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589815322;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 15:30:45", "2020-05-18 22:30:45", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("237", "wc_facebook_regenerate_feed", "complete", "2020-05-18 15:45:45", "2020-05-18 22:45:45", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589816745;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589816745;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 16:31:34", "2020-05-18 23:31:34", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("238", "wc_facebook_regenerate_feed", "complete", "2020-05-18 16:46:34", "2020-05-18 23:46:34", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589820394;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589820394;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 17:13:06", "2020-05-19 00:13:06", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("239", "wc_facebook_regenerate_feed", "complete", "2020-05-18 17:28:06", "2020-05-19 00:28:06", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589822886;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589822886;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 17:31:22", "2020-05-19 00:31:22", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("240", "wc_facebook_regenerate_feed", "complete", "2020-05-18 17:46:22", "2020-05-19 00:46:22", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589823982;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589823982;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 18:30:48", "2020-05-19 01:30:48", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("241", "wc_facebook_regenerate_feed", "complete", "2020-05-18 18:45:48", "2020-05-19 01:45:48", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589827548;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589827548;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 19:30:30", "2020-05-19 02:30:30", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("242", "wc_facebook_regenerate_feed", "complete", "2020-05-18 19:45:30", "2020-05-19 02:45:30", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589831130;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589831130;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 20:30:16", "2020-05-19 03:30:16", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("243", "wc_facebook_regenerate_feed", "complete", "2020-05-18 20:45:16", "2020-05-19 03:45:16", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589834716;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589834716;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 21:30:17", "2020-05-19 04:30:17", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("244", "wc_facebook_regenerate_feed", "complete", "2020-05-18 21:45:17", "2020-05-19 04:45:17", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589838317;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589838317;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 22:30:41", "2020-05-19 05:30:41", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("245", "wc_facebook_regenerate_feed", "complete", "2020-05-18 22:45:41", "2020-05-19 05:45:41", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589841941;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589841941;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-18 23:31:01", "2020-05-19 06:31:01", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("246", "wc_facebook_regenerate_feed", "complete", "2020-05-18 23:46:01", "2020-05-19 06:46:01", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589845561;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589845561;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 00:30:33", "2020-05-19 07:30:33", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("247", "wc_facebook_regenerate_feed", "complete", "2020-05-19 00:45:33", "2020-05-19 07:45:33", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589849133;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589849133;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 01:31:17", "2020-05-19 08:31:17", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("248", "wc_facebook_regenerate_feed", "complete", "2020-05-19 01:46:17", "2020-05-19 08:46:17", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589852777;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589852777;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 02:30:35", "2020-05-19 09:30:35", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("249", "wc_facebook_regenerate_feed", "complete", "2020-05-19 02:45:35", "2020-05-19 09:45:35", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589856335;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589856335;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 03:21:09", "2020-05-19 10:21:09", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("250", "wc_facebook_regenerate_feed", "complete", "2020-05-19 03:36:09", "2020-05-19 10:36:09", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589859369;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589859369;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 03:38:35", "2020-05-19 10:38:35", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("251", "wc_facebook_regenerate_feed", "complete", "2020-05-19 03:53:35", "2020-05-19 10:53:35", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589860415;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589860415;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 03:56:17", "2020-05-19 10:56:17", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("252", "wc_facebook_regenerate_feed", "complete", "2020-05-19 04:11:17", "2020-05-19 11:11:17", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589861477;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589861477;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 04:12:05", "2020-05-19 11:12:05", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("253", "wc_facebook_regenerate_feed", "complete", "2020-05-19 04:27:05", "2020-05-19 11:27:05", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589862425;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589862425;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 04:27:41", "2020-05-19 11:27:41", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("254", "wc_facebook_regenerate_feed", "complete", "2020-05-19 04:42:41", "2020-05-19 11:42:41", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589863361;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589863361;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 04:42:47", "2020-05-19 11:42:47", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("255", "wc_facebook_regenerate_feed", "complete", "2020-05-19 04:57:47", "2020-05-19 11:57:47", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589864267;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589864267;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 04:58:00", "2020-05-19 11:58:00", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("256", "wc_facebook_regenerate_feed", "complete", "2020-05-19 05:13:00", "2020-05-19 12:13:00", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589865180;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589865180;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 05:26:39", "2020-05-19 12:26:39", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("257", "wc_facebook_regenerate_feed", "complete", "2020-05-19 05:41:39", "2020-05-19 12:41:39", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589866899;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589866899;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 05:54:57", "2020-05-19 12:54:57", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("258", "wc_facebook_regenerate_feed", "complete", "2020-05-19 06:09:57", "2020-05-19 13:09:57", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589868597;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589868597;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 06:24:49", "2020-05-19 13:24:49", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("259", "wc_facebook_regenerate_feed", "complete", "2020-05-19 06:39:49", "2020-05-19 13:39:49", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589870389;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589870389;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 06:53:58", "2020-05-19 13:53:58", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("260", "wc_facebook_regenerate_feed", "complete", "2020-05-19 07:08:58", "2020-05-19 14:08:58", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589872138;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589872138;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 07:24:52", "2020-05-19 14:24:52", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("261", "wc_facebook_regenerate_feed", "complete", "2020-05-19 07:39:52", "2020-05-19 14:39:52", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589873992;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589873992;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 07:58:00", "2020-05-19 14:58:00", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("262", "wc_facebook_regenerate_feed", "complete", "2020-05-19 08:13:00", "2020-05-19 15:13:00", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589875980;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589875980;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 08:26:36", "2020-05-19 15:26:36", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("263", "wc_facebook_regenerate_feed", "complete", "2020-05-19 08:41:36", "2020-05-19 15:41:36", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589877696;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589877696;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 08:41:36", "2020-05-19 15:41:36", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("264", "wc_facebook_regenerate_feed", "complete", "2020-05-19 08:56:36", "2020-05-19 15:56:36", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589878596;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589878596;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 09:11:47", "2020-05-19 16:11:47", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("265", "wc_facebook_regenerate_feed", "complete", "2020-05-19 09:26:47", "2020-05-19 16:26:47", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589880407;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589880407;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 09:27:04", "2020-05-19 16:27:04", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("266", "wc_facebook_regenerate_feed", "complete", "2020-05-19 09:42:04", "2020-05-19 16:42:04", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589881324;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589881324;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 09:56:33", "2020-05-19 16:56:33", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("267", "wc_facebook_regenerate_feed", "complete", "2020-05-19 10:11:33", "2020-05-19 17:11:33", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589883093;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589883093;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 10:26:02", "2020-05-19 17:26:02", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("268", "wc_facebook_regenerate_feed", "complete", "2020-05-19 10:41:02", "2020-05-19 17:41:02", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589884862;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589884862;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 10:54:00", "2020-05-19 17:54:00", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("269", "wc_facebook_regenerate_feed", "complete", "2020-05-19 11:09:00", "2020-05-19 18:09:00", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589886540;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589886540;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 11:10:40", "2020-05-19 18:10:40", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("270", "wc_facebook_regenerate_feed", "complete", "2020-05-19 11:25:40", "2020-05-19 18:25:40", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589887540;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589887540;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 11:29:40", "2020-05-19 18:29:40", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("271", "wc_facebook_regenerate_feed", "complete", "2020-05-19 11:44:40", "2020-05-19 18:44:40", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589888680;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589888680;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 11:52:59", "2020-05-19 18:52:59", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("272", "wc_facebook_regenerate_feed", "complete", "2020-05-19 12:07:59", "2020-05-19 19:07:59", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589890079;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589890079;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 12:23:37", "2020-05-19 19:23:37", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("273", "wc_facebook_regenerate_feed", "complete", "2020-05-19 12:38:37", "2020-05-19 19:38:37", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589891917;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589891917;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 12:39:07", "2020-05-19 19:39:07", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("274", "wc_facebook_regenerate_feed", "complete", "2020-05-19 12:54:07", "2020-05-19 19:54:07", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589892847;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589892847;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 13:08:38", "2020-05-19 20:08:38", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("275", "wc_facebook_regenerate_feed", "complete", "2020-05-19 13:23:38", "2020-05-19 20:23:38", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589894618;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589894618;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 13:23:41", "2020-05-19 20:23:41", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("276", "wc_facebook_regenerate_feed", "complete", "2020-05-19 13:38:41", "2020-05-19 20:38:41", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589895521;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589895521;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 13:38:42", "2020-05-19 20:38:42", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("277", "wc_facebook_regenerate_feed", "complete", "2020-05-19 13:53:42", "2020-05-19 20:53:42", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589896422;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589896422;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 13:54:16", "2020-05-19 20:54:16", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("278", "wc_facebook_regenerate_feed", "complete", "2020-05-19 14:09:16", "2020-05-19 21:09:16", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589897356;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589897356;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 14:30:06", "2020-05-19 21:30:06", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("279", "wc_facebook_regenerate_feed", "complete", "2020-05-19 14:45:06", "2020-05-19 21:45:06", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589899506;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589899506;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 15:09:05", "2020-05-19 22:09:05", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("280", "wc_facebook_regenerate_feed", "complete", "2020-05-19 15:24:05", "2020-05-19 22:24:05", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589901845;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589901845;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 15:30:21", "2020-05-19 22:30:21", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("281", "wc_facebook_regenerate_feed", "complete", "2020-05-19 15:45:21", "2020-05-19 22:45:21", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589903121;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589903121;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 16:29:42", "2020-05-19 23:29:42", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("282", "wc_facebook_regenerate_feed", "complete", "2020-05-19 16:44:42", "2020-05-19 23:44:42", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589906682;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589906682;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 17:30:20", "2020-05-20 00:30:20", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("283", "wc_facebook_regenerate_feed", "complete", "2020-05-19 17:45:20", "2020-05-20 00:45:20", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589910320;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589910320;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 18:31:20", "2020-05-20 01:31:20", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("284", "wc_facebook_regenerate_feed", "complete", "2020-05-19 18:46:20", "2020-05-20 01:46:20", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589913980;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589913980;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 19:29:52", "2020-05-20 02:29:52", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("285", "wc_facebook_regenerate_feed", "complete", "2020-05-19 19:44:52", "2020-05-20 02:44:52", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589917492;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589917492;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 20:30:33", "2020-05-20 03:30:33", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("286", "wc_facebook_regenerate_feed", "complete", "2020-05-19 20:45:33", "2020-05-20 03:45:33", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589921133;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589921133;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 21:31:26", "2020-05-20 04:31:26", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("287", "wc_facebook_regenerate_feed", "complete", "2020-05-19 21:46:26", "2020-05-20 04:46:26", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589924786;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589924786;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 22:29:36", "2020-05-20 05:29:36", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("288", "wc_facebook_regenerate_feed", "complete", "2020-05-19 22:44:36", "2020-05-20 05:44:36", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589928276;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589928276;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-19 23:30:09", "2020-05-20 06:30:09", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("289", "wc_facebook_regenerate_feed", "complete", "2020-05-19 23:45:09", "2020-05-20 06:45:09", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589931909;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589931909;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-20 00:30:04", "2020-05-20 07:30:04", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("290", "wc_facebook_regenerate_feed", "complete", "2020-05-20 00:45:04", "2020-05-20 07:45:04", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589935504;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589935504;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-20 01:30:26", "2020-05-20 08:30:26", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("291", "wc_facebook_regenerate_feed", "complete", "2020-05-20 01:45:26", "2020-05-20 08:45:26", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589939126;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589939126;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-20 02:31:01", "2020-05-20 09:31:01", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("292", "wc_facebook_regenerate_feed", "complete", "2020-05-20 02:46:01", "2020-05-20 09:46:01", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589942761;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589942761;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-20 03:30:11", "2020-05-20 10:30:11", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("293", "wc_facebook_regenerate_feed", "complete", "2020-05-20 03:45:11", "2020-05-20 10:45:11", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589946311;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589946311;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-20 04:03:51", "2020-05-20 11:03:51", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("294", "wc_facebook_regenerate_feed", "complete", "2020-05-20 04:18:51", "2020-05-20 11:18:51", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589948331;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589948331;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-20 04:31:01", "2020-05-20 11:31:01", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("295", "wc_facebook_regenerate_feed", "complete", "2020-05-20 04:46:01", "2020-05-20 11:46:01", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589949961;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589949961;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-20 04:47:14", "2020-05-20 11:47:14", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("296", "wc_facebook_regenerate_feed", "complete", "2020-05-20 05:02:14", "2020-05-20 12:02:14", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589950934;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589950934;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-20 05:13:09", "2020-05-20 12:13:09", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("297", "wc_facebook_regenerate_feed", "complete", "2020-05-20 05:28:09", "2020-05-20 12:28:09", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589952489;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589952489;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-20 05:30:47", "2020-05-20 12:30:47", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("298", "wc_facebook_regenerate_feed", "complete", "2020-05-20 05:45:47", "2020-05-20 12:45:47", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589953547;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589953547;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-20 05:55:14", "2020-05-20 12:55:14", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("299", "wc_facebook_regenerate_feed", "complete", "2020-05-20 06:10:14", "2020-05-20 13:10:14", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589955014;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589955014;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-20 06:23:07", "2020-05-20 13:23:07", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("300", "wc_facebook_regenerate_feed", "complete", "2020-05-20 06:38:07", "2020-05-20 13:38:07", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589956687;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589956687;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-20 08:14:50", "2020-05-20 15:14:50", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("301", "wc_facebook_regenerate_feed", "complete", "2020-05-20 08:29:50", "2020-05-20 15:29:50", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589963390;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589963390;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-20 08:30:16", "2020-05-20 15:30:16", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("302", "action_scheduler/migration_hook", "complete", "2020-05-20 08:18:33", "2020-05-20 15:18:33", "[]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589962713;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589962713;}", "1", "1", "2020-05-20 08:18:35", "2020-05-20 15:18:35", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("303", "wc_facebook_regenerate_feed", "complete", "2020-05-20 08:45:16", "2020-05-20 15:45:16", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589964316;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589964316;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-20 08:46:10", "2020-05-20 15:46:10", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("304", "wc-admin_import_customers", "complete", "2020-05-20 08:38:45", "2020-05-20 15:38:45", "[5]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589963925;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589963925;}", "2", "1", "2020-05-20 08:39:14", "2020-05-20 15:39:14", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("305", "wc-admin_import_orders", "complete", "2020-05-20 08:38:45", "2020-05-20 15:38:45", "[261]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589963925;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589963925;}", "2", "1", "2020-05-20 08:39:15", "2020-05-20 15:39:15", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("306", "wc-admin_import_orders", "complete", "2020-05-20 08:39:19", "2020-05-20 15:39:19", "[261]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589963959;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589963959;}", "2", "1", "2020-05-20 08:40:55", "2020-05-20 15:40:55", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("307", "wc_facebook_regenerate_feed", "complete", "2020-05-20 09:01:10", "2020-05-20 16:01:10", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589965270;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589965270;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-20 09:01:44", "2020-05-20 16:01:44", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("308", "wc_facebook_regenerate_feed", "complete", "2020-05-20 09:16:44", "2020-05-20 16:16:44", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589966204;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589966204;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-20 09:16:55", "2020-05-20 16:16:55", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("309", "wc_facebook_regenerate_feed", "complete", "2020-05-20 09:31:55", "2020-05-20 16:31:55", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589967115;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589967115;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-20 09:34:44", "2020-05-20 16:34:44", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("310", "wc-admin_import_customers", "complete", "2020-05-20 09:28:47", "2020-05-20 16:28:47", "[6]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589966927;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589966927;}", "2", "1", "2020-05-20 09:29:13", "2020-05-20 16:29:13", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("311", "wc-admin_import_orders", "complete", "2020-05-20 09:28:47", "2020-05-20 16:28:47", "[262]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589966927;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589966927;}", "2", "1", "2020-05-20 09:29:13", "2020-05-20 16:29:13", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("312", "wc-admin_import_orders", "complete", "2020-05-20 09:29:18", "2020-05-20 16:29:18", "[262]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589966958;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589966958;}", "2", "1", "2020-05-20 09:29:42", "2020-05-20 16:29:42", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("313", "wc_facebook_regenerate_feed", "complete", "2020-05-20 09:49:44", "2020-05-20 16:49:44", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589968184;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589968184;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-20 09:51:19", "2020-05-20 16:51:19", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("314", "wc-admin_import_customers", "complete", "2020-05-20 09:37:23", "2020-05-20 16:37:23", "[6]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589967443;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589967443;}", "2", "1", "2020-05-20 09:37:34", "2020-05-20 16:37:34", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("315", "wc-admin_import_orders", "complete", "2020-05-20 09:37:23", "2020-05-20 16:37:23", "[263]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589967443;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589967443;}", "2", "1", "2020-05-20 09:37:35", "2020-05-20 16:37:35", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("316", "wc-admin_import_orders", "complete", "2020-05-20 09:37:43", "2020-05-20 16:37:43", "[263]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589967463;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589967463;}", "2", "1", "2020-05-20 09:38:15", "2020-05-20 16:38:15", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("317", "wc-admin_import_customers", "complete", "2020-05-20 09:44:24", "2020-05-20 16:44:24", "[6]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589967864;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589967864;}", "2", "1", "2020-05-20 09:44:55", "2020-05-20 16:44:55", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("318", "wc-admin_import_orders", "complete", "2020-05-20 09:44:24", "2020-05-20 16:44:24", "[264]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589967864;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589967864;}", "2", "1", "2020-05-20 09:44:55", "2020-05-20 16:44:55", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("319", "wc_facebook_regenerate_feed", "complete", "2020-05-20 10:06:19", "2020-05-20 17:06:19", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589969179;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589969179;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-20 10:08:14", "2020-05-20 17:08:14", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("320", "wc_facebook_regenerate_feed", "complete", "2020-05-20 10:23:14", "2020-05-20 17:23:14", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589970194;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589970194;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-20 10:24:01", "2020-05-20 17:24:01", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("321", "wc-admin_import_customers", "complete", "2020-05-20 10:18:29", "2020-05-20 17:18:29", "[6]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589969909;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589969909;}", "2", "1", "2020-05-20 10:18:47", "2020-05-20 17:18:47", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("322", "wc-admin_import_orders", "complete", "2020-05-20 10:18:29", "2020-05-20 17:18:29", "[265]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589969909;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589969909;}", "2", "1", "2020-05-20 10:18:47", "2020-05-20 17:18:47", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("323", "wc-admin_import_orders", "complete", "2020-05-20 10:19:12", "2020-05-20 17:19:12", "[265]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589969952;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589969952;}", "2", "1", "2020-05-20 10:20:16", "2020-05-20 17:20:16", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("324", "wc_facebook_regenerate_feed", "complete", "2020-05-20 10:39:01", "2020-05-20 17:39:01", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589971141;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589971141;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-20 10:39:28", "2020-05-20 17:39:28", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("325", "wc_facebook_regenerate_feed", "complete", "2020-05-20 10:54:28", "2020-05-20 17:54:28", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589972068;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589972068;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-20 11:29:29", "2020-05-20 18:29:29", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("326", "wc-admin_import_orders", "complete", "2020-05-20 10:39:33", "2020-05-20 17:39:33", "[261]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589971173;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589971173;}", "2", "1", "2020-05-20 11:29:30", "2020-05-20 18:29:30", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("327", "wc-admin_import_orders", "complete", "2020-05-20 11:29:34", "2020-05-20 18:29:34", "[262]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589974174;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589974174;}", "2", "1", "2020-05-20 11:38:06", "2020-05-20 18:38:06", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("328", "wc_facebook_regenerate_feed", "complete", "2020-05-20 11:44:29", "2020-05-20 18:44:29", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589975069;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589975069;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-20 11:45:14", "2020-05-20 18:45:14", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("329", "wc-admin_import_orders", "complete", "2020-05-20 11:38:11", "2020-05-20 18:38:11", "[263]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589974691;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589974691;}", "2", "1", "2020-05-20 11:44:13", "2020-05-20 18:44:13", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("330", "wc-admin_import_orders", "complete", "2020-05-20 11:44:58", "2020-05-20 18:44:58", "[264]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589975098;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589975098;}", "2", "1", "2020-05-20 11:45:15", "2020-05-20 18:45:15", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("331", "wc_facebook_regenerate_feed", "complete", "2020-05-20 12:00:14", "2020-05-20 19:00:14", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589976014;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589976014;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-20 12:08:37", "2020-05-20 19:08:37", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("332", "wc-admin_import_customers", "complete", "2020-05-20 11:46:06", "2020-05-20 18:46:06", "[7]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589975166;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589975166;}", "2", "1", "2020-05-20 11:46:06", "2020-05-20 18:46:06", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("333", "wc-admin_import_orders", "complete", "2020-05-20 11:46:06", "2020-05-20 18:46:06", "[266]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589975166;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589975166;}", "2", "1", "2020-05-20 11:46:06", "2020-05-20 18:46:06", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("334", "wc-admin_import_orders", "complete", "2020-05-20 11:46:29", "2020-05-20 18:46:29", "[266]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589975189;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589975189;}", "2", "1", "2020-05-20 11:53:10", "2020-05-20 18:53:10", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("335", "wc_facebook_regenerate_feed", "complete", "2020-05-20 12:23:37", "2020-05-20 19:23:37", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589977417;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589977417;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-20 12:38:40", "2020-05-20 19:38:40", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("336", "wc-admin_import_customers", "complete", "2020-05-20 12:14:05", "2020-05-20 19:14:05", "[8]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589976845;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589976845;}", "2", "1", "2020-05-20 12:15:10", "2020-05-20 19:15:10", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("337", "wc-admin_import_orders", "complete", "2020-05-20 12:14:05", "2020-05-20 19:14:05", "[267]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589976845;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589976845;}", "2", "1", "2020-05-20 12:15:10", "2020-05-20 19:15:10", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("338", "wc-admin_import_orders", "complete", "2020-05-20 12:19:10", "2020-05-20 19:19:10", "[265]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589977150;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589977150;}", "2", "1", "2020-05-20 12:21:48", "2020-05-20 19:21:48", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("339", "wc_facebook_regenerate_feed", "complete", "2020-05-20 12:53:40", "2020-05-20 19:53:40", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589979220;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589979220;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-20 13:46:22", "2020-05-20 20:46:22", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("340", "wc_facebook_regenerate_feed", "complete", "2020-05-20 14:01:22", "2020-05-20 21:01:22", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589983282;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589983282;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-20 14:14:37", "2020-05-20 21:14:37", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("341", "wc-admin_import_orders", "complete", "2020-05-20 13:46:42", "2020-05-20 20:46:42", "[266]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589982402;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589982402;}", "2", "1", "2020-05-20 13:50:22", "2020-05-20 20:50:22", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("342", "wc_facebook_regenerate_feed", "complete", "2020-05-20 14:29:37", "2020-05-20 21:29:37", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1589984977;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1589984977;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-20 23:03:53", "2020-05-21 06:03:53", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("343", "wc-admin_import_orders", "complete", "2020-05-20 14:14:43", "2020-05-20 21:14:43", "[267]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1589984083;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1589984083;}", "2", "1", "2020-05-21 09:59:48", "2020-05-21 16:59:48", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("344", "wc_facebook_regenerate_feed", "complete", "2020-05-20 23:18:53", "2020-05-21 06:18:53", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590016733;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590016733;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-21 11:11:32", "2020-05-21 18:11:32", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("345", "wc_facebook_regenerate_feed", "complete", "2020-05-21 11:26:32", "2020-05-21 18:26:32", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590060392;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590060392;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-21 11:36:18", "2020-05-21 18:36:18", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("346", "wc_facebook_regenerate_feed", "complete", "2020-05-21 11:51:18", "2020-05-21 18:51:18", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590061878;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590061878;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-21 12:07:02", "2020-05-21 19:07:02", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("347", "wc_facebook_regenerate_feed", "complete", "2020-05-21 12:22:02", "2020-05-21 19:22:02", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590063722;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590063722;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-21 12:28:44", "2020-05-21 19:28:44", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("348", "wc_facebook_regenerate_feed", "complete", "2020-05-21 12:43:44", "2020-05-21 19:43:44", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590065024;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590065024;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-21 12:50:07", "2020-05-21 19:50:07", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("349", "wc_facebook_regenerate_feed", "complete", "2020-05-21 13:05:07", "2020-05-21 20:05:07", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590066307;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590066307;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-21 16:14:02", "2020-05-21 23:14:02", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("350", "wc_facebook_regenerate_feed", "complete", "2020-05-21 16:29:02", "2020-05-21 23:29:02", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590078542;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590078542;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-21 16:30:10", "2020-05-21 23:30:10", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("351", "woocommerce_update_marketplace_suggestions", "complete", "2020-05-21 16:15:16", "2020-05-21 23:15:16", "[]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1590077716;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1590077716;}", "0", "1", "2020-05-21 16:19:05", "2020-05-21 23:19:05", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("352", "wc_facebook_regenerate_feed", "complete", "2020-05-21 16:45:10", "2020-05-21 23:45:10", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590079510;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590079510;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-21 16:54:00", "2020-05-21 23:54:00", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("353", "wc_facebook_regenerate_feed", "complete", "2020-05-21 17:09:00", "2020-05-22 00:09:00", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590080940;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590080940;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-21 17:13:08", "2020-05-22 00:13:08", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("354", "wc_facebook_regenerate_feed", "complete", "2020-05-21 17:28:08", "2020-05-22 00:28:08", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590082088;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590082088;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-21 17:34:35", "2020-05-22 00:34:35", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("355", "wc_facebook_regenerate_feed", "complete", "2020-05-21 17:49:35", "2020-05-22 00:49:35", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590083375;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590083375;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-21 18:23:06", "2020-05-22 01:23:06", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("356", "wc_facebook_regenerate_feed", "complete", "2020-05-21 18:38:06", "2020-05-22 01:38:06", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590086286;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590086286;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-22 00:19:20", "2020-05-22 07:19:20", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("357", "wc_facebook_regenerate_feed", "complete", "2020-05-22 00:34:20", "2020-05-22 07:34:20", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590107660;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590107660;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-22 01:54:45", "2020-05-22 08:54:45", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("358", "wc_facebook_regenerate_feed", "complete", "2020-05-22 02:09:45", "2020-05-22 09:09:45", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590113385;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590113385;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-22 02:10:30", "2020-05-22 09:10:30", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("359", "wc_facebook_regenerate_feed", "complete", "2020-05-22 02:25:30", "2020-05-22 09:25:30", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590114330;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590114330;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-22 02:28:41", "2020-05-22 09:28:41", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("360", "wc_facebook_regenerate_feed", "complete", "2020-05-22 02:43:41", "2020-05-22 09:43:41", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590115421;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590115421;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-22 02:43:42", "2020-05-22 09:43:42", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("361", "wc_facebook_regenerate_feed", "complete", "2020-05-22 02:58:42", "2020-05-22 09:58:42", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590116322;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590116322;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-22 03:00:21", "2020-05-22 10:00:21", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("362", "wc-admin_import_customers", "complete", "2020-05-22 02:50:48", "2020-05-22 09:50:48", "[1]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1590115848;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1590115848;}", "2", "1", "2020-05-22 02:51:31", "2020-05-22 09:51:31", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("363", "wc-admin_import_orders", "complete", "2020-05-22 02:50:48", "2020-05-22 09:50:48", "[272]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1590115848;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1590115848;}", "2", "1", "2020-05-22 02:51:31", "2020-05-22 09:51:31", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("364", "wc_facebook_regenerate_feed", "complete", "2020-05-22 03:15:21", "2020-05-22 10:15:21", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590117321;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590117321;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-22 03:29:24", "2020-05-22 10:29:24", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("365", "wc_facebook_regenerate_feed", "complete", "2020-05-22 03:44:24", "2020-05-22 10:44:24", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590119064;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590119064;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-23 02:58:04", "2020-05-23 09:58:04", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("366", "wc_facebook_regenerate_feed", "complete", "2020-05-23 03:13:04", "2020-05-23 10:13:04", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590203584;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590203584;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-23 05:01:56", "2020-05-23 12:01:56", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("367", "wc-admin_import_orders", "complete", "2020-05-23 02:58:10", "2020-05-23 09:58:10", "[272]", "O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1590202690;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1590202690;}", "2", "1", "2020-05-23 17:00:29", "2020-05-24 00:00:29", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("368", "wc_facebook_regenerate_feed", "complete", "2020-05-23 05:16:56", "2020-05-23 12:16:56", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590211016;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590211016;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-23 17:00:29", "2020-05-24 00:00:29", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("369", "wc_facebook_regenerate_feed", "complete", "2020-05-23 17:15:29", "2020-05-24 00:15:29", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590254129;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590254129;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-24 16:34:23", "2020-05-24 23:34:23", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("370", "wc_facebook_regenerate_feed", "complete", "2020-05-24 16:49:23", "2020-05-24 23:49:23", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590338963;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590338963;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-24 16:51:05", "2020-05-24 23:51:05", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("371", "wc_facebook_regenerate_feed", "complete", "2020-05-24 17:06:06", "2020-05-25 00:06:06", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590339966;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590339966;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-24 17:07:09", "2020-05-25 00:07:09", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("372", "wc_facebook_regenerate_feed", "complete", "2020-05-24 17:22:09", "2020-05-25 00:22:09", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590340929;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590340929;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-24 17:23:14", "2020-05-25 00:23:14", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("373", "wc_facebook_regenerate_feed", "complete", "2020-05-24 17:38:14", "2020-05-25 00:38:14", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590341894;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590341894;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-24 17:38:18", "2020-05-25 00:38:18", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("374", "wc_facebook_regenerate_feed", "complete", "2020-05-24 17:53:18", "2020-05-25 00:53:18", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590342798;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590342798;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-24 18:23:28", "2020-05-25 01:23:28", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("375", "wc_facebook_regenerate_feed", "complete", "2020-05-24 18:38:28", "2020-05-25 01:38:28", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590345508;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590345508;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-25 05:33:41", "2020-05-25 12:33:41", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("376", "wc_facebook_regenerate_feed", "complete", "2020-05-25 05:48:41", "2020-05-25 12:48:41", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590385721;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590385721;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-25 06:01:43", "2020-05-25 13:01:43", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("377", "wc_facebook_regenerate_feed", "complete", "2020-05-25 06:16:43", "2020-05-25 13:16:43", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590387403;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590387403;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-25 07:29:42", "2020-05-25 14:29:42", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("378", "wc_facebook_regenerate_feed", "complete", "2020-05-25 07:44:42", "2020-05-25 14:44:42", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590392682;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590392682;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-25 09:30:10", "2020-05-25 16:30:10", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("379", "wc_facebook_regenerate_feed", "complete", "2020-05-25 09:45:10", "2020-05-25 16:45:10", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590399910;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590399910;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-26 09:00:10", "2020-05-26 16:00:10", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("380", "wc_facebook_regenerate_feed", "complete", "2020-05-26 09:15:10", "2020-05-26 16:15:10", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590484510;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590484510;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-26 09:31:13", "2020-05-26 16:31:13", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("381", "wc_facebook_regenerate_feed", "complete", "2020-05-26 09:46:13", "2020-05-26 16:46:13", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590486373;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590486373;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-26 09:47:05", "2020-05-26 16:47:05", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("382", "wc_facebook_regenerate_feed", "complete", "2020-05-26 10:02:05", "2020-05-26 17:02:05", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590487325;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590487325;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-26 10:02:26", "2020-05-26 17:02:26", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("383", "wc_facebook_regenerate_feed", "complete", "2020-05-26 10:17:26", "2020-05-26 17:17:26", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590488246;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590488246;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-26 10:19:16", "2020-05-26 17:19:16", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("384", "wc_facebook_regenerate_feed", "complete", "2020-05-26 10:34:16", "2020-05-26 17:34:16", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590489256;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590489256;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-26 10:35:21", "2020-05-26 17:35:21", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("385", "wc_facebook_regenerate_feed", "complete", "2020-05-26 10:50:21", "2020-05-26 17:50:21", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590490221;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590490221;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-26 10:51:23", "2020-05-26 17:51:23", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("386", "wc_facebook_regenerate_feed", "complete", "2020-05-26 11:06:23", "2020-05-26 18:06:23", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590491183;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590491183;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-26 11:07:30", "2020-05-26 18:07:30", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("387", "wc_facebook_regenerate_feed", "complete", "2020-05-26 11:22:30", "2020-05-26 18:22:30", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590492150;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590492150;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-26 11:23:31", "2020-05-26 18:23:31", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("388", "wc_facebook_regenerate_feed", "complete", "2020-05-26 11:38:31", "2020-05-26 18:38:31", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590493111;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590493111;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-26 11:39:37", "2020-05-26 18:39:37", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("389", "wc_facebook_regenerate_feed", "complete", "2020-05-26 11:54:37", "2020-05-26 18:54:37", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590494077;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590494077;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-26 11:55:41", "2020-05-26 18:55:41", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("390", "wc_facebook_regenerate_feed", "complete", "2020-05-26 12:10:41", "2020-05-26 19:10:41", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590495041;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590495041;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-26 12:11:47", "2020-05-26 19:11:47", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("391", "wc_facebook_regenerate_feed", "complete", "2020-05-26 12:26:47", "2020-05-26 19:26:47", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590496007;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590496007;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-26 12:27:50", "2020-05-26 19:27:50", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("392", "wc_facebook_regenerate_feed", "complete", "2020-05-26 12:42:51", "2020-05-26 19:42:51", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590496971;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590496971;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-26 12:43:51", "2020-05-26 19:43:51", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("393", "wc_facebook_regenerate_feed", "complete", "2020-05-26 12:58:51", "2020-05-26 19:58:51", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590497931;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590497931;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-26 12:59:52", "2020-05-26 19:59:52", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("394", "wc_facebook_regenerate_feed", "complete", "2020-05-26 13:14:52", "2020-05-26 20:14:52", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590498892;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590498892;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-26 13:15:39", "2020-05-26 20:15:39", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("395", "wc_facebook_regenerate_feed", "complete", "2020-05-26 13:30:39", "2020-05-26 20:30:39", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590499839;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590499839;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-26 13:30:48", "2020-05-26 20:30:48", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("396", "wc_facebook_regenerate_feed", "complete", "2020-05-26 13:45:51", "2020-05-26 20:45:51", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590500751;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590500751;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-26 13:46:50", "2020-05-26 20:46:50", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("397", "wc_facebook_regenerate_feed", "complete", "2020-05-26 14:01:50", "2020-05-26 21:01:50", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590501710;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590501710;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-27 01:48:51", "2020-05-27 08:48:51", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("398", "wc_facebook_regenerate_feed", "complete", "2020-05-27 02:03:51", "2020-05-27 09:03:51", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590545031;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590545031;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "1", "2020-05-27 02:05:22", "2020-05-27 09:05:22", "0", NULL);
INSERT INTO `lt_actionscheduler_actions` VALUES("399", "wc_facebook_regenerate_feed", "pending", "2020-05-27 02:20:22", "2020-05-27 09:20:22", "[]", "O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1590546022;s:18:\"\0*\0first_timestamp\";i:1589776220;s:13:\"\0*\0recurrence\";i:900;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1590546022;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:900;}", "3", "0", "0000-00-00 00:00:00", "0000-00-00 00:00:00", "0", NULL);

/* INSERT TABLE DATA: lt_actionscheduler_groups */
INSERT INTO `lt_actionscheduler_groups` VALUES("1", "action-scheduler-migration");
INSERT INTO `lt_actionscheduler_groups` VALUES("2", "wc-admin-data");
INSERT INTO `lt_actionscheduler_groups` VALUES("3", "facebook-for-woocommerce");

/* INSERT TABLE DATA: lt_actionscheduler_logs */
INSERT INTO `lt_actionscheduler_logs` VALUES("1", "166", "action created", "2020-05-14 06:28:08", "2020-05-14 13:28:08");
INSERT INTO `lt_actionscheduler_logs` VALUES("2", "166", "action started via WP Cron", "2020-05-14 06:29:13", "2020-05-14 13:29:13");
INSERT INTO `lt_actionscheduler_logs` VALUES("3", "166", "action complete via WP Cron", "2020-05-14 06:29:13", "2020-05-14 13:29:13");
INSERT INTO `lt_actionscheduler_logs` VALUES("4", "167", "action created", "2020-05-14 06:32:17", "2020-05-14 13:32:17");
INSERT INTO `lt_actionscheduler_logs` VALUES("5", "167", "action started via Async Request", "2020-05-14 06:32:20", "2020-05-14 13:32:20");
INSERT INTO `lt_actionscheduler_logs` VALUES("6", "167", "action complete via Async Request", "2020-05-14 06:32:20", "2020-05-14 13:32:20");
INSERT INTO `lt_actionscheduler_logs` VALUES("7", "168", "action created", "2020-05-14 08:13:11", "2020-05-14 15:13:11");
INSERT INTO `lt_actionscheduler_logs` VALUES("8", "169", "action created", "2020-05-14 08:13:11", "2020-05-14 15:13:11");
INSERT INTO `lt_actionscheduler_logs` VALUES("9", "168", "action started via WP Cron", "2020-05-14 08:14:15", "2020-05-14 15:14:15");
INSERT INTO `lt_actionscheduler_logs` VALUES("10", "168", "action complete via WP Cron", "2020-05-14 08:14:15", "2020-05-14 15:14:15");
INSERT INTO `lt_actionscheduler_logs` VALUES("11", "169", "action started via WP Cron", "2020-05-14 08:14:15", "2020-05-14 15:14:15");
INSERT INTO `lt_actionscheduler_logs` VALUES("12", "169", "action complete via WP Cron", "2020-05-14 08:14:15", "2020-05-14 15:14:15");
INSERT INTO `lt_actionscheduler_logs` VALUES("13", "170", "action created", "2020-05-14 08:16:33", "2020-05-14 15:16:33");
INSERT INTO `lt_actionscheduler_logs` VALUES("14", "171", "action created", "2020-05-14 08:16:33", "2020-05-14 15:16:33");
INSERT INTO `lt_actionscheduler_logs` VALUES("15", "170", "action started via WP Cron", "2020-05-14 08:17:18", "2020-05-14 15:17:18");
INSERT INTO `lt_actionscheduler_logs` VALUES("16", "170", "action complete via WP Cron", "2020-05-14 08:17:18", "2020-05-14 15:17:18");
INSERT INTO `lt_actionscheduler_logs` VALUES("17", "171", "action started via WP Cron", "2020-05-14 08:17:18", "2020-05-14 15:17:18");
INSERT INTO `lt_actionscheduler_logs` VALUES("18", "171", "action complete via WP Cron", "2020-05-14 08:17:18", "2020-05-14 15:17:18");
INSERT INTO `lt_actionscheduler_logs` VALUES("19", "172", "action created", "2020-05-14 08:55:53", "2020-05-14 15:55:53");
INSERT INTO `lt_actionscheduler_logs` VALUES("20", "173", "action created", "2020-05-14 08:55:53", "2020-05-14 15:55:53");
INSERT INTO `lt_actionscheduler_logs` VALUES("21", "172", "action started via WP Cron", "2020-05-14 08:56:22", "2020-05-14 15:56:22");
INSERT INTO `lt_actionscheduler_logs` VALUES("22", "172", "action complete via WP Cron", "2020-05-14 08:56:22", "2020-05-14 15:56:22");
INSERT INTO `lt_actionscheduler_logs` VALUES("23", "173", "action started via WP Cron", "2020-05-14 08:56:22", "2020-05-14 15:56:22");
INSERT INTO `lt_actionscheduler_logs` VALUES("24", "173", "action complete via WP Cron", "2020-05-14 08:56:22", "2020-05-14 15:56:22");
INSERT INTO `lt_actionscheduler_logs` VALUES("25", "174", "action created", "2020-05-14 14:22:44", "2020-05-14 21:22:44");
INSERT INTO `lt_actionscheduler_logs` VALUES("26", "175", "action created", "2020-05-14 14:22:44", "2020-05-14 21:22:44");
INSERT INTO `lt_actionscheduler_logs` VALUES("27", "176", "action created", "2020-05-14 14:22:44", "2020-05-14 21:22:44");
INSERT INTO `lt_actionscheduler_logs` VALUES("28", "174", "action started via WP Cron", "2020-05-14 14:23:58", "2020-05-14 21:23:58");
INSERT INTO `lt_actionscheduler_logs` VALUES("29", "174", "action complete via WP Cron", "2020-05-14 14:23:58", "2020-05-14 21:23:58");
INSERT INTO `lt_actionscheduler_logs` VALUES("30", "175", "action started via WP Cron", "2020-05-14 14:23:58", "2020-05-14 21:23:58");
INSERT INTO `lt_actionscheduler_logs` VALUES("31", "175", "action complete via WP Cron", "2020-05-14 14:23:58", "2020-05-14 21:23:58");
INSERT INTO `lt_actionscheduler_logs` VALUES("32", "176", "action started via WP Cron", "2020-05-14 14:23:58", "2020-05-14 21:23:58");
INSERT INTO `lt_actionscheduler_logs` VALUES("33", "176", "action complete via WP Cron", "2020-05-14 14:23:58", "2020-05-14 21:23:58");
INSERT INTO `lt_actionscheduler_logs` VALUES("34", "177", "action created", "2020-05-18 03:08:52", "2020-05-18 10:08:52");
INSERT INTO `lt_actionscheduler_logs` VALUES("35", "177", "action started via Async Request", "2020-05-18 03:10:07", "2020-05-18 10:10:07");
INSERT INTO `lt_actionscheduler_logs` VALUES("36", "177", "action complete via Async Request", "2020-05-18 03:10:07", "2020-05-18 10:10:07");
INSERT INTO `lt_actionscheduler_logs` VALUES("37", "178", "action created", "2020-05-18 03:23:05", "2020-05-18 10:23:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("38", "179", "action created", "2020-05-18 03:23:06", "2020-05-18 10:23:06");
INSERT INTO `lt_actionscheduler_logs` VALUES("39", "178", "action started via Async Request", "2020-05-18 03:23:59", "2020-05-18 10:23:59");
INSERT INTO `lt_actionscheduler_logs` VALUES("40", "178", "action complete via Async Request", "2020-05-18 03:23:59", "2020-05-18 10:23:59");
INSERT INTO `lt_actionscheduler_logs` VALUES("41", "179", "action started via Async Request", "2020-05-18 03:23:59", "2020-05-18 10:23:59");
INSERT INTO `lt_actionscheduler_logs` VALUES("42", "179", "action complete via Async Request", "2020-05-18 03:23:59", "2020-05-18 10:23:59");
INSERT INTO `lt_actionscheduler_logs` VALUES("43", "180", "action created", "2020-05-18 03:29:22", "2020-05-18 10:29:22");
INSERT INTO `lt_actionscheduler_logs` VALUES("44", "181", "action created", "2020-05-18 03:29:22", "2020-05-18 10:29:22");
INSERT INTO `lt_actionscheduler_logs` VALUES("45", "180", "action started via WP Cron", "2020-05-18 03:31:26", "2020-05-18 10:31:26");
INSERT INTO `lt_actionscheduler_logs` VALUES("46", "180", "action complete via WP Cron", "2020-05-18 03:31:26", "2020-05-18 10:31:26");
INSERT INTO `lt_actionscheduler_logs` VALUES("47", "181", "action started via WP Cron", "2020-05-18 03:31:26", "2020-05-18 10:31:26");
INSERT INTO `lt_actionscheduler_logs` VALUES("48", "181", "action complete via WP Cron", "2020-05-18 03:31:26", "2020-05-18 10:31:26");
INSERT INTO `lt_actionscheduler_logs` VALUES("49", "182", "action created", "2020-05-18 04:10:35", "2020-05-18 11:10:35");
INSERT INTO `lt_actionscheduler_logs` VALUES("50", "183", "action created", "2020-05-18 04:10:35", "2020-05-18 11:10:35");
INSERT INTO `lt_actionscheduler_logs` VALUES("51", "182", "action started via WP Cron", "2020-05-18 04:12:22", "2020-05-18 11:12:22");
INSERT INTO `lt_actionscheduler_logs` VALUES("52", "182", "action complete via WP Cron", "2020-05-18 04:12:22", "2020-05-18 11:12:22");
INSERT INTO `lt_actionscheduler_logs` VALUES("53", "183", "action started via WP Cron", "2020-05-18 04:12:22", "2020-05-18 11:12:22");
INSERT INTO `lt_actionscheduler_logs` VALUES("54", "183", "action complete via WP Cron", "2020-05-18 04:12:22", "2020-05-18 11:12:22");
INSERT INTO `lt_actionscheduler_logs` VALUES("55", "184", "action created", "2020-05-18 04:29:47", "2020-05-18 11:29:47");
INSERT INTO `lt_actionscheduler_logs` VALUES("56", "184", "action started via Async Request", "2020-05-18 04:29:57", "2020-05-18 11:29:57");
INSERT INTO `lt_actionscheduler_logs` VALUES("57", "184", "action complete via Async Request", "2020-05-18 04:29:57", "2020-05-18 11:29:57");
INSERT INTO `lt_actionscheduler_logs` VALUES("60", "186", "action created", "2020-05-18 04:30:20", "2020-05-18 11:30:20");
INSERT INTO `lt_actionscheduler_logs` VALUES("61", "186", "action started via WP Cron", "2020-05-18 04:31:24", "2020-05-18 11:31:24");
INSERT INTO `lt_actionscheduler_logs` VALUES("62", "186", "action complete via WP Cron", "2020-05-18 04:31:24", "2020-05-18 11:31:24");
INSERT INTO `lt_actionscheduler_logs` VALUES("63", "187", "action created", "2020-05-18 04:31:24", "2020-05-18 11:31:24");
INSERT INTO `lt_actionscheduler_logs` VALUES("64", "188", "action created", "2020-05-18 04:32:11", "2020-05-18 11:32:11");
INSERT INTO `lt_actionscheduler_logs` VALUES("65", "189", "action created", "2020-05-18 04:32:11", "2020-05-18 11:32:11");
INSERT INTO `lt_actionscheduler_logs` VALUES("66", "188", "action started via Async Request", "2020-05-18 04:32:26", "2020-05-18 11:32:26");
INSERT INTO `lt_actionscheduler_logs` VALUES("67", "188", "action complete via Async Request", "2020-05-18 04:32:26", "2020-05-18 11:32:26");
INSERT INTO `lt_actionscheduler_logs` VALUES("68", "189", "action started via Async Request", "2020-05-18 04:32:26", "2020-05-18 11:32:26");
INSERT INTO `lt_actionscheduler_logs` VALUES("69", "189", "action complete via Async Request", "2020-05-18 04:32:26", "2020-05-18 11:32:26");
INSERT INTO `lt_actionscheduler_logs` VALUES("70", "190", "action created", "2020-05-18 04:42:26", "2020-05-18 11:42:26");
INSERT INTO `lt_actionscheduler_logs` VALUES("71", "191", "action created", "2020-05-18 04:42:26", "2020-05-18 11:42:26");
INSERT INTO `lt_actionscheduler_logs` VALUES("72", "192", "action created", "2020-05-18 04:42:26", "2020-05-18 11:42:26");
INSERT INTO `lt_actionscheduler_logs` VALUES("73", "193", "action created", "2020-05-18 04:42:26", "2020-05-18 11:42:26");
INSERT INTO `lt_actionscheduler_logs` VALUES("74", "194", "action created", "2020-05-18 04:42:26", "2020-05-18 11:42:26");
INSERT INTO `lt_actionscheduler_logs` VALUES("75", "195", "action created", "2020-05-18 04:42:26", "2020-05-18 11:42:26");
INSERT INTO `lt_actionscheduler_logs` VALUES("76", "196", "action created", "2020-05-18 04:42:26", "2020-05-18 11:42:26");
INSERT INTO `lt_actionscheduler_logs` VALUES("77", "190", "action started via Async Request", "2020-05-18 04:42:54", "2020-05-18 11:42:54");
INSERT INTO `lt_actionscheduler_logs` VALUES("78", "190", "action complete via Async Request", "2020-05-18 04:42:54", "2020-05-18 11:42:54");
INSERT INTO `lt_actionscheduler_logs` VALUES("79", "191", "action started via Async Request", "2020-05-18 04:42:54", "2020-05-18 11:42:54");
INSERT INTO `lt_actionscheduler_logs` VALUES("80", "191", "action complete via Async Request", "2020-05-18 04:42:54", "2020-05-18 11:42:54");
INSERT INTO `lt_actionscheduler_logs` VALUES("81", "192", "action started via Async Request", "2020-05-18 04:42:54", "2020-05-18 11:42:54");
INSERT INTO `lt_actionscheduler_logs` VALUES("82", "192", "action complete via Async Request", "2020-05-18 04:42:54", "2020-05-18 11:42:54");
INSERT INTO `lt_actionscheduler_logs` VALUES("83", "193", "action started via Async Request", "2020-05-18 04:42:54", "2020-05-18 11:42:54");
INSERT INTO `lt_actionscheduler_logs` VALUES("84", "193", "action complete via Async Request", "2020-05-18 04:42:54", "2020-05-18 11:42:54");
INSERT INTO `lt_actionscheduler_logs` VALUES("85", "194", "action started via Async Request", "2020-05-18 04:42:54", "2020-05-18 11:42:54");
INSERT INTO `lt_actionscheduler_logs` VALUES("86", "194", "action complete via Async Request", "2020-05-18 04:42:54", "2020-05-18 11:42:54");
INSERT INTO `lt_actionscheduler_logs` VALUES("87", "195", "action started via Async Request", "2020-05-18 04:42:54", "2020-05-18 11:42:54");
INSERT INTO `lt_actionscheduler_logs` VALUES("88", "195", "action complete via Async Request", "2020-05-18 04:42:54", "2020-05-18 11:42:54");
INSERT INTO `lt_actionscheduler_logs` VALUES("89", "196", "action started via Async Request", "2020-05-18 04:42:54", "2020-05-18 11:42:54");
INSERT INTO `lt_actionscheduler_logs` VALUES("90", "196", "action complete via Async Request", "2020-05-18 04:42:54", "2020-05-18 11:42:54");
INSERT INTO `lt_actionscheduler_logs` VALUES("91", "187", "action started via Async Request", "2020-05-18 04:46:35", "2020-05-18 11:46:35");
INSERT INTO `lt_actionscheduler_logs` VALUES("92", "187", "action complete via Async Request", "2020-05-18 04:46:35", "2020-05-18 11:46:35");
INSERT INTO `lt_actionscheduler_logs` VALUES("93", "197", "action created", "2020-05-18 04:46:35", "2020-05-18 11:46:35");
INSERT INTO `lt_actionscheduler_logs` VALUES("94", "197", "action started via Async Request", "2020-05-18 05:01:56", "2020-05-18 12:01:56");
INSERT INTO `lt_actionscheduler_logs` VALUES("95", "197", "action complete via Async Request", "2020-05-18 05:01:56", "2020-05-18 12:01:56");
INSERT INTO `lt_actionscheduler_logs` VALUES("96", "198", "action created", "2020-05-18 05:01:56", "2020-05-18 12:01:56");
INSERT INTO `lt_actionscheduler_logs` VALUES("97", "199", "action created", "2020-05-18 05:14:25", "2020-05-18 12:14:25");
INSERT INTO `lt_actionscheduler_logs` VALUES("98", "200", "action created", "2020-05-18 05:14:25", "2020-05-18 12:14:25");
INSERT INTO `lt_actionscheduler_logs` VALUES("99", "199", "action started via WP Cron", "2020-05-18 05:15:34", "2020-05-18 12:15:34");
INSERT INTO `lt_actionscheduler_logs` VALUES("100", "199", "action complete via WP Cron", "2020-05-18 05:15:34", "2020-05-18 12:15:34");
INSERT INTO `lt_actionscheduler_logs` VALUES("101", "200", "action started via WP Cron", "2020-05-18 05:15:34", "2020-05-18 12:15:34");
INSERT INTO `lt_actionscheduler_logs` VALUES("102", "200", "action complete via WP Cron", "2020-05-18 05:15:34", "2020-05-18 12:15:34");
INSERT INTO `lt_actionscheduler_logs` VALUES("103", "198", "action started via WP Cron", "2020-05-18 05:18:05", "2020-05-18 12:18:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("104", "198", "action complete via WP Cron", "2020-05-18 05:18:05", "2020-05-18 12:18:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("105", "201", "action created", "2020-05-18 05:18:05", "2020-05-18 12:18:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("106", "202", "action created", "2020-05-18 05:25:57", "2020-05-18 12:25:57");
INSERT INTO `lt_actionscheduler_logs` VALUES("107", "203", "action created", "2020-05-18 05:25:57", "2020-05-18 12:25:57");
INSERT INTO `lt_actionscheduler_logs` VALUES("108", "202", "action started via WP Cron", "2020-05-18 05:26:30", "2020-05-18 12:26:30");
INSERT INTO `lt_actionscheduler_logs` VALUES("109", "202", "action complete via WP Cron", "2020-05-18 05:26:30", "2020-05-18 12:26:30");
INSERT INTO `lt_actionscheduler_logs` VALUES("110", "203", "action started via WP Cron", "2020-05-18 05:26:30", "2020-05-18 12:26:30");
INSERT INTO `lt_actionscheduler_logs` VALUES("111", "203", "action complete via WP Cron", "2020-05-18 05:26:30", "2020-05-18 12:26:30");
INSERT INTO `lt_actionscheduler_logs` VALUES("112", "201", "action started via WP Cron", "2020-05-18 05:33:05", "2020-05-18 12:33:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("113", "201", "action complete via WP Cron", "2020-05-18 05:33:05", "2020-05-18 12:33:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("114", "204", "action created", "2020-05-18 05:33:05", "2020-05-18 12:33:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("115", "204", "action started via WP Cron", "2020-05-18 05:48:16", "2020-05-18 12:48:16");
INSERT INTO `lt_actionscheduler_logs` VALUES("116", "204", "action complete via WP Cron", "2020-05-18 05:48:16", "2020-05-18 12:48:16");
INSERT INTO `lt_actionscheduler_logs` VALUES("117", "205", "action created", "2020-05-18 05:48:16", "2020-05-18 12:48:16");
INSERT INTO `lt_actionscheduler_logs` VALUES("118", "205", "action started via WP Cron", "2020-05-18 06:05:05", "2020-05-18 13:05:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("119", "205", "action complete via WP Cron", "2020-05-18 06:05:05", "2020-05-18 13:05:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("120", "206", "action created", "2020-05-18 06:05:05", "2020-05-18 13:05:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("121", "206", "action started via WP Cron", "2020-05-18 06:20:08", "2020-05-18 13:20:08");
INSERT INTO `lt_actionscheduler_logs` VALUES("122", "206", "action complete via WP Cron", "2020-05-18 06:20:08", "2020-05-18 13:20:08");
INSERT INTO `lt_actionscheduler_logs` VALUES("123", "207", "action created", "2020-05-18 06:20:08", "2020-05-18 13:20:08");
INSERT INTO `lt_actionscheduler_logs` VALUES("124", "207", "action started via WP Cron", "2020-05-18 06:35:15", "2020-05-18 13:35:15");
INSERT INTO `lt_actionscheduler_logs` VALUES("125", "207", "action complete via WP Cron", "2020-05-18 06:35:15", "2020-05-18 13:35:15");
INSERT INTO `lt_actionscheduler_logs` VALUES("126", "208", "action created", "2020-05-18 06:35:15", "2020-05-18 13:35:15");
INSERT INTO `lt_actionscheduler_logs` VALUES("127", "208", "action started via WP Cron", "2020-05-18 06:50:43", "2020-05-18 13:50:43");
INSERT INTO `lt_actionscheduler_logs` VALUES("128", "208", "action complete via WP Cron", "2020-05-18 06:50:43", "2020-05-18 13:50:43");
INSERT INTO `lt_actionscheduler_logs` VALUES("129", "209", "action created", "2020-05-18 06:50:43", "2020-05-18 13:50:43");
INSERT INTO `lt_actionscheduler_logs` VALUES("130", "209", "action started via WP Cron", "2020-05-18 07:07:06", "2020-05-18 14:07:06");
INSERT INTO `lt_actionscheduler_logs` VALUES("131", "209", "action complete via WP Cron", "2020-05-18 07:07:06", "2020-05-18 14:07:06");
INSERT INTO `lt_actionscheduler_logs` VALUES("132", "210", "action created", "2020-05-18 07:07:06", "2020-05-18 14:07:06");
INSERT INTO `lt_actionscheduler_logs` VALUES("133", "211", "action created", "2020-05-18 07:11:08", "2020-05-18 14:11:08");
INSERT INTO `lt_actionscheduler_logs` VALUES("134", "212", "action created", "2020-05-18 07:11:08", "2020-05-18 14:11:08");
INSERT INTO `lt_actionscheduler_logs` VALUES("135", "211", "action started via WP Cron", "2020-05-18 07:13:08", "2020-05-18 14:13:08");
INSERT INTO `lt_actionscheduler_logs` VALUES("136", "211", "action complete via WP Cron", "2020-05-18 07:13:08", "2020-05-18 14:13:08");
INSERT INTO `lt_actionscheduler_logs` VALUES("137", "212", "action started via WP Cron", "2020-05-18 07:13:08", "2020-05-18 14:13:08");
INSERT INTO `lt_actionscheduler_logs` VALUES("138", "212", "action complete via WP Cron", "2020-05-18 07:13:08", "2020-05-18 14:13:08");
INSERT INTO `lt_actionscheduler_logs` VALUES("139", "210", "action started via WP Cron", "2020-05-18 07:22:06", "2020-05-18 14:22:06");
INSERT INTO `lt_actionscheduler_logs` VALUES("140", "210", "action complete via WP Cron", "2020-05-18 07:22:06", "2020-05-18 14:22:06");
INSERT INTO `lt_actionscheduler_logs` VALUES("141", "213", "action created", "2020-05-18 07:22:06", "2020-05-18 14:22:06");
INSERT INTO `lt_actionscheduler_logs` VALUES("142", "213", "action started via WP Cron", "2020-05-18 07:37:14", "2020-05-18 14:37:14");
INSERT INTO `lt_actionscheduler_logs` VALUES("143", "213", "action complete via WP Cron", "2020-05-18 07:37:14", "2020-05-18 14:37:14");
INSERT INTO `lt_actionscheduler_logs` VALUES("144", "214", "action created", "2020-05-18 07:37:14", "2020-05-18 14:37:14");
INSERT INTO `lt_actionscheduler_logs` VALUES("145", "214", "action started via WP Cron", "2020-05-18 07:52:17", "2020-05-18 14:52:17");
INSERT INTO `lt_actionscheduler_logs` VALUES("146", "214", "action complete via WP Cron", "2020-05-18 07:52:17", "2020-05-18 14:52:17");
INSERT INTO `lt_actionscheduler_logs` VALUES("147", "215", "action created", "2020-05-18 07:52:17", "2020-05-18 14:52:17");
INSERT INTO `lt_actionscheduler_logs` VALUES("148", "215", "action started via WP Cron", "2020-05-18 08:21:33", "2020-05-18 15:21:33");
INSERT INTO `lt_actionscheduler_logs` VALUES("149", "215", "action complete via WP Cron", "2020-05-18 08:21:33", "2020-05-18 15:21:33");
INSERT INTO `lt_actionscheduler_logs` VALUES("150", "216", "action created", "2020-05-18 08:21:33", "2020-05-18 15:21:33");
INSERT INTO `lt_actionscheduler_logs` VALUES("151", "216", "action started via WP Cron", "2020-05-18 08:40:36", "2020-05-18 15:40:36");
INSERT INTO `lt_actionscheduler_logs` VALUES("152", "216", "action complete via WP Cron", "2020-05-18 08:40:37", "2020-05-18 15:40:37");
INSERT INTO `lt_actionscheduler_logs` VALUES("153", "217", "action created", "2020-05-18 08:40:37", "2020-05-18 15:40:37");
INSERT INTO `lt_actionscheduler_logs` VALUES("154", "217", "action started via WP Cron", "2020-05-18 08:59:10", "2020-05-18 15:59:10");
INSERT INTO `lt_actionscheduler_logs` VALUES("155", "217", "action complete via WP Cron", "2020-05-18 08:59:10", "2020-05-18 15:59:10");
INSERT INTO `lt_actionscheduler_logs` VALUES("156", "218", "action created", "2020-05-18 08:59:10", "2020-05-18 15:59:10");
INSERT INTO `lt_actionscheduler_logs` VALUES("157", "218", "action started via WP Cron", "2020-05-18 09:17:17", "2020-05-18 16:17:17");
INSERT INTO `lt_actionscheduler_logs` VALUES("158", "218", "action complete via WP Cron", "2020-05-18 09:17:17", "2020-05-18 16:17:17");
INSERT INTO `lt_actionscheduler_logs` VALUES("159", "219", "action created", "2020-05-18 09:17:17", "2020-05-18 16:17:17");
INSERT INTO `lt_actionscheduler_logs` VALUES("160", "219", "action started via WP Cron", "2020-05-18 09:37:08", "2020-05-18 16:37:08");
INSERT INTO `lt_actionscheduler_logs` VALUES("161", "219", "action complete via WP Cron", "2020-05-18 09:37:08", "2020-05-18 16:37:08");
INSERT INTO `lt_actionscheduler_logs` VALUES("162", "220", "action created", "2020-05-18 09:37:08", "2020-05-18 16:37:08");
INSERT INTO `lt_actionscheduler_logs` VALUES("163", "220", "action started via WP Cron", "2020-05-18 09:56:02", "2020-05-18 16:56:02");
INSERT INTO `lt_actionscheduler_logs` VALUES("164", "220", "action complete via WP Cron", "2020-05-18 09:56:02", "2020-05-18 16:56:02");
INSERT INTO `lt_actionscheduler_logs` VALUES("165", "221", "action created", "2020-05-18 09:56:02", "2020-05-18 16:56:02");
INSERT INTO `lt_actionscheduler_logs` VALUES("166", "221", "action started via WP Cron", "2020-05-18 10:15:14", "2020-05-18 17:15:14");
INSERT INTO `lt_actionscheduler_logs` VALUES("167", "221", "action complete via WP Cron", "2020-05-18 10:15:14", "2020-05-18 17:15:14");
INSERT INTO `lt_actionscheduler_logs` VALUES("168", "222", "action created", "2020-05-18 10:15:14", "2020-05-18 17:15:14");
INSERT INTO `lt_actionscheduler_logs` VALUES("169", "222", "action started via WP Cron", "2020-05-18 10:34:37", "2020-05-18 17:34:37");
INSERT INTO `lt_actionscheduler_logs` VALUES("170", "222", "action complete via WP Cron", "2020-05-18 10:34:37", "2020-05-18 17:34:37");
INSERT INTO `lt_actionscheduler_logs` VALUES("171", "223", "action created", "2020-05-18 10:34:37", "2020-05-18 17:34:37");
INSERT INTO `lt_actionscheduler_logs` VALUES("172", "223", "action started via WP Cron", "2020-05-18 10:52:59", "2020-05-18 17:52:59");
INSERT INTO `lt_actionscheduler_logs` VALUES("173", "223", "action complete via WP Cron", "2020-05-18 10:52:59", "2020-05-18 17:52:59");
INSERT INTO `lt_actionscheduler_logs` VALUES("174", "224", "action created", "2020-05-18 10:52:59", "2020-05-18 17:52:59");
INSERT INTO `lt_actionscheduler_logs` VALUES("175", "224", "action started via WP Cron", "2020-05-18 11:14:02", "2020-05-18 18:14:02");
INSERT INTO `lt_actionscheduler_logs` VALUES("176", "224", "action complete via WP Cron", "2020-05-18 11:14:02", "2020-05-18 18:14:02");
INSERT INTO `lt_actionscheduler_logs` VALUES("177", "225", "action created", "2020-05-18 11:14:02", "2020-05-18 18:14:02");
INSERT INTO `lt_actionscheduler_logs` VALUES("178", "225", "action started via WP Cron", "2020-05-18 11:29:48", "2020-05-18 18:29:48");
INSERT INTO `lt_actionscheduler_logs` VALUES("179", "225", "action complete via WP Cron", "2020-05-18 11:29:48", "2020-05-18 18:29:48");
INSERT INTO `lt_actionscheduler_logs` VALUES("180", "226", "action created", "2020-05-18 11:29:48", "2020-05-18 18:29:48");
INSERT INTO `lt_actionscheduler_logs` VALUES("181", "226", "action started via WP Cron", "2020-05-18 11:53:28", "2020-05-18 18:53:28");
INSERT INTO `lt_actionscheduler_logs` VALUES("182", "226", "action complete via WP Cron", "2020-05-18 11:53:28", "2020-05-18 18:53:28");
INSERT INTO `lt_actionscheduler_logs` VALUES("183", "227", "action created", "2020-05-18 11:53:28", "2020-05-18 18:53:28");
INSERT INTO `lt_actionscheduler_logs` VALUES("184", "227", "action started via WP Cron", "2020-05-18 12:14:25", "2020-05-18 19:14:25");
INSERT INTO `lt_actionscheduler_logs` VALUES("185", "227", "action complete via WP Cron", "2020-05-18 12:14:25", "2020-05-18 19:14:25");
INSERT INTO `lt_actionscheduler_logs` VALUES("186", "228", "action created", "2020-05-18 12:14:25", "2020-05-18 19:14:25");
INSERT INTO `lt_actionscheduler_logs` VALUES("187", "228", "action started via WP Cron", "2020-05-18 12:29:58", "2020-05-18 19:29:58");
INSERT INTO `lt_actionscheduler_logs` VALUES("188", "228", "action complete via WP Cron", "2020-05-18 12:29:58", "2020-05-18 19:29:58");
INSERT INTO `lt_actionscheduler_logs` VALUES("189", "229", "action created", "2020-05-18 12:29:58", "2020-05-18 19:29:58");
INSERT INTO `lt_actionscheduler_logs` VALUES("190", "229", "action started via WP Cron", "2020-05-18 12:57:05", "2020-05-18 19:57:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("191", "229", "action complete via WP Cron", "2020-05-18 12:57:05", "2020-05-18 19:57:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("192", "230", "action created", "2020-05-18 12:57:05", "2020-05-18 19:57:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("193", "230", "action started via WP Cron", "2020-05-18 13:17:55", "2020-05-18 20:17:55");
INSERT INTO `lt_actionscheduler_logs` VALUES("194", "230", "action complete via WP Cron", "2020-05-18 13:17:55", "2020-05-18 20:17:55");
INSERT INTO `lt_actionscheduler_logs` VALUES("195", "231", "action created", "2020-05-18 13:17:55", "2020-05-18 20:17:55");
INSERT INTO `lt_actionscheduler_logs` VALUES("196", "231", "action started via WP Cron", "2020-05-18 13:37:59", "2020-05-18 20:37:59");
INSERT INTO `lt_actionscheduler_logs` VALUES("197", "231", "action complete via WP Cron", "2020-05-18 13:37:59", "2020-05-18 20:37:59");
INSERT INTO `lt_actionscheduler_logs` VALUES("198", "232", "action created", "2020-05-18 13:37:59", "2020-05-18 20:37:59");
INSERT INTO `lt_actionscheduler_logs` VALUES("199", "232", "action started via WP Cron", "2020-05-18 14:00:51", "2020-05-18 21:00:51");
INSERT INTO `lt_actionscheduler_logs` VALUES("200", "232", "action complete via WP Cron", "2020-05-18 14:00:51", "2020-05-18 21:00:51");
INSERT INTO `lt_actionscheduler_logs` VALUES("201", "233", "action created", "2020-05-18 14:00:51", "2020-05-18 21:00:51");
INSERT INTO `lt_actionscheduler_logs` VALUES("202", "233", "action started via WP Cron", "2020-05-18 14:23:33", "2020-05-18 21:23:33");
INSERT INTO `lt_actionscheduler_logs` VALUES("203", "233", "action complete via WP Cron", "2020-05-18 14:23:33", "2020-05-18 21:23:33");
INSERT INTO `lt_actionscheduler_logs` VALUES("204", "234", "action created", "2020-05-18 14:23:33", "2020-05-18 21:23:33");
INSERT INTO `lt_actionscheduler_logs` VALUES("205", "234", "action started via WP Cron", "2020-05-18 14:44:12", "2020-05-18 21:44:12");
INSERT INTO `lt_actionscheduler_logs` VALUES("206", "234", "action complete via WP Cron", "2020-05-18 14:44:12", "2020-05-18 21:44:12");
INSERT INTO `lt_actionscheduler_logs` VALUES("207", "235", "action created", "2020-05-18 14:44:12", "2020-05-18 21:44:12");
INSERT INTO `lt_actionscheduler_logs` VALUES("208", "235", "action started via WP Cron", "2020-05-18 15:07:02", "2020-05-18 22:07:02");
INSERT INTO `lt_actionscheduler_logs` VALUES("209", "235", "action complete via WP Cron", "2020-05-18 15:07:02", "2020-05-18 22:07:02");
INSERT INTO `lt_actionscheduler_logs` VALUES("210", "236", "action created", "2020-05-18 15:07:02", "2020-05-18 22:07:02");
INSERT INTO `lt_actionscheduler_logs` VALUES("211", "236", "action started via WP Cron", "2020-05-18 15:30:44", "2020-05-18 22:30:44");
INSERT INTO `lt_actionscheduler_logs` VALUES("212", "236", "action complete via WP Cron", "2020-05-18 15:30:45", "2020-05-18 22:30:45");
INSERT INTO `lt_actionscheduler_logs` VALUES("213", "237", "action created", "2020-05-18 15:30:45", "2020-05-18 22:30:45");
INSERT INTO `lt_actionscheduler_logs` VALUES("214", "237", "action started via WP Cron", "2020-05-18 16:31:34", "2020-05-18 23:31:34");
INSERT INTO `lt_actionscheduler_logs` VALUES("215", "237", "action complete via WP Cron", "2020-05-18 16:31:34", "2020-05-18 23:31:34");
INSERT INTO `lt_actionscheduler_logs` VALUES("216", "238", "action created", "2020-05-18 16:31:34", "2020-05-18 23:31:34");
INSERT INTO `lt_actionscheduler_logs` VALUES("217", "238", "action started via WP Cron", "2020-05-18 17:13:06", "2020-05-19 00:13:06");
INSERT INTO `lt_actionscheduler_logs` VALUES("218", "238", "action complete via WP Cron", "2020-05-18 17:13:06", "2020-05-19 00:13:06");
INSERT INTO `lt_actionscheduler_logs` VALUES("219", "239", "action created", "2020-05-18 17:13:06", "2020-05-19 00:13:06");
INSERT INTO `lt_actionscheduler_logs` VALUES("220", "239", "action started via WP Cron", "2020-05-18 17:31:22", "2020-05-19 00:31:22");
INSERT INTO `lt_actionscheduler_logs` VALUES("221", "239", "action complete via WP Cron", "2020-05-18 17:31:22", "2020-05-19 00:31:22");
INSERT INTO `lt_actionscheduler_logs` VALUES("222", "240", "action created", "2020-05-18 17:31:22", "2020-05-19 00:31:22");
INSERT INTO `lt_actionscheduler_logs` VALUES("223", "240", "action started via WP Cron", "2020-05-18 18:30:48", "2020-05-19 01:30:48");
INSERT INTO `lt_actionscheduler_logs` VALUES("224", "240", "action complete via WP Cron", "2020-05-18 18:30:48", "2020-05-19 01:30:48");
INSERT INTO `lt_actionscheduler_logs` VALUES("225", "241", "action created", "2020-05-18 18:30:48", "2020-05-19 01:30:48");
INSERT INTO `lt_actionscheduler_logs` VALUES("226", "241", "action started via WP Cron", "2020-05-18 19:30:30", "2020-05-19 02:30:30");
INSERT INTO `lt_actionscheduler_logs` VALUES("227", "241", "action complete via WP Cron", "2020-05-18 19:30:30", "2020-05-19 02:30:30");
INSERT INTO `lt_actionscheduler_logs` VALUES("228", "242", "action created", "2020-05-18 19:30:30", "2020-05-19 02:30:30");
INSERT INTO `lt_actionscheduler_logs` VALUES("229", "242", "action started via WP Cron", "2020-05-18 20:30:16", "2020-05-19 03:30:16");
INSERT INTO `lt_actionscheduler_logs` VALUES("230", "242", "action complete via WP Cron", "2020-05-18 20:30:16", "2020-05-19 03:30:16");
INSERT INTO `lt_actionscheduler_logs` VALUES("231", "243", "action created", "2020-05-18 20:30:16", "2020-05-19 03:30:16");
INSERT INTO `lt_actionscheduler_logs` VALUES("232", "243", "action started via WP Cron", "2020-05-18 21:30:17", "2020-05-19 04:30:17");
INSERT INTO `lt_actionscheduler_logs` VALUES("233", "243", "action complete via WP Cron", "2020-05-18 21:30:17", "2020-05-19 04:30:17");
INSERT INTO `lt_actionscheduler_logs` VALUES("234", "244", "action created", "2020-05-18 21:30:17", "2020-05-19 04:30:17");
INSERT INTO `lt_actionscheduler_logs` VALUES("235", "244", "action started via WP Cron", "2020-05-18 22:30:41", "2020-05-19 05:30:41");
INSERT INTO `lt_actionscheduler_logs` VALUES("236", "244", "action complete via WP Cron", "2020-05-18 22:30:41", "2020-05-19 05:30:41");
INSERT INTO `lt_actionscheduler_logs` VALUES("237", "245", "action created", "2020-05-18 22:30:41", "2020-05-19 05:30:41");
INSERT INTO `lt_actionscheduler_logs` VALUES("238", "245", "action started via WP Cron", "2020-05-18 23:31:01", "2020-05-19 06:31:01");
INSERT INTO `lt_actionscheduler_logs` VALUES("239", "245", "action complete via WP Cron", "2020-05-18 23:31:01", "2020-05-19 06:31:01");
INSERT INTO `lt_actionscheduler_logs` VALUES("240", "246", "action created", "2020-05-18 23:31:01", "2020-05-19 06:31:01");
INSERT INTO `lt_actionscheduler_logs` VALUES("241", "246", "action started via WP Cron", "2020-05-19 00:30:33", "2020-05-19 07:30:33");
INSERT INTO `lt_actionscheduler_logs` VALUES("242", "246", "action complete via WP Cron", "2020-05-19 00:30:33", "2020-05-19 07:30:33");
INSERT INTO `lt_actionscheduler_logs` VALUES("243", "247", "action created", "2020-05-19 00:30:33", "2020-05-19 07:30:33");
INSERT INTO `lt_actionscheduler_logs` VALUES("244", "247", "action started via WP Cron", "2020-05-19 01:31:17", "2020-05-19 08:31:17");
INSERT INTO `lt_actionscheduler_logs` VALUES("245", "247", "action complete via WP Cron", "2020-05-19 01:31:17", "2020-05-19 08:31:17");
INSERT INTO `lt_actionscheduler_logs` VALUES("246", "248", "action created", "2020-05-19 01:31:17", "2020-05-19 08:31:17");
INSERT INTO `lt_actionscheduler_logs` VALUES("247", "248", "action started via WP Cron", "2020-05-19 02:30:35", "2020-05-19 09:30:35");
INSERT INTO `lt_actionscheduler_logs` VALUES("248", "248", "action complete via WP Cron", "2020-05-19 02:30:35", "2020-05-19 09:30:35");
INSERT INTO `lt_actionscheduler_logs` VALUES("249", "249", "action created", "2020-05-19 02:30:35", "2020-05-19 09:30:35");
INSERT INTO `lt_actionscheduler_logs` VALUES("250", "249", "action started via WP Cron", "2020-05-19 03:21:09", "2020-05-19 10:21:09");
INSERT INTO `lt_actionscheduler_logs` VALUES("251", "249", "action complete via WP Cron", "2020-05-19 03:21:09", "2020-05-19 10:21:09");
INSERT INTO `lt_actionscheduler_logs` VALUES("252", "250", "action created", "2020-05-19 03:21:09", "2020-05-19 10:21:09");
INSERT INTO `lt_actionscheduler_logs` VALUES("253", "250", "action started via WP Cron", "2020-05-19 03:38:35", "2020-05-19 10:38:35");
INSERT INTO `lt_actionscheduler_logs` VALUES("254", "250", "action complete via WP Cron", "2020-05-19 03:38:35", "2020-05-19 10:38:35");
INSERT INTO `lt_actionscheduler_logs` VALUES("255", "251", "action created", "2020-05-19 03:38:36", "2020-05-19 10:38:36");
INSERT INTO `lt_actionscheduler_logs` VALUES("256", "251", "action started via WP Cron", "2020-05-19 03:56:17", "2020-05-19 10:56:17");
INSERT INTO `lt_actionscheduler_logs` VALUES("257", "251", "action complete via WP Cron", "2020-05-19 03:56:17", "2020-05-19 10:56:17");
INSERT INTO `lt_actionscheduler_logs` VALUES("258", "252", "action created", "2020-05-19 03:56:17", "2020-05-19 10:56:17");
INSERT INTO `lt_actionscheduler_logs` VALUES("259", "252", "action started via WP Cron", "2020-05-19 04:12:05", "2020-05-19 11:12:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("260", "252", "action complete via WP Cron", "2020-05-19 04:12:05", "2020-05-19 11:12:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("261", "253", "action created", "2020-05-19 04:12:05", "2020-05-19 11:12:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("262", "253", "action started via WP Cron", "2020-05-19 04:27:41", "2020-05-19 11:27:41");
INSERT INTO `lt_actionscheduler_logs` VALUES("263", "253", "action complete via WP Cron", "2020-05-19 04:27:41", "2020-05-19 11:27:41");
INSERT INTO `lt_actionscheduler_logs` VALUES("264", "254", "action created", "2020-05-19 04:27:41", "2020-05-19 11:27:41");
INSERT INTO `lt_actionscheduler_logs` VALUES("265", "254", "action started via WP Cron", "2020-05-19 04:42:47", "2020-05-19 11:42:47");
INSERT INTO `lt_actionscheduler_logs` VALUES("266", "254", "action complete via WP Cron", "2020-05-19 04:42:47", "2020-05-19 11:42:47");
INSERT INTO `lt_actionscheduler_logs` VALUES("267", "255", "action created", "2020-05-19 04:42:47", "2020-05-19 11:42:47");
INSERT INTO `lt_actionscheduler_logs` VALUES("268", "255", "action started via WP Cron", "2020-05-19 04:58:00", "2020-05-19 11:58:00");
INSERT INTO `lt_actionscheduler_logs` VALUES("269", "255", "action complete via WP Cron", "2020-05-19 04:58:00", "2020-05-19 11:58:00");
INSERT INTO `lt_actionscheduler_logs` VALUES("270", "256", "action created", "2020-05-19 04:58:00", "2020-05-19 11:58:00");
INSERT INTO `lt_actionscheduler_logs` VALUES("271", "256", "action started via WP Cron", "2020-05-19 05:26:39", "2020-05-19 12:26:39");
INSERT INTO `lt_actionscheduler_logs` VALUES("272", "256", "action complete via WP Cron", "2020-05-19 05:26:39", "2020-05-19 12:26:39");
INSERT INTO `lt_actionscheduler_logs` VALUES("273", "257", "action created", "2020-05-19 05:26:39", "2020-05-19 12:26:39");
INSERT INTO `lt_actionscheduler_logs` VALUES("274", "257", "action started via WP Cron", "2020-05-19 05:54:57", "2020-05-19 12:54:57");
INSERT INTO `lt_actionscheduler_logs` VALUES("275", "257", "action complete via WP Cron", "2020-05-19 05:54:57", "2020-05-19 12:54:57");
INSERT INTO `lt_actionscheduler_logs` VALUES("276", "258", "action created", "2020-05-19 05:54:57", "2020-05-19 12:54:57");
INSERT INTO `lt_actionscheduler_logs` VALUES("277", "258", "action started via WP Cron", "2020-05-19 06:24:48", "2020-05-19 13:24:48");
INSERT INTO `lt_actionscheduler_logs` VALUES("278", "258", "action complete via WP Cron", "2020-05-19 06:24:49", "2020-05-19 13:24:49");
INSERT INTO `lt_actionscheduler_logs` VALUES("279", "259", "action created", "2020-05-19 06:24:49", "2020-05-19 13:24:49");
INSERT INTO `lt_actionscheduler_logs` VALUES("280", "259", "action started via WP Cron", "2020-05-19 06:53:58", "2020-05-19 13:53:58");
INSERT INTO `lt_actionscheduler_logs` VALUES("281", "259", "action complete via WP Cron", "2020-05-19 06:53:58", "2020-05-19 13:53:58");
INSERT INTO `lt_actionscheduler_logs` VALUES("282", "260", "action created", "2020-05-19 06:53:58", "2020-05-19 13:53:58");
INSERT INTO `lt_actionscheduler_logs` VALUES("283", "260", "action started via WP Cron", "2020-05-19 07:24:52", "2020-05-19 14:24:52");
INSERT INTO `lt_actionscheduler_logs` VALUES("284", "260", "action complete via WP Cron", "2020-05-19 07:24:52", "2020-05-19 14:24:52");
INSERT INTO `lt_actionscheduler_logs` VALUES("285", "261", "action created", "2020-05-19 07:24:52", "2020-05-19 14:24:52");
INSERT INTO `lt_actionscheduler_logs` VALUES("286", "261", "action started via WP Cron", "2020-05-19 07:58:00", "2020-05-19 14:58:00");
INSERT INTO `lt_actionscheduler_logs` VALUES("287", "261", "action complete via WP Cron", "2020-05-19 07:58:00", "2020-05-19 14:58:00");
INSERT INTO `lt_actionscheduler_logs` VALUES("288", "262", "action created", "2020-05-19 07:58:00", "2020-05-19 14:58:00");
INSERT INTO `lt_actionscheduler_logs` VALUES("289", "262", "action started via WP Cron", "2020-05-19 08:26:36", "2020-05-19 15:26:36");
INSERT INTO `lt_actionscheduler_logs` VALUES("290", "262", "action complete via WP Cron", "2020-05-19 08:26:36", "2020-05-19 15:26:36");
INSERT INTO `lt_actionscheduler_logs` VALUES("291", "263", "action created", "2020-05-19 08:26:36", "2020-05-19 15:26:36");
INSERT INTO `lt_actionscheduler_logs` VALUES("292", "263", "action started via WP Cron", "2020-05-19 08:41:36", "2020-05-19 15:41:36");
INSERT INTO `lt_actionscheduler_logs` VALUES("293", "263", "action complete via WP Cron", "2020-05-19 08:41:36", "2020-05-19 15:41:36");
INSERT INTO `lt_actionscheduler_logs` VALUES("294", "264", "action created", "2020-05-19 08:41:36", "2020-05-19 15:41:36");
INSERT INTO `lt_actionscheduler_logs` VALUES("295", "264", "action started via WP Cron", "2020-05-19 09:11:47", "2020-05-19 16:11:47");
INSERT INTO `lt_actionscheduler_logs` VALUES("296", "264", "action complete via WP Cron", "2020-05-19 09:11:47", "2020-05-19 16:11:47");
INSERT INTO `lt_actionscheduler_logs` VALUES("297", "265", "action created", "2020-05-19 09:11:47", "2020-05-19 16:11:47");
INSERT INTO `lt_actionscheduler_logs` VALUES("298", "265", "action started via WP Cron", "2020-05-19 09:27:04", "2020-05-19 16:27:04");
INSERT INTO `lt_actionscheduler_logs` VALUES("299", "265", "action complete via WP Cron", "2020-05-19 09:27:04", "2020-05-19 16:27:04");
INSERT INTO `lt_actionscheduler_logs` VALUES("300", "266", "action created", "2020-05-19 09:27:04", "2020-05-19 16:27:04");
INSERT INTO `lt_actionscheduler_logs` VALUES("301", "266", "action started via WP Cron", "2020-05-19 09:56:33", "2020-05-19 16:56:33");
INSERT INTO `lt_actionscheduler_logs` VALUES("302", "266", "action complete via WP Cron", "2020-05-19 09:56:33", "2020-05-19 16:56:33");
INSERT INTO `lt_actionscheduler_logs` VALUES("303", "267", "action created", "2020-05-19 09:56:33", "2020-05-19 16:56:33");
INSERT INTO `lt_actionscheduler_logs` VALUES("304", "267", "action started via WP Cron", "2020-05-19 10:26:02", "2020-05-19 17:26:02");
INSERT INTO `lt_actionscheduler_logs` VALUES("305", "267", "action complete via WP Cron", "2020-05-19 10:26:02", "2020-05-19 17:26:02");
INSERT INTO `lt_actionscheduler_logs` VALUES("306", "268", "action created", "2020-05-19 10:26:02", "2020-05-19 17:26:02");
INSERT INTO `lt_actionscheduler_logs` VALUES("307", "268", "action started via WP Cron", "2020-05-19 10:54:00", "2020-05-19 17:54:00");
INSERT INTO `lt_actionscheduler_logs` VALUES("308", "268", "action complete via WP Cron", "2020-05-19 10:54:00", "2020-05-19 17:54:00");
INSERT INTO `lt_actionscheduler_logs` VALUES("309", "269", "action created", "2020-05-19 10:54:00", "2020-05-19 17:54:00");
INSERT INTO `lt_actionscheduler_logs` VALUES("310", "269", "action started via WP Cron", "2020-05-19 11:10:40", "2020-05-19 18:10:40");
INSERT INTO `lt_actionscheduler_logs` VALUES("311", "269", "action complete via WP Cron", "2020-05-19 11:10:40", "2020-05-19 18:10:40");
INSERT INTO `lt_actionscheduler_logs` VALUES("312", "270", "action created", "2020-05-19 11:10:40", "2020-05-19 18:10:40");
INSERT INTO `lt_actionscheduler_logs` VALUES("313", "270", "action started via WP Cron", "2020-05-19 11:29:40", "2020-05-19 18:29:40");
INSERT INTO `lt_actionscheduler_logs` VALUES("314", "270", "action complete via WP Cron", "2020-05-19 11:29:40", "2020-05-19 18:29:40");
INSERT INTO `lt_actionscheduler_logs` VALUES("315", "271", "action created", "2020-05-19 11:29:40", "2020-05-19 18:29:40");
INSERT INTO `lt_actionscheduler_logs` VALUES("316", "271", "action started via WP Cron", "2020-05-19 11:52:59", "2020-05-19 18:52:59");
INSERT INTO `lt_actionscheduler_logs` VALUES("317", "271", "action complete via WP Cron", "2020-05-19 11:52:59", "2020-05-19 18:52:59");
INSERT INTO `lt_actionscheduler_logs` VALUES("318", "272", "action created", "2020-05-19 11:52:59", "2020-05-19 18:52:59");
INSERT INTO `lt_actionscheduler_logs` VALUES("319", "272", "action started via WP Cron", "2020-05-19 12:23:37", "2020-05-19 19:23:37");
INSERT INTO `lt_actionscheduler_logs` VALUES("320", "272", "action complete via WP Cron", "2020-05-19 12:23:37", "2020-05-19 19:23:37");
INSERT INTO `lt_actionscheduler_logs` VALUES("321", "273", "action created", "2020-05-19 12:23:37", "2020-05-19 19:23:37");
INSERT INTO `lt_actionscheduler_logs` VALUES("322", "273", "action started via WP Cron", "2020-05-19 12:39:07", "2020-05-19 19:39:07");
INSERT INTO `lt_actionscheduler_logs` VALUES("323", "273", "action complete via WP Cron", "2020-05-19 12:39:07", "2020-05-19 19:39:07");
INSERT INTO `lt_actionscheduler_logs` VALUES("324", "274", "action created", "2020-05-19 12:39:07", "2020-05-19 19:39:07");
INSERT INTO `lt_actionscheduler_logs` VALUES("325", "274", "action started via WP Cron", "2020-05-19 13:08:38", "2020-05-19 20:08:38");
INSERT INTO `lt_actionscheduler_logs` VALUES("326", "274", "action complete via WP Cron", "2020-05-19 13:08:38", "2020-05-19 20:08:38");
INSERT INTO `lt_actionscheduler_logs` VALUES("327", "275", "action created", "2020-05-19 13:08:38", "2020-05-19 20:08:38");
INSERT INTO `lt_actionscheduler_logs` VALUES("328", "275", "action started via WP Cron", "2020-05-19 13:23:41", "2020-05-19 20:23:41");
INSERT INTO `lt_actionscheduler_logs` VALUES("329", "275", "action complete via WP Cron", "2020-05-19 13:23:41", "2020-05-19 20:23:41");
INSERT INTO `lt_actionscheduler_logs` VALUES("330", "276", "action created", "2020-05-19 13:23:41", "2020-05-19 20:23:41");
INSERT INTO `lt_actionscheduler_logs` VALUES("331", "276", "action started via WP Cron", "2020-05-19 13:38:42", "2020-05-19 20:38:42");
INSERT INTO `lt_actionscheduler_logs` VALUES("332", "276", "action complete via WP Cron", "2020-05-19 13:38:42", "2020-05-19 20:38:42");
INSERT INTO `lt_actionscheduler_logs` VALUES("333", "277", "action created", "2020-05-19 13:38:42", "2020-05-19 20:38:42");
INSERT INTO `lt_actionscheduler_logs` VALUES("334", "277", "action started via WP Cron", "2020-05-19 13:54:16", "2020-05-19 20:54:16");
INSERT INTO `lt_actionscheduler_logs` VALUES("335", "277", "action complete via WP Cron", "2020-05-19 13:54:16", "2020-05-19 20:54:16");
INSERT INTO `lt_actionscheduler_logs` VALUES("336", "278", "action created", "2020-05-19 13:54:16", "2020-05-19 20:54:16");
INSERT INTO `lt_actionscheduler_logs` VALUES("337", "278", "action started via WP Cron", "2020-05-19 14:30:06", "2020-05-19 21:30:06");
INSERT INTO `lt_actionscheduler_logs` VALUES("338", "278", "action complete via WP Cron", "2020-05-19 14:30:06", "2020-05-19 21:30:06");
INSERT INTO `lt_actionscheduler_logs` VALUES("339", "279", "action created", "2020-05-19 14:30:06", "2020-05-19 21:30:06");
INSERT INTO `lt_actionscheduler_logs` VALUES("340", "279", "action started via WP Cron", "2020-05-19 15:09:05", "2020-05-19 22:09:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("341", "279", "action complete via WP Cron", "2020-05-19 15:09:05", "2020-05-19 22:09:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("342", "280", "action created", "2020-05-19 15:09:05", "2020-05-19 22:09:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("343", "280", "action started via WP Cron", "2020-05-19 15:30:21", "2020-05-19 22:30:21");
INSERT INTO `lt_actionscheduler_logs` VALUES("344", "280", "action complete via WP Cron", "2020-05-19 15:30:21", "2020-05-19 22:30:21");
INSERT INTO `lt_actionscheduler_logs` VALUES("345", "281", "action created", "2020-05-19 15:30:21", "2020-05-19 22:30:21");
INSERT INTO `lt_actionscheduler_logs` VALUES("346", "281", "action started via WP Cron", "2020-05-19 16:29:42", "2020-05-19 23:29:42");
INSERT INTO `lt_actionscheduler_logs` VALUES("347", "281", "action complete via WP Cron", "2020-05-19 16:29:42", "2020-05-19 23:29:42");
INSERT INTO `lt_actionscheduler_logs` VALUES("348", "282", "action created", "2020-05-19 16:29:42", "2020-05-19 23:29:42");
INSERT INTO `lt_actionscheduler_logs` VALUES("349", "282", "action started via WP Cron", "2020-05-19 17:30:20", "2020-05-20 00:30:20");
INSERT INTO `lt_actionscheduler_logs` VALUES("350", "282", "action complete via WP Cron", "2020-05-19 17:30:20", "2020-05-20 00:30:20");
INSERT INTO `lt_actionscheduler_logs` VALUES("351", "283", "action created", "2020-05-19 17:30:20", "2020-05-20 00:30:20");
INSERT INTO `lt_actionscheduler_logs` VALUES("352", "283", "action started via WP Cron", "2020-05-19 18:31:20", "2020-05-20 01:31:20");
INSERT INTO `lt_actionscheduler_logs` VALUES("353", "283", "action complete via WP Cron", "2020-05-19 18:31:20", "2020-05-20 01:31:20");
INSERT INTO `lt_actionscheduler_logs` VALUES("354", "284", "action created", "2020-05-19 18:31:20", "2020-05-20 01:31:20");
INSERT INTO `lt_actionscheduler_logs` VALUES("355", "284", "action started via WP Cron", "2020-05-19 19:29:52", "2020-05-20 02:29:52");
INSERT INTO `lt_actionscheduler_logs` VALUES("356", "284", "action complete via WP Cron", "2020-05-19 19:29:52", "2020-05-20 02:29:52");
INSERT INTO `lt_actionscheduler_logs` VALUES("357", "285", "action created", "2020-05-19 19:29:52", "2020-05-20 02:29:52");
INSERT INTO `lt_actionscheduler_logs` VALUES("358", "285", "action started via WP Cron", "2020-05-19 20:30:33", "2020-05-20 03:30:33");
INSERT INTO `lt_actionscheduler_logs` VALUES("359", "285", "action complete via WP Cron", "2020-05-19 20:30:33", "2020-05-20 03:30:33");
INSERT INTO `lt_actionscheduler_logs` VALUES("360", "286", "action created", "2020-05-19 20:30:33", "2020-05-20 03:30:33");
INSERT INTO `lt_actionscheduler_logs` VALUES("361", "286", "action started via WP Cron", "2020-05-19 21:31:26", "2020-05-20 04:31:26");
INSERT INTO `lt_actionscheduler_logs` VALUES("362", "286", "action complete via WP Cron", "2020-05-19 21:31:26", "2020-05-20 04:31:26");
INSERT INTO `lt_actionscheduler_logs` VALUES("363", "287", "action created", "2020-05-19 21:31:26", "2020-05-20 04:31:26");
INSERT INTO `lt_actionscheduler_logs` VALUES("364", "287", "action started via WP Cron", "2020-05-19 22:29:36", "2020-05-20 05:29:36");
INSERT INTO `lt_actionscheduler_logs` VALUES("365", "287", "action complete via WP Cron", "2020-05-19 22:29:36", "2020-05-20 05:29:36");
INSERT INTO `lt_actionscheduler_logs` VALUES("366", "288", "action created", "2020-05-19 22:29:36", "2020-05-20 05:29:36");
INSERT INTO `lt_actionscheduler_logs` VALUES("367", "288", "action started via WP Cron", "2020-05-19 23:30:09", "2020-05-20 06:30:09");
INSERT INTO `lt_actionscheduler_logs` VALUES("368", "288", "action complete via WP Cron", "2020-05-19 23:30:09", "2020-05-20 06:30:09");
INSERT INTO `lt_actionscheduler_logs` VALUES("369", "289", "action created", "2020-05-19 23:30:09", "2020-05-20 06:30:09");
INSERT INTO `lt_actionscheduler_logs` VALUES("370", "289", "action started via WP Cron", "2020-05-20 00:30:04", "2020-05-20 07:30:04");
INSERT INTO `lt_actionscheduler_logs` VALUES("371", "289", "action complete via WP Cron", "2020-05-20 00:30:04", "2020-05-20 07:30:04");
INSERT INTO `lt_actionscheduler_logs` VALUES("372", "290", "action created", "2020-05-20 00:30:04", "2020-05-20 07:30:04");
INSERT INTO `lt_actionscheduler_logs` VALUES("373", "290", "action started via WP Cron", "2020-05-20 01:30:26", "2020-05-20 08:30:26");
INSERT INTO `lt_actionscheduler_logs` VALUES("374", "290", "action complete via WP Cron", "2020-05-20 01:30:26", "2020-05-20 08:30:26");
INSERT INTO `lt_actionscheduler_logs` VALUES("375", "291", "action created", "2020-05-20 01:30:26", "2020-05-20 08:30:26");
INSERT INTO `lt_actionscheduler_logs` VALUES("376", "291", "action started via WP Cron", "2020-05-20 02:31:01", "2020-05-20 09:31:01");
INSERT INTO `lt_actionscheduler_logs` VALUES("377", "291", "action complete via WP Cron", "2020-05-20 02:31:01", "2020-05-20 09:31:01");
INSERT INTO `lt_actionscheduler_logs` VALUES("378", "292", "action created", "2020-05-20 02:31:01", "2020-05-20 09:31:01");
INSERT INTO `lt_actionscheduler_logs` VALUES("379", "292", "action started via WP Cron", "2020-05-20 03:30:11", "2020-05-20 10:30:11");
INSERT INTO `lt_actionscheduler_logs` VALUES("380", "292", "action complete via WP Cron", "2020-05-20 03:30:11", "2020-05-20 10:30:11");
INSERT INTO `lt_actionscheduler_logs` VALUES("381", "293", "action created", "2020-05-20 03:30:11", "2020-05-20 10:30:11");
INSERT INTO `lt_actionscheduler_logs` VALUES("382", "293", "action started via WP Cron", "2020-05-20 04:03:51", "2020-05-20 11:03:51");
INSERT INTO `lt_actionscheduler_logs` VALUES("383", "293", "action complete via WP Cron", "2020-05-20 04:03:51", "2020-05-20 11:03:51");
INSERT INTO `lt_actionscheduler_logs` VALUES("384", "294", "action created", "2020-05-20 04:03:51", "2020-05-20 11:03:51");
INSERT INTO `lt_actionscheduler_logs` VALUES("385", "294", "action started via WP Cron", "2020-05-20 04:31:01", "2020-05-20 11:31:01");
INSERT INTO `lt_actionscheduler_logs` VALUES("386", "294", "action complete via WP Cron", "2020-05-20 04:31:01", "2020-05-20 11:31:01");
INSERT INTO `lt_actionscheduler_logs` VALUES("387", "295", "action created", "2020-05-20 04:31:01", "2020-05-20 11:31:01");
INSERT INTO `lt_actionscheduler_logs` VALUES("388", "295", "action started via WP Cron", "2020-05-20 04:47:14", "2020-05-20 11:47:14");
INSERT INTO `lt_actionscheduler_logs` VALUES("389", "295", "action complete via WP Cron", "2020-05-20 04:47:14", "2020-05-20 11:47:14");
INSERT INTO `lt_actionscheduler_logs` VALUES("390", "296", "action created", "2020-05-20 04:47:14", "2020-05-20 11:47:14");
INSERT INTO `lt_actionscheduler_logs` VALUES("391", "296", "action started via WP Cron", "2020-05-20 05:13:09", "2020-05-20 12:13:09");
INSERT INTO `lt_actionscheduler_logs` VALUES("392", "296", "action complete via WP Cron", "2020-05-20 05:13:09", "2020-05-20 12:13:09");
INSERT INTO `lt_actionscheduler_logs` VALUES("393", "297", "action created", "2020-05-20 05:13:09", "2020-05-20 12:13:09");
INSERT INTO `lt_actionscheduler_logs` VALUES("394", "297", "action started via WP Cron", "2020-05-20 05:30:47", "2020-05-20 12:30:47");
INSERT INTO `lt_actionscheduler_logs` VALUES("395", "297", "action complete via WP Cron", "2020-05-20 05:30:47", "2020-05-20 12:30:47");
INSERT INTO `lt_actionscheduler_logs` VALUES("396", "298", "action created", "2020-05-20 05:30:47", "2020-05-20 12:30:47");
INSERT INTO `lt_actionscheduler_logs` VALUES("397", "298", "action started via WP Cron", "2020-05-20 05:55:14", "2020-05-20 12:55:14");
INSERT INTO `lt_actionscheduler_logs` VALUES("398", "298", "action complete via WP Cron", "2020-05-20 05:55:14", "2020-05-20 12:55:14");
INSERT INTO `lt_actionscheduler_logs` VALUES("399", "299", "action created", "2020-05-20 05:55:14", "2020-05-20 12:55:14");
INSERT INTO `lt_actionscheduler_logs` VALUES("400", "299", "action started via WP Cron", "2020-05-20 06:23:07", "2020-05-20 13:23:07");
INSERT INTO `lt_actionscheduler_logs` VALUES("401", "299", "action complete via WP Cron", "2020-05-20 06:23:07", "2020-05-20 13:23:07");
INSERT INTO `lt_actionscheduler_logs` VALUES("402", "300", "action created", "2020-05-20 06:23:07", "2020-05-20 13:23:07");
INSERT INTO `lt_actionscheduler_logs` VALUES("403", "300", "action started via WP Cron", "2020-05-20 08:14:50", "2020-05-20 15:14:50");
INSERT INTO `lt_actionscheduler_logs` VALUES("404", "300", "action complete via WP Cron", "2020-05-20 08:14:50", "2020-05-20 15:14:50");
INSERT INTO `lt_actionscheduler_logs` VALUES("405", "301", "action created", "2020-05-20 08:14:50", "2020-05-20 15:14:50");
INSERT INTO `lt_actionscheduler_logs` VALUES("406", "302", "action created", "2020-05-20 08:17:33", "2020-05-20 15:17:33");
INSERT INTO `lt_actionscheduler_logs` VALUES("407", "302", "action started via WP Cron", "2020-05-20 08:18:34", "2020-05-20 15:18:34");
INSERT INTO `lt_actionscheduler_logs` VALUES("408", "302", "action complete via WP Cron", "2020-05-20 08:18:35", "2020-05-20 15:18:35");
INSERT INTO `lt_actionscheduler_logs` VALUES("409", "301", "action started via WP Cron", "2020-05-20 08:30:16", "2020-05-20 15:30:16");
INSERT INTO `lt_actionscheduler_logs` VALUES("410", "301", "action complete via WP Cron", "2020-05-20 08:30:16", "2020-05-20 15:30:16");
INSERT INTO `lt_actionscheduler_logs` VALUES("411", "303", "action created", "2020-05-20 08:30:16", "2020-05-20 15:30:16");
INSERT INTO `lt_actionscheduler_logs` VALUES("412", "304", "action created", "2020-05-20 08:38:40", "2020-05-20 15:38:40");
INSERT INTO `lt_actionscheduler_logs` VALUES("413", "305", "action created", "2020-05-20 08:38:40", "2020-05-20 15:38:40");
INSERT INTO `lt_actionscheduler_logs` VALUES("414", "304", "action started via WP Cron", "2020-05-20 08:39:14", "2020-05-20 15:39:14");
INSERT INTO `lt_actionscheduler_logs` VALUES("415", "304", "action complete via WP Cron", "2020-05-20 08:39:14", "2020-05-20 15:39:14");
INSERT INTO `lt_actionscheduler_logs` VALUES("416", "305", "action started via WP Cron", "2020-05-20 08:39:14", "2020-05-20 15:39:14");
INSERT INTO `lt_actionscheduler_logs` VALUES("417", "306", "action created", "2020-05-20 08:39:14", "2020-05-20 15:39:14");
INSERT INTO `lt_actionscheduler_logs` VALUES("418", "305", "action complete via WP Cron", "2020-05-20 08:39:15", "2020-05-20 15:39:15");
INSERT INTO `lt_actionscheduler_logs` VALUES("419", "306", "action started via WP Cron", "2020-05-20 08:40:54", "2020-05-20 15:40:54");
INSERT INTO `lt_actionscheduler_logs` VALUES("420", "306", "action complete via WP Cron", "2020-05-20 08:40:55", "2020-05-20 15:40:55");
INSERT INTO `lt_actionscheduler_logs` VALUES("421", "303", "action started via WP Cron", "2020-05-20 08:46:06", "2020-05-20 15:46:06");
INSERT INTO `lt_actionscheduler_logs` VALUES("422", "303", "action complete via WP Cron", "2020-05-20 08:46:10", "2020-05-20 15:46:10");
INSERT INTO `lt_actionscheduler_logs` VALUES("423", "307", "action created", "2020-05-20 08:46:10", "2020-05-20 15:46:10");
INSERT INTO `lt_actionscheduler_logs` VALUES("424", "307", "action started via Async Request", "2020-05-20 09:01:43", "2020-05-20 16:01:43");
INSERT INTO `lt_actionscheduler_logs` VALUES("425", "307", "action complete via Async Request", "2020-05-20 09:01:43", "2020-05-20 16:01:43");
INSERT INTO `lt_actionscheduler_logs` VALUES("426", "308", "action created", "2020-05-20 09:01:44", "2020-05-20 16:01:44");
INSERT INTO `lt_actionscheduler_logs` VALUES("427", "308", "action started via WP Cron", "2020-05-20 09:16:55", "2020-05-20 16:16:55");
INSERT INTO `lt_actionscheduler_logs` VALUES("428", "308", "action complete via WP Cron", "2020-05-20 09:16:55", "2020-05-20 16:16:55");
INSERT INTO `lt_actionscheduler_logs` VALUES("429", "309", "action created", "2020-05-20 09:16:55", "2020-05-20 16:16:55");
INSERT INTO `lt_actionscheduler_logs` VALUES("430", "310", "action created", "2020-05-20 09:28:42", "2020-05-20 16:28:42");
INSERT INTO `lt_actionscheduler_logs` VALUES("431", "311", "action created", "2020-05-20 09:28:42", "2020-05-20 16:28:42");
INSERT INTO `lt_actionscheduler_logs` VALUES("432", "310", "action started via WP Cron", "2020-05-20 09:29:12", "2020-05-20 16:29:12");
INSERT INTO `lt_actionscheduler_logs` VALUES("433", "310", "action complete via WP Cron", "2020-05-20 09:29:13", "2020-05-20 16:29:13");
INSERT INTO `lt_actionscheduler_logs` VALUES("434", "311", "action started via WP Cron", "2020-05-20 09:29:13", "2020-05-20 16:29:13");
INSERT INTO `lt_actionscheduler_logs` VALUES("435", "311", "action complete via WP Cron", "2020-05-20 09:29:13", "2020-05-20 16:29:13");
INSERT INTO `lt_actionscheduler_logs` VALUES("436", "312", "action created", "2020-05-20 09:29:13", "2020-05-20 16:29:13");
INSERT INTO `lt_actionscheduler_logs` VALUES("437", "312", "action started via Async Request", "2020-05-20 09:29:42", "2020-05-20 16:29:42");
INSERT INTO `lt_actionscheduler_logs` VALUES("438", "312", "action complete via Async Request", "2020-05-20 09:29:42", "2020-05-20 16:29:42");
INSERT INTO `lt_actionscheduler_logs` VALUES("439", "309", "action started via WP Cron", "2020-05-20 09:34:44", "2020-05-20 16:34:44");
INSERT INTO `lt_actionscheduler_logs` VALUES("440", "309", "action complete via WP Cron", "2020-05-20 09:34:44", "2020-05-20 16:34:44");
INSERT INTO `lt_actionscheduler_logs` VALUES("441", "313", "action created", "2020-05-20 09:34:44", "2020-05-20 16:34:44");
INSERT INTO `lt_actionscheduler_logs` VALUES("442", "314", "action created", "2020-05-20 09:37:18", "2020-05-20 16:37:18");
INSERT INTO `lt_actionscheduler_logs` VALUES("443", "315", "action created", "2020-05-20 09:37:18", "2020-05-20 16:37:18");
INSERT INTO `lt_actionscheduler_logs` VALUES("444", "314", "action started via Async Request", "2020-05-20 09:37:34", "2020-05-20 16:37:34");
INSERT INTO `lt_actionscheduler_logs` VALUES("445", "314", "action complete via Async Request", "2020-05-20 09:37:34", "2020-05-20 16:37:34");
INSERT INTO `lt_actionscheduler_logs` VALUES("446", "315", "action started via Async Request", "2020-05-20 09:37:34", "2020-05-20 16:37:34");
INSERT INTO `lt_actionscheduler_logs` VALUES("447", "315", "action complete via Async Request", "2020-05-20 09:37:34", "2020-05-20 16:37:34");
INSERT INTO `lt_actionscheduler_logs` VALUES("448", "316", "action created", "2020-05-20 09:37:38", "2020-05-20 16:37:38");
INSERT INTO `lt_actionscheduler_logs` VALUES("449", "316", "action started via WP Cron", "2020-05-20 09:38:15", "2020-05-20 16:38:15");
INSERT INTO `lt_actionscheduler_logs` VALUES("450", "316", "action complete via WP Cron", "2020-05-20 09:38:15", "2020-05-20 16:38:15");
INSERT INTO `lt_actionscheduler_logs` VALUES("451", "317", "action created", "2020-05-20 09:44:19", "2020-05-20 16:44:19");
INSERT INTO `lt_actionscheduler_logs` VALUES("452", "318", "action created", "2020-05-20 09:44:19", "2020-05-20 16:44:19");
INSERT INTO `lt_actionscheduler_logs` VALUES("453", "317", "action started via Async Request", "2020-05-20 09:44:55", "2020-05-20 16:44:55");
INSERT INTO `lt_actionscheduler_logs` VALUES("454", "317", "action complete via Async Request", "2020-05-20 09:44:55", "2020-05-20 16:44:55");
INSERT INTO `lt_actionscheduler_logs` VALUES("455", "318", "action started via Async Request", "2020-05-20 09:44:55", "2020-05-20 16:44:55");
INSERT INTO `lt_actionscheduler_logs` VALUES("456", "318", "action complete via Async Request", "2020-05-20 09:44:55", "2020-05-20 16:44:55");
INSERT INTO `lt_actionscheduler_logs` VALUES("457", "313", "action started via WP Cron", "2020-05-20 09:51:19", "2020-05-20 16:51:19");
INSERT INTO `lt_actionscheduler_logs` VALUES("458", "313", "action complete via WP Cron", "2020-05-20 09:51:19", "2020-05-20 16:51:19");
INSERT INTO `lt_actionscheduler_logs` VALUES("459", "319", "action created", "2020-05-20 09:51:19", "2020-05-20 16:51:19");
INSERT INTO `lt_actionscheduler_logs` VALUES("460", "319", "action started via WP Cron", "2020-05-20 10:08:14", "2020-05-20 17:08:14");
INSERT INTO `lt_actionscheduler_logs` VALUES("461", "319", "action complete via WP Cron", "2020-05-20 10:08:14", "2020-05-20 17:08:14");
INSERT INTO `lt_actionscheduler_logs` VALUES("462", "320", "action created", "2020-05-20 10:08:14", "2020-05-20 17:08:14");
INSERT INTO `lt_actionscheduler_logs` VALUES("463", "321", "action created", "2020-05-20 10:18:24", "2020-05-20 17:18:24");
INSERT INTO `lt_actionscheduler_logs` VALUES("464", "322", "action created", "2020-05-20 10:18:24", "2020-05-20 17:18:24");
INSERT INTO `lt_actionscheduler_logs` VALUES("465", "321", "action started via Async Request", "2020-05-20 10:18:47", "2020-05-20 17:18:47");
INSERT INTO `lt_actionscheduler_logs` VALUES("466", "321", "action complete via Async Request", "2020-05-20 10:18:47", "2020-05-20 17:18:47");
INSERT INTO `lt_actionscheduler_logs` VALUES("467", "322", "action started via Async Request", "2020-05-20 10:18:47", "2020-05-20 17:18:47");
INSERT INTO `lt_actionscheduler_logs` VALUES("468", "322", "action complete via Async Request", "2020-05-20 10:18:47", "2020-05-20 17:18:47");
INSERT INTO `lt_actionscheduler_logs` VALUES("469", "323", "action created", "2020-05-20 10:19:07", "2020-05-20 17:19:07");
INSERT INTO `lt_actionscheduler_logs` VALUES("470", "323", "action started via WP Cron", "2020-05-20 10:20:16", "2020-05-20 17:20:16");
INSERT INTO `lt_actionscheduler_logs` VALUES("471", "323", "action complete via WP Cron", "2020-05-20 10:20:16", "2020-05-20 17:20:16");
INSERT INTO `lt_actionscheduler_logs` VALUES("472", "320", "action started via WP Cron", "2020-05-20 10:24:00", "2020-05-20 17:24:00");
INSERT INTO `lt_actionscheduler_logs` VALUES("473", "320", "action complete via WP Cron", "2020-05-20 10:24:01", "2020-05-20 17:24:01");
INSERT INTO `lt_actionscheduler_logs` VALUES("474", "324", "action created", "2020-05-20 10:24:01", "2020-05-20 17:24:01");
INSERT INTO `lt_actionscheduler_logs` VALUES("475", "324", "action started via WP Cron", "2020-05-20 10:39:28", "2020-05-20 17:39:28");
INSERT INTO `lt_actionscheduler_logs` VALUES("476", "324", "action complete via WP Cron", "2020-05-20 10:39:28", "2020-05-20 17:39:28");
INSERT INTO `lt_actionscheduler_logs` VALUES("477", "325", "action created", "2020-05-20 10:39:28", "2020-05-20 17:39:28");
INSERT INTO `lt_actionscheduler_logs` VALUES("478", "326", "action created", "2020-05-20 10:39:28", "2020-05-20 17:39:28");
INSERT INTO `lt_actionscheduler_logs` VALUES("479", "325", "action started via WP Cron", "2020-05-20 11:29:29", "2020-05-20 18:29:29");
INSERT INTO `lt_actionscheduler_logs` VALUES("480", "325", "action complete via WP Cron", "2020-05-20 11:29:29", "2020-05-20 18:29:29");
INSERT INTO `lt_actionscheduler_logs` VALUES("481", "327", "action created", "2020-05-20 11:29:29", "2020-05-20 18:29:29");
INSERT INTO `lt_actionscheduler_logs` VALUES("482", "328", "action created", "2020-05-20 11:29:29", "2020-05-20 18:29:29");
INSERT INTO `lt_actionscheduler_logs` VALUES("483", "326", "action started via WP Cron", "2020-05-20 11:29:29", "2020-05-20 18:29:29");
INSERT INTO `lt_actionscheduler_logs` VALUES("484", "326", "action complete via WP Cron", "2020-05-20 11:29:30", "2020-05-20 18:29:30");
INSERT INTO `lt_actionscheduler_logs` VALUES("485", "327", "action started via WP Cron", "2020-05-20 11:38:05", "2020-05-20 18:38:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("486", "327", "action complete via WP Cron", "2020-05-20 11:38:05", "2020-05-20 18:38:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("487", "329", "action created", "2020-05-20 11:38:06", "2020-05-20 18:38:06");
INSERT INTO `lt_actionscheduler_logs` VALUES("488", "329", "action started via WP Cron", "2020-05-20 11:44:12", "2020-05-20 18:44:12");
INSERT INTO `lt_actionscheduler_logs` VALUES("489", "329", "action complete via WP Cron", "2020-05-20 11:44:13", "2020-05-20 18:44:13");
INSERT INTO `lt_actionscheduler_logs` VALUES("490", "330", "action created", "2020-05-20 11:44:53", "2020-05-20 18:44:53");
INSERT INTO `lt_actionscheduler_logs` VALUES("491", "328", "action started via WP Cron", "2020-05-20 11:45:14", "2020-05-20 18:45:14");
INSERT INTO `lt_actionscheduler_logs` VALUES("492", "328", "action complete via WP Cron", "2020-05-20 11:45:14", "2020-05-20 18:45:14");
INSERT INTO `lt_actionscheduler_logs` VALUES("493", "331", "action created", "2020-05-20 11:45:14", "2020-05-20 18:45:14");
INSERT INTO `lt_actionscheduler_logs` VALUES("494", "330", "action started via WP Cron", "2020-05-20 11:45:14", "2020-05-20 18:45:14");
INSERT INTO `lt_actionscheduler_logs` VALUES("495", "330", "action complete via WP Cron", "2020-05-20 11:45:15", "2020-05-20 18:45:15");
INSERT INTO `lt_actionscheduler_logs` VALUES("496", "332", "action created", "2020-05-20 11:46:01", "2020-05-20 18:46:01");
INSERT INTO `lt_actionscheduler_logs` VALUES("497", "333", "action created", "2020-05-20 11:46:01", "2020-05-20 18:46:01");
INSERT INTO `lt_actionscheduler_logs` VALUES("498", "332", "action started via WP Cron", "2020-05-20 11:46:06", "2020-05-20 18:46:06");
INSERT INTO `lt_actionscheduler_logs` VALUES("499", "332", "action complete via WP Cron", "2020-05-20 11:46:06", "2020-05-20 18:46:06");
INSERT INTO `lt_actionscheduler_logs` VALUES("500", "333", "action started via WP Cron", "2020-05-20 11:46:06", "2020-05-20 18:46:06");
INSERT INTO `lt_actionscheduler_logs` VALUES("501", "333", "action complete via WP Cron", "2020-05-20 11:46:06", "2020-05-20 18:46:06");
INSERT INTO `lt_actionscheduler_logs` VALUES("502", "334", "action created", "2020-05-20 11:46:24", "2020-05-20 18:46:24");
INSERT INTO `lt_actionscheduler_logs` VALUES("503", "334", "action started via WP Cron", "2020-05-20 11:53:09", "2020-05-20 18:53:09");
INSERT INTO `lt_actionscheduler_logs` VALUES("504", "334", "action complete via WP Cron", "2020-05-20 11:53:10", "2020-05-20 18:53:10");
INSERT INTO `lt_actionscheduler_logs` VALUES("505", "331", "action started via WP Cron", "2020-05-20 12:08:36", "2020-05-20 19:08:36");
INSERT INTO `lt_actionscheduler_logs` VALUES("506", "331", "action complete via WP Cron", "2020-05-20 12:08:37", "2020-05-20 19:08:37");
INSERT INTO `lt_actionscheduler_logs` VALUES("507", "335", "action created", "2020-05-20 12:08:37", "2020-05-20 19:08:37");
INSERT INTO `lt_actionscheduler_logs` VALUES("508", "336", "action created", "2020-05-20 12:14:00", "2020-05-20 19:14:00");
INSERT INTO `lt_actionscheduler_logs` VALUES("509", "337", "action created", "2020-05-20 12:14:00", "2020-05-20 19:14:00");
INSERT INTO `lt_actionscheduler_logs` VALUES("510", "336", "action started via WP Cron", "2020-05-20 12:15:10", "2020-05-20 19:15:10");
INSERT INTO `lt_actionscheduler_logs` VALUES("511", "336", "action complete via WP Cron", "2020-05-20 12:15:10", "2020-05-20 19:15:10");
INSERT INTO `lt_actionscheduler_logs` VALUES("512", "337", "action started via WP Cron", "2020-05-20 12:15:10", "2020-05-20 19:15:10");
INSERT INTO `lt_actionscheduler_logs` VALUES("513", "337", "action complete via WP Cron", "2020-05-20 12:15:10", "2020-05-20 19:15:10");
INSERT INTO `lt_actionscheduler_logs` VALUES("514", "338", "action created", "2020-05-20 12:19:05", "2020-05-20 19:19:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("515", "338", "action started via WP Cron", "2020-05-20 12:21:48", "2020-05-20 19:21:48");
INSERT INTO `lt_actionscheduler_logs` VALUES("516", "338", "action complete via WP Cron", "2020-05-20 12:21:48", "2020-05-20 19:21:48");
INSERT INTO `lt_actionscheduler_logs` VALUES("517", "335", "action started via WP Cron", "2020-05-20 12:38:40", "2020-05-20 19:38:40");
INSERT INTO `lt_actionscheduler_logs` VALUES("518", "335", "action complete via WP Cron", "2020-05-20 12:38:40", "2020-05-20 19:38:40");
INSERT INTO `lt_actionscheduler_logs` VALUES("519", "339", "action created", "2020-05-20 12:38:40", "2020-05-20 19:38:40");
INSERT INTO `lt_actionscheduler_logs` VALUES("520", "339", "action started via WP Cron", "2020-05-20 13:46:22", "2020-05-20 20:46:22");
INSERT INTO `lt_actionscheduler_logs` VALUES("521", "339", "action complete via WP Cron", "2020-05-20 13:46:22", "2020-05-20 20:46:22");
INSERT INTO `lt_actionscheduler_logs` VALUES("522", "340", "action created", "2020-05-20 13:46:22", "2020-05-20 20:46:22");
INSERT INTO `lt_actionscheduler_logs` VALUES("523", "341", "action created", "2020-05-20 13:46:37", "2020-05-20 20:46:37");
INSERT INTO `lt_actionscheduler_logs` VALUES("524", "341", "action started via WP Cron", "2020-05-20 13:50:22", "2020-05-20 20:50:22");
INSERT INTO `lt_actionscheduler_logs` VALUES("525", "341", "action complete via WP Cron", "2020-05-20 13:50:22", "2020-05-20 20:50:22");
INSERT INTO `lt_actionscheduler_logs` VALUES("526", "340", "action started via WP Cron", "2020-05-20 14:14:37", "2020-05-20 21:14:37");
INSERT INTO `lt_actionscheduler_logs` VALUES("527", "340", "action complete via WP Cron", "2020-05-20 14:14:37", "2020-05-20 21:14:37");
INSERT INTO `lt_actionscheduler_logs` VALUES("528", "342", "action created", "2020-05-20 14:14:37", "2020-05-20 21:14:37");
INSERT INTO `lt_actionscheduler_logs` VALUES("529", "343", "action created", "2020-05-20 14:14:38", "2020-05-20 21:14:38");
INSERT INTO `lt_actionscheduler_logs` VALUES("530", "342", "action started via WP Cron", "2020-05-20 23:03:52", "2020-05-21 06:03:52");
INSERT INTO `lt_actionscheduler_logs` VALUES("531", "342", "action complete via WP Cron", "2020-05-20 23:03:53", "2020-05-21 06:03:53");
INSERT INTO `lt_actionscheduler_logs` VALUES("532", "344", "action created", "2020-05-20 23:03:53", "2020-05-21 06:03:53");
INSERT INTO `lt_actionscheduler_logs` VALUES("533", "343", "action started via WP Cron", "2020-05-21 09:59:48", "2020-05-21 16:59:48");
INSERT INTO `lt_actionscheduler_logs` VALUES("534", "343", "action complete via WP Cron", "2020-05-21 09:59:48", "2020-05-21 16:59:48");
INSERT INTO `lt_actionscheduler_logs` VALUES("535", "344", "action started via WP Cron", "2020-05-21 11:11:31", "2020-05-21 18:11:31");
INSERT INTO `lt_actionscheduler_logs` VALUES("536", "344", "action complete via WP Cron", "2020-05-21 11:11:32", "2020-05-21 18:11:32");
INSERT INTO `lt_actionscheduler_logs` VALUES("537", "345", "action created", "2020-05-21 11:11:32", "2020-05-21 18:11:32");
INSERT INTO `lt_actionscheduler_logs` VALUES("538", "345", "action started via WP Cron", "2020-05-21 11:36:18", "2020-05-21 18:36:18");
INSERT INTO `lt_actionscheduler_logs` VALUES("539", "345", "action complete via WP Cron", "2020-05-21 11:36:18", "2020-05-21 18:36:18");
INSERT INTO `lt_actionscheduler_logs` VALUES("540", "346", "action created", "2020-05-21 11:36:18", "2020-05-21 18:36:18");
INSERT INTO `lt_actionscheduler_logs` VALUES("541", "346", "action started via WP Cron", "2020-05-21 12:07:01", "2020-05-21 19:07:01");
INSERT INTO `lt_actionscheduler_logs` VALUES("542", "346", "action complete via WP Cron", "2020-05-21 12:07:02", "2020-05-21 19:07:02");
INSERT INTO `lt_actionscheduler_logs` VALUES("543", "347", "action created", "2020-05-21 12:07:02", "2020-05-21 19:07:02");
INSERT INTO `lt_actionscheduler_logs` VALUES("544", "347", "action started via WP Cron", "2020-05-21 12:28:44", "2020-05-21 19:28:44");
INSERT INTO `lt_actionscheduler_logs` VALUES("545", "347", "action complete via WP Cron", "2020-05-21 12:28:44", "2020-05-21 19:28:44");
INSERT INTO `lt_actionscheduler_logs` VALUES("546", "348", "action created", "2020-05-21 12:28:44", "2020-05-21 19:28:44");
INSERT INTO `lt_actionscheduler_logs` VALUES("547", "348", "action started via WP Cron", "2020-05-21 12:50:07", "2020-05-21 19:50:07");
INSERT INTO `lt_actionscheduler_logs` VALUES("548", "348", "action complete via WP Cron", "2020-05-21 12:50:07", "2020-05-21 19:50:07");
INSERT INTO `lt_actionscheduler_logs` VALUES("549", "349", "action created", "2020-05-21 12:50:07", "2020-05-21 19:50:07");
INSERT INTO `lt_actionscheduler_logs` VALUES("550", "349", "action started via WP Cron", "2020-05-21 16:14:01", "2020-05-21 23:14:01");
INSERT INTO `lt_actionscheduler_logs` VALUES("551", "349", "action complete via WP Cron", "2020-05-21 16:14:02", "2020-05-21 23:14:02");
INSERT INTO `lt_actionscheduler_logs` VALUES("552", "350", "action created", "2020-05-21 16:14:02", "2020-05-21 23:14:02");
INSERT INTO `lt_actionscheduler_logs` VALUES("553", "351", "action created", "2020-05-21 16:15:16", "2020-05-21 23:15:16");
INSERT INTO `lt_actionscheduler_logs` VALUES("554", "351", "action started via WP Cron", "2020-05-21 16:19:02", "2020-05-21 23:19:02");
INSERT INTO `lt_actionscheduler_logs` VALUES("555", "351", "action complete via WP Cron", "2020-05-21 16:19:05", "2020-05-21 23:19:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("556", "350", "action started via WP Cron", "2020-05-21 16:30:10", "2020-05-21 23:30:10");
INSERT INTO `lt_actionscheduler_logs` VALUES("557", "350", "action complete via WP Cron", "2020-05-21 16:30:10", "2020-05-21 23:30:10");
INSERT INTO `lt_actionscheduler_logs` VALUES("558", "352", "action created", "2020-05-21 16:30:10", "2020-05-21 23:30:10");
INSERT INTO `lt_actionscheduler_logs` VALUES("559", "352", "action started via WP Cron", "2020-05-21 16:54:00", "2020-05-21 23:54:00");
INSERT INTO `lt_actionscheduler_logs` VALUES("560", "352", "action complete via WP Cron", "2020-05-21 16:54:00", "2020-05-21 23:54:00");
INSERT INTO `lt_actionscheduler_logs` VALUES("561", "353", "action created", "2020-05-21 16:54:00", "2020-05-21 23:54:00");
INSERT INTO `lt_actionscheduler_logs` VALUES("562", "353", "action started via WP Cron", "2020-05-21 17:13:08", "2020-05-22 00:13:08");
INSERT INTO `lt_actionscheduler_logs` VALUES("563", "353", "action complete via WP Cron", "2020-05-21 17:13:08", "2020-05-22 00:13:08");
INSERT INTO `lt_actionscheduler_logs` VALUES("564", "354", "action created", "2020-05-21 17:13:08", "2020-05-22 00:13:08");
INSERT INTO `lt_actionscheduler_logs` VALUES("565", "354", "action started via WP Cron", "2020-05-21 17:34:35", "2020-05-22 00:34:35");
INSERT INTO `lt_actionscheduler_logs` VALUES("566", "354", "action complete via WP Cron", "2020-05-21 17:34:35", "2020-05-22 00:34:35");
INSERT INTO `lt_actionscheduler_logs` VALUES("567", "355", "action created", "2020-05-21 17:34:35", "2020-05-22 00:34:35");
INSERT INTO `lt_actionscheduler_logs` VALUES("568", "355", "action started via WP Cron", "2020-05-21 18:23:06", "2020-05-22 01:23:06");
INSERT INTO `lt_actionscheduler_logs` VALUES("569", "355", "action complete via WP Cron", "2020-05-21 18:23:06", "2020-05-22 01:23:06");
INSERT INTO `lt_actionscheduler_logs` VALUES("570", "356", "action created", "2020-05-21 18:23:06", "2020-05-22 01:23:06");
INSERT INTO `lt_actionscheduler_logs` VALUES("571", "356", "action started via WP Cron", "2020-05-22 00:19:20", "2020-05-22 07:19:20");
INSERT INTO `lt_actionscheduler_logs` VALUES("572", "356", "action complete via WP Cron", "2020-05-22 00:19:20", "2020-05-22 07:19:20");
INSERT INTO `lt_actionscheduler_logs` VALUES("573", "357", "action created", "2020-05-22 00:19:20", "2020-05-22 07:19:20");
INSERT INTO `lt_actionscheduler_logs` VALUES("574", "357", "action started via WP Cron", "2020-05-22 01:54:44", "2020-05-22 08:54:44");
INSERT INTO `lt_actionscheduler_logs` VALUES("575", "357", "action complete via WP Cron", "2020-05-22 01:54:45", "2020-05-22 08:54:45");
INSERT INTO `lt_actionscheduler_logs` VALUES("576", "358", "action created", "2020-05-22 01:54:45", "2020-05-22 08:54:45");
INSERT INTO `lt_actionscheduler_logs` VALUES("577", "358", "action started via WP Cron", "2020-05-22 02:10:30", "2020-05-22 09:10:30");
INSERT INTO `lt_actionscheduler_logs` VALUES("578", "358", "action complete via WP Cron", "2020-05-22 02:10:30", "2020-05-22 09:10:30");
INSERT INTO `lt_actionscheduler_logs` VALUES("579", "359", "action created", "2020-05-22 02:10:30", "2020-05-22 09:10:30");
INSERT INTO `lt_actionscheduler_logs` VALUES("580", "359", "action started via WP Cron", "2020-05-22 02:28:41", "2020-05-22 09:28:41");
INSERT INTO `lt_actionscheduler_logs` VALUES("581", "359", "action complete via WP Cron", "2020-05-22 02:28:41", "2020-05-22 09:28:41");
INSERT INTO `lt_actionscheduler_logs` VALUES("582", "360", "action created", "2020-05-22 02:28:41", "2020-05-22 09:28:41");
INSERT INTO `lt_actionscheduler_logs` VALUES("583", "360", "action started via WP Cron", "2020-05-22 02:43:42", "2020-05-22 09:43:42");
INSERT INTO `lt_actionscheduler_logs` VALUES("584", "360", "action complete via WP Cron", "2020-05-22 02:43:42", "2020-05-22 09:43:42");
INSERT INTO `lt_actionscheduler_logs` VALUES("585", "361", "action created", "2020-05-22 02:43:42", "2020-05-22 09:43:42");
INSERT INTO `lt_actionscheduler_logs` VALUES("586", "362", "action created", "2020-05-22 02:50:43", "2020-05-22 09:50:43");
INSERT INTO `lt_actionscheduler_logs` VALUES("587", "363", "action created", "2020-05-22 02:50:43", "2020-05-22 09:50:43");
INSERT INTO `lt_actionscheduler_logs` VALUES("588", "362", "action started via WP Cron", "2020-05-22 02:51:31", "2020-05-22 09:51:31");
INSERT INTO `lt_actionscheduler_logs` VALUES("589", "362", "action complete via WP Cron", "2020-05-22 02:51:31", "2020-05-22 09:51:31");
INSERT INTO `lt_actionscheduler_logs` VALUES("590", "363", "action started via WP Cron", "2020-05-22 02:51:31", "2020-05-22 09:51:31");
INSERT INTO `lt_actionscheduler_logs` VALUES("591", "363", "action complete via WP Cron", "2020-05-22 02:51:31", "2020-05-22 09:51:31");
INSERT INTO `lt_actionscheduler_logs` VALUES("592", "361", "action started via WP Cron", "2020-05-22 03:00:21", "2020-05-22 10:00:21");
INSERT INTO `lt_actionscheduler_logs` VALUES("593", "361", "action complete via WP Cron", "2020-05-22 03:00:21", "2020-05-22 10:00:21");
INSERT INTO `lt_actionscheduler_logs` VALUES("594", "364", "action created", "2020-05-22 03:00:21", "2020-05-22 10:00:21");
INSERT INTO `lt_actionscheduler_logs` VALUES("595", "364", "action started via WP Cron", "2020-05-22 03:29:24", "2020-05-22 10:29:24");
INSERT INTO `lt_actionscheduler_logs` VALUES("596", "364", "action complete via WP Cron", "2020-05-22 03:29:24", "2020-05-22 10:29:24");
INSERT INTO `lt_actionscheduler_logs` VALUES("597", "365", "action created", "2020-05-22 03:29:24", "2020-05-22 10:29:24");
INSERT INTO `lt_actionscheduler_logs` VALUES("598", "365", "action started via WP Cron", "2020-05-23 02:58:04", "2020-05-23 09:58:04");
INSERT INTO `lt_actionscheduler_logs` VALUES("599", "365", "action complete via WP Cron", "2020-05-23 02:58:04", "2020-05-23 09:58:04");
INSERT INTO `lt_actionscheduler_logs` VALUES("600", "366", "action created", "2020-05-23 02:58:04", "2020-05-23 09:58:04");
INSERT INTO `lt_actionscheduler_logs` VALUES("601", "367", "action created", "2020-05-23 02:58:05", "2020-05-23 09:58:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("602", "366", "action started via WP Cron", "2020-05-23 05:01:55", "2020-05-23 12:01:55");
INSERT INTO `lt_actionscheduler_logs` VALUES("603", "366", "action complete via WP Cron", "2020-05-23 05:01:56", "2020-05-23 12:01:56");
INSERT INTO `lt_actionscheduler_logs` VALUES("604", "368", "action created", "2020-05-23 05:01:56", "2020-05-23 12:01:56");
INSERT INTO `lt_actionscheduler_logs` VALUES("605", "367", "action started via WP Cron", "2020-05-23 17:00:28", "2020-05-24 00:00:28");
INSERT INTO `lt_actionscheduler_logs` VALUES("606", "367", "action complete via WP Cron", "2020-05-23 17:00:29", "2020-05-24 00:00:29");
INSERT INTO `lt_actionscheduler_logs` VALUES("607", "368", "action started via WP Cron", "2020-05-23 17:00:29", "2020-05-24 00:00:29");
INSERT INTO `lt_actionscheduler_logs` VALUES("608", "368", "action complete via WP Cron", "2020-05-23 17:00:29", "2020-05-24 00:00:29");
INSERT INTO `lt_actionscheduler_logs` VALUES("609", "369", "action created", "2020-05-23 17:00:29", "2020-05-24 00:00:29");
INSERT INTO `lt_actionscheduler_logs` VALUES("610", "369", "action started via WP Cron", "2020-05-24 16:34:22", "2020-05-24 23:34:22");
INSERT INTO `lt_actionscheduler_logs` VALUES("611", "369", "action complete via WP Cron", "2020-05-24 16:34:23", "2020-05-24 23:34:23");
INSERT INTO `lt_actionscheduler_logs` VALUES("612", "370", "action created", "2020-05-24 16:34:23", "2020-05-24 23:34:23");
INSERT INTO `lt_actionscheduler_logs` VALUES("613", "370", "action started via WP Cron", "2020-05-24 16:51:05", "2020-05-24 23:51:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("614", "370", "action complete via WP Cron", "2020-05-24 16:51:05", "2020-05-24 23:51:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("615", "371", "action created", "2020-05-24 16:51:06", "2020-05-24 23:51:06");
INSERT INTO `lt_actionscheduler_logs` VALUES("616", "371", "action started via WP Cron", "2020-05-24 17:07:09", "2020-05-25 00:07:09");
INSERT INTO `lt_actionscheduler_logs` VALUES("617", "371", "action complete via WP Cron", "2020-05-24 17:07:09", "2020-05-25 00:07:09");
INSERT INTO `lt_actionscheduler_logs` VALUES("618", "372", "action created", "2020-05-24 17:07:09", "2020-05-25 00:07:09");
INSERT INTO `lt_actionscheduler_logs` VALUES("619", "372", "action started via WP Cron", "2020-05-24 17:23:13", "2020-05-25 00:23:13");
INSERT INTO `lt_actionscheduler_logs` VALUES("620", "372", "action complete via WP Cron", "2020-05-24 17:23:14", "2020-05-25 00:23:14");
INSERT INTO `lt_actionscheduler_logs` VALUES("621", "373", "action created", "2020-05-24 17:23:14", "2020-05-25 00:23:14");
INSERT INTO `lt_actionscheduler_logs` VALUES("622", "373", "action started via WP Cron", "2020-05-24 17:38:18", "2020-05-25 00:38:18");
INSERT INTO `lt_actionscheduler_logs` VALUES("623", "373", "action complete via WP Cron", "2020-05-24 17:38:18", "2020-05-25 00:38:18");
INSERT INTO `lt_actionscheduler_logs` VALUES("624", "374", "action created", "2020-05-24 17:38:18", "2020-05-25 00:38:18");
INSERT INTO `lt_actionscheduler_logs` VALUES("625", "374", "action started via WP Cron", "2020-05-24 18:23:28", "2020-05-25 01:23:28");
INSERT INTO `lt_actionscheduler_logs` VALUES("626", "374", "action complete via WP Cron", "2020-05-24 18:23:28", "2020-05-25 01:23:28");
INSERT INTO `lt_actionscheduler_logs` VALUES("627", "375", "action created", "2020-05-24 18:23:28", "2020-05-25 01:23:28");
INSERT INTO `lt_actionscheduler_logs` VALUES("628", "375", "action started via WP Cron", "2020-05-25 05:33:41", "2020-05-25 12:33:41");
INSERT INTO `lt_actionscheduler_logs` VALUES("629", "375", "action complete via WP Cron", "2020-05-25 05:33:41", "2020-05-25 12:33:41");
INSERT INTO `lt_actionscheduler_logs` VALUES("630", "376", "action created", "2020-05-25 05:33:41", "2020-05-25 12:33:41");
INSERT INTO `lt_actionscheduler_logs` VALUES("631", "376", "action started via WP Cron", "2020-05-25 06:01:43", "2020-05-25 13:01:43");
INSERT INTO `lt_actionscheduler_logs` VALUES("632", "376", "action complete via WP Cron", "2020-05-25 06:01:43", "2020-05-25 13:01:43");
INSERT INTO `lt_actionscheduler_logs` VALUES("633", "377", "action created", "2020-05-25 06:01:43", "2020-05-25 13:01:43");
INSERT INTO `lt_actionscheduler_logs` VALUES("634", "377", "action started via WP Cron", "2020-05-25 07:29:42", "2020-05-25 14:29:42");
INSERT INTO `lt_actionscheduler_logs` VALUES("635", "377", "action complete via WP Cron", "2020-05-25 07:29:42", "2020-05-25 14:29:42");
INSERT INTO `lt_actionscheduler_logs` VALUES("636", "378", "action created", "2020-05-25 07:29:42", "2020-05-25 14:29:42");
INSERT INTO `lt_actionscheduler_logs` VALUES("637", "378", "action started via WP Cron", "2020-05-25 09:30:10", "2020-05-25 16:30:10");
INSERT INTO `lt_actionscheduler_logs` VALUES("638", "378", "action complete via WP Cron", "2020-05-25 09:30:10", "2020-05-25 16:30:10");
INSERT INTO `lt_actionscheduler_logs` VALUES("639", "379", "action created", "2020-05-25 09:30:10", "2020-05-25 16:30:10");
INSERT INTO `lt_actionscheduler_logs` VALUES("640", "379", "action started via WP Cron", "2020-05-26 09:00:02", "2020-05-26 16:00:02");
INSERT INTO `lt_actionscheduler_logs` VALUES("641", "379", "action complete via WP Cron", "2020-05-26 09:00:05", "2020-05-26 16:00:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("642", "380", "action created", "2020-05-26 09:00:10", "2020-05-26 16:00:10");
INSERT INTO `lt_actionscheduler_logs` VALUES("643", "380", "action started via WP Cron", "2020-05-26 09:31:12", "2020-05-26 16:31:12");
INSERT INTO `lt_actionscheduler_logs` VALUES("644", "380", "action complete via WP Cron", "2020-05-26 09:31:13", "2020-05-26 16:31:13");
INSERT INTO `lt_actionscheduler_logs` VALUES("645", "381", "action created", "2020-05-26 09:31:13", "2020-05-26 16:31:13");
INSERT INTO `lt_actionscheduler_logs` VALUES("646", "381", "action started via WP Cron", "2020-05-26 09:47:05", "2020-05-26 16:47:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("647", "381", "action complete via WP Cron", "2020-05-26 09:47:05", "2020-05-26 16:47:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("648", "382", "action created", "2020-05-26 09:47:05", "2020-05-26 16:47:05");
INSERT INTO `lt_actionscheduler_logs` VALUES("649", "382", "action started via WP Cron", "2020-05-26 10:02:21", "2020-05-26 17:02:21");
INSERT INTO `lt_actionscheduler_logs` VALUES("650", "382", "action complete via WP Cron", "2020-05-26 10:02:26", "2020-05-26 17:02:26");
INSERT INTO `lt_actionscheduler_logs` VALUES("651", "383", "action created", "2020-05-26 10:02:26", "2020-05-26 17:02:26");
INSERT INTO `lt_actionscheduler_logs` VALUES("652", "383", "action started via WP Cron", "2020-05-26 10:19:16", "2020-05-26 17:19:16");
INSERT INTO `lt_actionscheduler_logs` VALUES("653", "383", "action complete via WP Cron", "2020-05-26 10:19:16", "2020-05-26 17:19:16");
INSERT INTO `lt_actionscheduler_logs` VALUES("654", "384", "action created", "2020-05-26 10:19:16", "2020-05-26 17:19:16");
INSERT INTO `lt_actionscheduler_logs` VALUES("655", "384", "action started via WP Cron", "2020-05-26 10:35:21", "2020-05-26 17:35:21");
INSERT INTO `lt_actionscheduler_logs` VALUES("656", "384", "action complete via WP Cron", "2020-05-26 10:35:21", "2020-05-26 17:35:21");
INSERT INTO `lt_actionscheduler_logs` VALUES("657", "385", "action created", "2020-05-26 10:35:21", "2020-05-26 17:35:21");
INSERT INTO `lt_actionscheduler_logs` VALUES("658", "385", "action started via WP Cron", "2020-05-26 10:51:23", "2020-05-26 17:51:23");
INSERT INTO `lt_actionscheduler_logs` VALUES("659", "385", "action complete via WP Cron", "2020-05-26 10:51:23", "2020-05-26 17:51:23");
INSERT INTO `lt_actionscheduler_logs` VALUES("660", "386", "action created", "2020-05-26 10:51:23", "2020-05-26 17:51:23");
INSERT INTO `lt_actionscheduler_logs` VALUES("661", "386", "action started via WP Cron", "2020-05-26 11:07:30", "2020-05-26 18:07:30");
INSERT INTO `lt_actionscheduler_logs` VALUES("662", "386", "action complete via WP Cron", "2020-05-26 11:07:30", "2020-05-26 18:07:30");
INSERT INTO `lt_actionscheduler_logs` VALUES("663", "387", "action created", "2020-05-26 11:07:30", "2020-05-26 18:07:30");
INSERT INTO `lt_actionscheduler_logs` VALUES("664", "387", "action started via WP Cron", "2020-05-26 11:23:31", "2020-05-26 18:23:31");
INSERT INTO `lt_actionscheduler_logs` VALUES("665", "387", "action complete via WP Cron", "2020-05-26 11:23:31", "2020-05-26 18:23:31");
INSERT INTO `lt_actionscheduler_logs` VALUES("666", "388", "action created", "2020-05-26 11:23:31", "2020-05-26 18:23:31");
INSERT INTO `lt_actionscheduler_logs` VALUES("667", "388", "action started via WP Cron", "2020-05-26 11:39:37", "2020-05-26 18:39:37");
INSERT INTO `lt_actionscheduler_logs` VALUES("668", "388", "action complete via WP Cron", "2020-05-26 11:39:37", "2020-05-26 18:39:37");
INSERT INTO `lt_actionscheduler_logs` VALUES("669", "389", "action created", "2020-05-26 11:39:37", "2020-05-26 18:39:37");
INSERT INTO `lt_actionscheduler_logs` VALUES("670", "389", "action started via WP Cron", "2020-05-26 11:55:41", "2020-05-26 18:55:41");
INSERT INTO `lt_actionscheduler_logs` VALUES("671", "389", "action complete via WP Cron", "2020-05-26 11:55:41", "2020-05-26 18:55:41");
INSERT INTO `lt_actionscheduler_logs` VALUES("672", "390", "action created", "2020-05-26 11:55:41", "2020-05-26 18:55:41");
INSERT INTO `lt_actionscheduler_logs` VALUES("673", "390", "action started via WP Cron", "2020-05-26 12:11:47", "2020-05-26 19:11:47");
INSERT INTO `lt_actionscheduler_logs` VALUES("674", "390", "action complete via WP Cron", "2020-05-26 12:11:47", "2020-05-26 19:11:47");
INSERT INTO `lt_actionscheduler_logs` VALUES("675", "391", "action created", "2020-05-26 12:11:47", "2020-05-26 19:11:47");
INSERT INTO `lt_actionscheduler_logs` VALUES("676", "391", "action started via WP Cron", "2020-05-26 12:27:50", "2020-05-26 19:27:50");
INSERT INTO `lt_actionscheduler_logs` VALUES("677", "391", "action complete via WP Cron", "2020-05-26 12:27:50", "2020-05-26 19:27:50");
INSERT INTO `lt_actionscheduler_logs` VALUES("678", "392", "action created", "2020-05-26 12:27:51", "2020-05-26 19:27:51");
INSERT INTO `lt_actionscheduler_logs` VALUES("679", "392", "action started via WP Cron", "2020-05-26 12:43:51", "2020-05-26 19:43:51");
INSERT INTO `lt_actionscheduler_logs` VALUES("680", "392", "action complete via WP Cron", "2020-05-26 12:43:51", "2020-05-26 19:43:51");
INSERT INTO `lt_actionscheduler_logs` VALUES("681", "393", "action created", "2020-05-26 12:43:51", "2020-05-26 19:43:51");
INSERT INTO `lt_actionscheduler_logs` VALUES("682", "393", "action started via WP Cron", "2020-05-26 12:59:51", "2020-05-26 19:59:51");
INSERT INTO `lt_actionscheduler_logs` VALUES("683", "393", "action complete via WP Cron", "2020-05-26 12:59:52", "2020-05-26 19:59:52");
INSERT INTO `lt_actionscheduler_logs` VALUES("684", "394", "action created", "2020-05-26 12:59:52", "2020-05-26 19:59:52");
INSERT INTO `lt_actionscheduler_logs` VALUES("685", "394", "action started via WP Cron", "2020-05-26 13:15:38", "2020-05-26 20:15:38");
INSERT INTO `lt_actionscheduler_logs` VALUES("686", "394", "action complete via WP Cron", "2020-05-26 13:15:39", "2020-05-26 20:15:39");
INSERT INTO `lt_actionscheduler_logs` VALUES("687", "395", "action created", "2020-05-26 13:15:39", "2020-05-26 20:15:39");
INSERT INTO `lt_actionscheduler_logs` VALUES("688", "395", "action started via WP Cron", "2020-05-26 13:30:48", "2020-05-26 20:30:48");
INSERT INTO `lt_actionscheduler_logs` VALUES("689", "395", "action complete via WP Cron", "2020-05-26 13:30:48", "2020-05-26 20:30:48");
INSERT INTO `lt_actionscheduler_logs` VALUES("690", "396", "action created", "2020-05-26 13:30:52", "2020-05-26 20:30:52");
INSERT INTO `lt_actionscheduler_logs` VALUES("691", "396", "action started via WP Cron", "2020-05-26 13:46:50", "2020-05-26 20:46:50");
INSERT INTO `lt_actionscheduler_logs` VALUES("692", "396", "action complete via WP Cron", "2020-05-26 13:46:50", "2020-05-26 20:46:50");
INSERT INTO `lt_actionscheduler_logs` VALUES("693", "397", "action created", "2020-05-26 13:46:50", "2020-05-26 20:46:50");
INSERT INTO `lt_actionscheduler_logs` VALUES("694", "397", "action started via WP Cron", "2020-05-27 01:48:51", "2020-05-27 08:48:51");
INSERT INTO `lt_actionscheduler_logs` VALUES("695", "397", "action complete via WP Cron", "2020-05-27 01:48:51", "2020-05-27 08:48:51");
INSERT INTO `lt_actionscheduler_logs` VALUES("696", "398", "action created", "2020-05-27 01:48:51", "2020-05-27 08:48:51");
INSERT INTO `lt_actionscheduler_logs` VALUES("697", "398", "action started via WP Cron", "2020-05-27 02:05:22", "2020-05-27 09:05:22");
INSERT INTO `lt_actionscheduler_logs` VALUES("698", "398", "action complete via WP Cron", "2020-05-27 02:05:22", "2020-05-27 09:05:22");
INSERT INTO `lt_actionscheduler_logs` VALUES("699", "399", "action created", "2020-05-27 02:05:22", "2020-05-27 09:05:22");

/* INSERT TABLE DATA: lt_comments */
INSERT INTO `lt_comments` VALUES("1", "1", "A WordPress Commenter", "wapuu@wordpress.example", "https://wordpress.org/", "", "2020-04-29 05:25:57", "2020-04-29 05:25:57", "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");
INSERT INTO `lt_comments` VALUES("2", "177", "WooCommerce", "woocommerce@lt.tmp.pakar.co.id", "", "", "2020-05-14 21:22:44", "2020-05-14 14:22:44", "Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.", "0", "post-trashed", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("3", "179", "WooCommerce", "woocommerce@lt.tmp.pakar.co.id", "", "", "2020-05-14 21:22:44", "2020-05-14 14:22:44", "Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.", "0", "post-trashed", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("4", "184", "WooCommerce", "woocommerce@lt.tmp.pakar.co.id", "", "", "2020-05-14 21:22:44", "2020-05-14 14:22:44", "Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.", "0", "post-trashed", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("5", "248", "WooCommerce", "woocommerce@lt.tmp.pakar.co.id", "", "", "2020-05-18 14:11:08", "2020-05-18 07:11:08", "Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("6", "249", "WooCommerce", "woocommerce@lt.tmp.pakar.co.id", "", "", "2020-05-18 14:11:08", "2020-05-18 07:11:08", "Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("7", "261", "WooCommerce", "woocommerce@meetingmastery.lightrees.com", "", "", "2020-05-20 15:39:14", "2020-05-20 08:39:14", "Midtrans HTTP notification received: pending. Midtrans-bank_transfer", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("8", "261", "WooCommerce", "woocommerce@meetingmastery.lightrees.com", "", "", "2020-05-20 15:39:15", "2020-05-20 08:39:15", "Awaiting payment: Midtrans-bank_transfer Order status changed from Pending payment to On hold.", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("9", "262", "WooCommerce", "woocommerce@meetingmastery.lightrees.com", "", "", "2020-05-20 16:29:12", "2020-05-20 09:29:12", "Midtrans HTTP notification received: pending. Midtrans-bank_transfer", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("10", "262", "WooCommerce", "woocommerce@meetingmastery.lightrees.com", "", "", "2020-05-20 16:29:13", "2020-05-20 09:29:13", "Awaiting payment: Midtrans-bank_transfer Order status changed from Pending payment to On hold.", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("11", "263", "WooCommerce", "woocommerce@meetingmastery.lightrees.com", "", "", "2020-05-20 16:37:38", "2020-05-20 09:37:38", "Midtrans HTTP notification received: pending. Midtrans-echannel", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("12", "263", "WooCommerce", "woocommerce@meetingmastery.lightrees.com", "", "", "2020-05-20 16:37:38", "2020-05-20 09:37:38", "Awaiting payment: Midtrans-echannel Order status changed from Pending payment to On hold.", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("13", "264", "WooCommerce", "woocommerce@meetingmastery.lightrees.com", "", "", "2020-05-20 16:44:32", "2020-05-20 09:44:32", "Midtrans HTTP notification received: pending. Midtrans-echannel", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("14", "264", "WooCommerce", "woocommerce@meetingmastery.lightrees.com", "", "", "2020-05-20 16:44:32", "2020-05-20 09:44:32", "Awaiting payment: Midtrans-echannel Order status changed from Pending payment to On hold.", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("15", "265", "WooCommerce", "woocommerce@meetingmastery.lightrees.com", "", "", "2020-05-20 17:19:06", "2020-05-20 10:19:06", "Midtrans HTTP notification received: pending. Midtrans-bank_transfer", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("16", "265", "WooCommerce", "woocommerce@meetingmastery.lightrees.com", "", "", "2020-05-20 17:19:08", "2020-05-20 10:19:08", "Awaiting payment: Midtrans-bank_transfer Order status changed from Pending payment to On hold.", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("17", "261", "WooCommerce", "woocommerce@meetingmastery.lightrees.com", "", "", "2020-05-20 17:39:28", "2020-05-20 10:39:28", "Midtrans HTTP notification received: expire. Midtrans-bank_transfer", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("18", "261", "WooCommerce", "woocommerce@meetingmastery.lightrees.com", "", "", "2020-05-20 17:39:28", "2020-05-20 10:39:28", "Expired payment: Midtrans-bank_transfer Order status changed from On hold to Cancelled.", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("19", "262", "WooCommerce", "woocommerce@meetingmastery.lightrees.com", "", "", "2020-05-20 18:29:29", "2020-05-20 11:29:29", "Midtrans HTTP notification received: expire. Midtrans-bank_transfer", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("20", "262", "WooCommerce", "woocommerce@meetingmastery.lightrees.com", "", "", "2020-05-20 18:29:30", "2020-05-20 11:29:30", "Expired payment: Midtrans-bank_transfer Order status changed from On hold to Cancelled.", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("21", "263", "WooCommerce", "woocommerce@meetingmastery.lightrees.com", "", "", "2020-05-20 18:38:05", "2020-05-20 11:38:05", "Midtrans HTTP notification received: expire. Midtrans-echannel", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("22", "263", "WooCommerce", "woocommerce@meetingmastery.lightrees.com", "", "", "2020-05-20 18:38:06", "2020-05-20 11:38:06", "Expired payment: Midtrans-echannel Order status changed from On hold to Cancelled.", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("23", "264", "WooCommerce", "woocommerce@meetingmastery.lightrees.com", "", "", "2020-05-20 18:44:53", "2020-05-20 11:44:53", "Midtrans HTTP notification received: expire. Midtrans-echannel", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("24", "264", "WooCommerce", "woocommerce@meetingmastery.lightrees.com", "", "", "2020-05-20 18:44:54", "2020-05-20 11:44:54", "Expired payment: Midtrans-echannel Order status changed from On hold to Cancelled.", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("25", "266", "WooCommerce", "woocommerce@meetingmastery.lightrees.com", "", "", "2020-05-20 18:46:24", "2020-05-20 11:46:24", "Midtrans HTTP notification received: pending. Midtrans-bank_transfer", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("26", "266", "WooCommerce", "woocommerce@meetingmastery.lightrees.com", "", "", "2020-05-20 18:46:24", "2020-05-20 11:46:24", "Awaiting payment: Midtrans-bank_transfer Order status changed from Pending payment to On hold.", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("27", "267", "WooCommerce", "woocommerce@meetingmastery.lightrees.com", "", "", "2020-05-20 19:14:19", "2020-05-20 12:14:19", "Midtrans HTTP notification received: pending. Midtrans-echannel", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("28", "267", "WooCommerce", "woocommerce@meetingmastery.lightrees.com", "", "", "2020-05-20 19:14:19", "2020-05-20 12:14:19", "Awaiting payment: Midtrans-echannel Order status changed from Pending payment to On hold.", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("29", "265", "WooCommerce", "woocommerce@meetingmastery.lightrees.com", "", "", "2020-05-20 19:19:05", "2020-05-20 12:19:05", "Midtrans HTTP notification received: expire. Midtrans-bank_transfer", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("30", "265", "WooCommerce", "woocommerce@meetingmastery.lightrees.com", "", "", "2020-05-20 19:19:06", "2020-05-20 12:19:06", "Expired payment: Midtrans-bank_transfer Order status changed from On hold to Cancelled.", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("31", "266", "WooCommerce", "woocommerce@meetingmastery.lightrees.com", "", "", "2020-05-20 20:46:36", "2020-05-20 13:46:36", "Midtrans HTTP notification received: expire. Midtrans-bank_transfer", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("32", "266", "WooCommerce", "woocommerce@meetingmastery.lightrees.com", "", "", "2020-05-20 20:46:38", "2020-05-20 13:46:38", "Expired payment: Midtrans-bank_transfer Order status changed from On hold to Cancelled.", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("33", "267", "WooCommerce", "woocommerce@meetingmastery.lightrees.com", "", "", "2020-05-20 21:14:38", "2020-05-20 14:14:38", "Midtrans HTTP notification received: expire. Midtrans-echannel", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("34", "267", "WooCommerce", "woocommerce@meetingmastery.lightrees.com", "", "", "2020-05-20 21:14:38", "2020-05-20 14:14:38", "Expired payment: Midtrans-echannel Order status changed from On hold to Cancelled.", "0", "1", "WooCommerce", "order_note", "0", "0");
INSERT INTO `lt_comments` VALUES("35", "272", "WooCommerce", "woocommerce@meetingmastery.lightrees.com", "", "", "2020-05-23 09:58:05", "2020-05-23 02:58:05", "Unpaid order cancelled - time limit reached. Order status changed from Pending payment to Cancelled.", "0", "1", "WooCommerce", "order_note", "0", "0");

/* INSERT TABLE DATA: lt_db7_forms */
INSERT INTO `lt_db7_forms` VALUES("50", "49", "a:5:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"your-name\";s:5:\"PAKAR\";s:10:\"your-email\";s:14:\"st@pakar.co.id\";s:5:\"no-wa\";s:6:\"088888\";s:17:\"pum_form_popup_id\";s:2:\"57\";}", "2020-04-30 16:52:09");
INSERT INTO `lt_db7_forms` VALUES("51", "49", "a:5:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"your-name\";s:9:\"Usujnsnns\";s:10:\"your-email\";s:14:\"nk@pakar.co.id\";s:5:\"no-wa\";s:11:\"87946494949\";s:17:\"pum_form_popup_id\";s:2:\"57\";}", "2020-04-30 17:06:08");
INSERT INTO `lt_db7_forms` VALUES("52", "49", "a:5:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"your-name\";s:14:\"Joshua Sutanto\";s:10:\"your-email\";s:24:\"joshua.sutanto@gmail.com\";s:5:\"no-wa\";s:12:\"081310008870\";s:17:\"pum_form_popup_id\";s:2:\"57\";}", "2020-05-01 16:12:54");
INSERT INTO `lt_db7_forms` VALUES("53", "49", "a:5:{s:12:\"cfdb7_status\";s:6:\"unread\";s:9:\"your-name\";s:8:\"Sulistio\";s:10:\"your-email\";s:14:\"st@pakar.co.id\";s:5:\"no-wa\";s:12:\"082114441263\";s:17:\"pum_form_popup_id\";s:2:\"57\";}", "2020-05-13 21:57:29");

/* INSERT TABLE DATA: lt_duplicator_packages */
INSERT INTO `lt_duplicator_packages` VALUES("2", "20200526_meetingmasterybycoachjoshua", "f9ff49cd131660901235_20200526131630", "-1", "2020-05-26 13:25:45", "unknown", "O:11:\"DUP_Package\":25:{s:7:\"Created\";s:19:\"2020-05-26 13:16:30\";s:7:\"Version\";s:6:\"1.3.34\";s:9:\"VersionWP\";s:5:\"5.4.1\";s:9:\"VersionDB\";s:6:\"5.7.30\";s:10:\"VersionPHP\";s:6:\"5.6.40\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";i:2;s:4:\"Name\";s:36:\"20200526_meetingmasterybycoachjoshua\";s:4:\"Hash\";s:35:\"f9ff49cd131660901235_20200526131630\";s:8:\"NameHash\";s:72:\"20200526_meetingmasterybycoachjoshua_f9ff49cd131660901235_20200526131630\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:60:\"/home/fitandpr/meetingmastery.lightrees.com/wp-snapshots/tmp\";s:8:\"StoreURL\";s:50:\"https://meetingmastery.lightrees.com/wp-snapshots/\";s:8:\"ScanFile\";s:82:\"20200526_meetingmasterybycoachjoshua_f9ff49cd131660901235_20200526131630_scan.json\";s:10:\"TimerStart\";i:-1;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";s:4:\"-1.0\";s:6:\"WPUser\";s:7:\"unknown\";s:7:\"Archive\";O:11:\"DUP_Archive\":23:{s:10:\"FilterDirs\";s:0:\"\";s:11:\"FilterFiles\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:13:\"FilterDirsAll\";a:0:{}s:14:\"FilterFilesAll\";a:0:{}s:13:\"FilterExtsAll\";a:0:{}s:8:\"FilterOn\";i:0;s:12:\"ExportOnlyDB\";i:0;s:4:\"File\";s:84:\"20200526_meetingmasterybycoachjoshua_f9ff49cd131660901235_20200526131630_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:43:\"/home/fitandpr/meetingmastery.lightrees.com\";s:4:\"Size\";i:0;s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:10:\"FilterInfo\";O:23:\"DUP_Archive_Filter_Info\":8:{s:4:\"Dirs\";O:34:\"DUP_Archive_Filter_Scope_Directory\":5:{s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:6:\"Global\";a:0:{}s:8:\"Instance\";a:0:{}}s:5:\"Files\";O:29:\"DUP_Archive_Filter_Scope_File\":6:{s:4:\"Size\";a:0:{}s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:6:\"Global\";a:0:{}s:8:\"Instance\";a:0:{}}s:4:\"Exts\";O:29:\"DUP_Archive_Filter_Scope_Base\":3:{s:4:\"Core\";a:0:{}s:6:\"Global\";a:0:{}s:8:\"Instance\";a:0:{}}s:9:\"UDirCount\";i:0;s:10:\"UFileCount\";i:0;s:9:\"UExtCount\";i:0;s:8:\"TreeSize\";a:0:{}s:11:\"TreeWarning\";a:0:{}}s:14:\"RecursiveLinks\";a:0:{}s:10:\"file_count\";i:7515;s:10:\"\0*\0Package\";r:1;s:29:\"\0DUP_Archive\0tmpFilterDirsAll\";a:0:{}s:24:\"\0DUP_Archive\0wpCorePaths\";a:5:{i:0;s:52:\"/home/fitandpr/meetingmastery.lightrees.com/wp-admin\";i:1;s:62:\"/home/fitandpr/meetingmastery.lightrees.com/wp-content/uploads\";i:2;s:64:\"/home/fitandpr/meetingmastery.lightrees.com/wp-content/languages\";i:3;s:61:\"/home/fitandpr/meetingmastery.lightrees.com/wp-content/themes\";i:4;s:55:\"/home/fitandpr/meetingmastery.lightrees.com/wp-includes\";}s:29:\"\0DUP_Archive\0wpCoreExactPaths\";a:2:{i:0;s:43:\"/home/fitandpr/meetingmastery.lightrees.com\";i:1;s:54:\"/home/fitandpr/meetingmastery.lightrees.com/wp-content\";}s:19:\"isOuterWPContentDir\";b:0;s:25:\"wpContentDirNormalizePath\";s:55:\"/home/fitandpr/meetingmastery.lightrees.com/wp-content/\";}s:9:\"Installer\";O:13:\"DUP_Installer\":11:{s:4:\"File\";s:86:\"20200526_meetingmasterybycoachjoshua_f9ff49cd131660901235_20200526131630_installer.php\";s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBPort\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSecureOn\";i:0;s:14:\"OptsSecurePass\";s:0:\"\";s:13:\"numFilesAdded\";i:0;s:12:\"numDirsAdded\";i:0;s:10:\"\0*\0Package\";O:11:\"DUP_Package\":25:{s:7:\"Created\";s:19:\"2020-05-26 13:16:30\";s:7:\"Version\";s:6:\"1.3.34\";s:9:\"VersionWP\";s:5:\"5.4.1\";s:9:\"VersionDB\";s:6:\"5.7.30\";s:10:\"VersionPHP\";s:6:\"5.6.40\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:36:\"20200526_meetingmasterybycoachjoshua\";s:4:\"Hash\";s:35:\"f9ff49cd131660901235_20200526131630\";s:8:\"NameHash\";s:72:\"20200526_meetingmasterybycoachjoshua_f9ff49cd131660901235_20200526131630\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:60:\"/home/fitandpr/meetingmastery.lightrees.com/wp-snapshots/tmp\";s:8:\"StoreURL\";s:50:\"https://meetingmastery.lightrees.com/wp-snapshots/\";s:8:\"ScanFile\";N;s:10:\"TimerStart\";i:-1;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";i:-1;s:6:\"WPUser\";N;s:7:\"Archive\";r:23;s:9:\"Installer\";r:76;s:8:\"Database\";O:12:\"DUP_Database\":15:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";i:4900225;s:4:\"File\";s:85:\"20200526_meetingmasterybycoachjoshua_f9ff49cd131660901235_20200526131630_database.sql\";s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"Compatible\";s:0:\"\";s:8:\"Comments\";s:28:\"MySQL Community Server (GPL)\";s:4:\"info\";O:16:\"DUP_DatabaseInfo\":15:{s:9:\"buildMode\";N;s:13:\"collationList\";a:0:{}s:17:\"isTablesUpperCase\";N;s:15:\"isNameUpperCase\";N;s:4:\"name\";N;s:15:\"tablesBaseCount\";N;s:16:\"tablesFinalCount\";N;s:14:\"tablesRowCount\";N;s:16:\"tablesSizeOnDisk\";N;s:18:\"varLowerCaseTables\";i:0;s:7:\"version\";N;s:14:\"versionComment\";N;s:18:\"tableWiseRowCounts\";a:46:{s:26:\"lt_actionscheduler_actions\";s:3:\"229\";s:25:\"lt_actionscheduler_claims\";s:1:\"0\";s:25:\"lt_actionscheduler_groups\";s:1:\"3\";s:23:\"lt_actionscheduler_logs\";s:3:\"685\";s:14:\"lt_commentmeta\";s:1:\"0\";s:11:\"lt_comments\";s:2:\"35\";s:12:\"lt_db7_forms\";s:1:\"4\";s:22:\"lt_duplicator_packages\";s:1:\"1\";s:8:\"lt_links\";s:1:\"0\";s:18:\"lt_mailchimp_carts\";s:1:\"0\";s:17:\"lt_mailchimp_jobs\";s:1:\"0\";s:10:\"lt_options\";s:3:\"420\";s:11:\"lt_postmeta\";s:4:\"1552\";s:8:\"lt_posts\";s:3:\"192\";s:21:\"lt_term_relationships\";s:1:\"9\";s:16:\"lt_term_taxonomy\";s:2:\"17\";s:11:\"lt_termmeta\";s:1:\"1\";s:8:\"lt_terms\";s:2:\"17\";s:11:\"lt_usermeta\";s:3:\"245\";s:8:\"lt_users\";s:1:\"8\";s:24:\"lt_wc_admin_note_actions\";s:2:\"14\";s:17:\"lt_wc_admin_notes\";s:2:\"11\";s:21:\"lt_wc_category_lookup\";s:1:\"1\";s:21:\"lt_wc_customer_lookup\";s:1:\"7\";s:18:\"lt_wc_download_log\";s:1:\"0\";s:25:\"lt_wc_order_coupon_lookup\";s:1:\"0\";s:26:\"lt_wc_order_product_lookup\";s:2:\"17\";s:17:\"lt_wc_order_stats\";s:2:\"17\";s:22:\"lt_wc_order_tax_lookup\";s:1:\"0\";s:25:\"lt_wc_product_meta_lookup\";s:1:\"2\";s:22:\"lt_wc_tax_rate_classes\";s:1:\"2\";s:14:\"lt_wc_webhooks\";s:1:\"0\";s:23:\"lt_woocommerce_api_keys\";s:1:\"0\";s:35:\"lt_woocommerce_attribute_taxonomies\";s:1:\"0\";s:47:\"lt_woocommerce_downloadable_product_permissions\";s:1:\"0\";s:18:\"lt_woocommerce_log\";s:1:\"0\";s:29:\"lt_woocommerce_order_itemmeta\";s:3:\"171\";s:26:\"lt_woocommerce_order_items\";s:2:\"20\";s:32:\"lt_woocommerce_payment_tokenmeta\";s:1:\"0\";s:29:\"lt_woocommerce_payment_tokens\";s:1:\"0\";s:23:\"lt_woocommerce_sessions\";s:1:\"3\";s:38:\"lt_woocommerce_shipping_zone_locations\";s:1:\"1\";s:36:\"lt_woocommerce_shipping_zone_methods\";s:1:\"1\";s:29:\"lt_woocommerce_shipping_zones\";s:1:\"1\";s:33:\"lt_woocommerce_tax_rate_locations\";s:1:\"0\";s:24:\"lt_woocommerce_tax_rates\";s:1:\"0\";}s:33:\"\0DUP_DatabaseInfo\0intFieldsStruct\";a:0:{}s:42:\"\0DUP_DatabaseInfo\0indexProcessedSchemaSize\";a:0:{}}s:10:\"\0*\0Package\";r:1;s:25:\"\0DUP_Database\0dbStorePath\";s:146:\"/home/fitandpr/meetingmastery.lightrees.com/wp-snapshots/tmp/20200526_meetingmasterybycoachjoshua_f9ff49cd131660901235_20200526131630_database.sql\";s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;s:19:\"sameNameTableExists\";b:0;}s:13:\"BuildProgress\";O:18:\"DUP_Build_Progress\":12:{s:17:\"thread_start_time\";N;s:11:\"initialized\";b:0;s:15:\"installer_built\";b:0;s:15:\"archive_started\";b:0;s:20:\"archive_has_database\";b:0;s:13:\"archive_built\";b:0;s:21:\"database_script_built\";b:0;s:6:\"failed\";b:1;s:7:\"retries\";i:0;s:14:\"build_failures\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";i:0;s:7:\"subject\";s:0:\"\";s:11:\"description\";s:25:\"ZipArchive close failure.\";s:10:\"isCritical\";b:1;}}s:19:\"validation_failures\";a:0:{}s:27:\"\0DUP_Build_Progress\0package\";r:87;}}}s:8:\"Database\";r:111;s:13:\"BuildProgress\";r:188;}");
INSERT INTO `lt_duplicator_packages` VALUES("3", "20200526_meetingmasterybycoachjoshua", "80869e3fbefac33b1518_20200527015232", "22", "2020-05-27 02:05:31", "unknown", "O:11:\"DUP_Package\":25:{s:7:\"Created\";s:19:\"2020-05-27 01:52:32\";s:7:\"Version\";s:6:\"1.3.34\";s:9:\"VersionWP\";s:5:\"5.4.1\";s:9:\"VersionDB\";s:6:\"5.7.30\";s:10:\"VersionPHP\";s:6:\"5.6.40\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";i:3;s:4:\"Name\";s:36:\"20200526_meetingmasterybycoachjoshua\";s:4:\"Hash\";s:35:\"80869e3fbefac33b1518_20200527015232\";s:8:\"NameHash\";s:72:\"20200526_meetingmasterybycoachjoshua_80869e3fbefac33b1518_20200527015232\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:60:\"/home/fitandpr/meetingmastery.lightrees.com/wp-snapshots/tmp\";s:8:\"StoreURL\";s:50:\"https://meetingmastery.lightrees.com/wp-snapshots/\";s:8:\"ScanFile\";s:82:\"20200526_meetingmasterybycoachjoshua_80869e3fbefac33b1518_20200527015232_scan.json\";s:10:\"TimerStart\";i:-1;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";s:4:\"21.7\";s:6:\"WPUser\";s:7:\"unknown\";s:7:\"Archive\";O:11:\"DUP_Archive\":21:{s:10:\"FilterDirs\";s:0:\"\";s:11:\"FilterFiles\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:13:\"FilterDirsAll\";a:0:{}s:14:\"FilterFilesAll\";a:0:{}s:13:\"FilterExtsAll\";a:0:{}s:8:\"FilterOn\";i:0;s:12:\"ExportOnlyDB\";i:0;s:4:\"File\";s:84:\"20200526_meetingmasterybycoachjoshua_80869e3fbefac33b1518_20200527015232_archive.zip\";s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:43:\"/home/fitandpr/meetingmastery.lightrees.com\";s:4:\"Size\";i:0;s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:10:\"FilterInfo\";O:23:\"DUP_Archive_Filter_Info\":8:{s:4:\"Dirs\";O:34:\"DUP_Archive_Filter_Scope_Directory\":5:{s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:6:\"Global\";a:0:{}s:8:\"Instance\";a:0:{}}s:5:\"Files\";O:29:\"DUP_Archive_Filter_Scope_File\":6:{s:4:\"Size\";a:0:{}s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:6:\"Global\";a:0:{}s:8:\"Instance\";a:0:{}}s:4:\"Exts\";O:29:\"DUP_Archive_Filter_Scope_Base\":3:{s:4:\"Core\";a:0:{}s:6:\"Global\";a:0:{}s:8:\"Instance\";a:0:{}}s:9:\"UDirCount\";i:0;s:10:\"UFileCount\";i:0;s:9:\"UExtCount\";i:0;s:8:\"TreeSize\";a:0:{}s:11:\"TreeWarning\";a:0:{}}s:14:\"RecursiveLinks\";a:0:{}s:10:\"file_count\";i:-1;s:10:\"\0*\0Package\";O:11:\"DUP_Package\":25:{s:7:\"Created\";s:19:\"2020-05-27 01:52:32\";s:7:\"Version\";s:6:\"1.3.34\";s:9:\"VersionWP\";s:5:\"5.4.1\";s:9:\"VersionDB\";s:6:\"5.7.30\";s:10:\"VersionPHP\";s:6:\"5.6.40\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:36:\"20200526_meetingmasterybycoachjoshua\";s:4:\"Hash\";s:35:\"80869e3fbefac33b1518_20200527015232\";s:8:\"NameHash\";s:72:\"20200526_meetingmasterybycoachjoshua_80869e3fbefac33b1518_20200527015232\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:60:\"/home/fitandpr/meetingmastery.lightrees.com/wp-snapshots/tmp\";s:8:\"StoreURL\";s:50:\"https://meetingmastery.lightrees.com/wp-snapshots/\";s:8:\"ScanFile\";N;s:10:\"TimerStart\";i:-1;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";i:0;s:6:\"WPUser\";N;s:7:\"Archive\";r:23;s:9:\"Installer\";O:13:\"DUP_Installer\":11:{s:4:\"File\";s:86:\"20200526_meetingmasterybycoachjoshua_80869e3fbefac33b1518_20200527015232_installer.php\";s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBPort\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSecureOn\";i:0;s:14:\"OptsSecurePass\";s:0:\"\";s:13:\"numFilesAdded\";i:0;s:12:\"numDirsAdded\";i:0;s:10:\"\0*\0Package\";r:63;}s:8:\"Database\";O:12:\"DUP_Database\":15:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";N;s:4:\"File\";s:85:\"20200526_meetingmasterybycoachjoshua_80869e3fbefac33b1518_20200527015232_database.sql\";s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"Compatible\";s:0:\"\";s:8:\"Comments\";s:28:\"MySQL Community Server (GPL)\";s:4:\"info\";O:16:\"DUP_DatabaseInfo\":15:{s:9:\"buildMode\";N;s:13:\"collationList\";a:0:{}s:17:\"isTablesUpperCase\";N;s:15:\"isNameUpperCase\";N;s:4:\"name\";N;s:15:\"tablesBaseCount\";N;s:16:\"tablesFinalCount\";N;s:14:\"tablesRowCount\";N;s:16:\"tablesSizeOnDisk\";N;s:18:\"varLowerCaseTables\";i:0;s:7:\"version\";N;s:14:\"versionComment\";N;s:18:\"tableWiseRowCounts\";a:7:{s:26:\"lt_actionscheduler_actions\";s:3:\"233\";s:25:\"lt_actionscheduler_claims\";s:1:\"0\";s:25:\"lt_actionscheduler_groups\";s:1:\"3\";s:23:\"lt_actionscheduler_logs\";s:3:\"697\";s:14:\"lt_commentmeta\";s:1:\"0\";s:11:\"lt_comments\";s:2:\"35\";s:12:\"lt_db7_forms\";s:1:\"4\";}s:33:\"\0DUP_DatabaseInfo\0intFieldsStruct\";a:0:{}s:42:\"\0DUP_DatabaseInfo\0indexProcessedSchemaSize\";a:0:{}}s:10:\"\0*\0Package\";r:1;s:25:\"\0DUP_Database\0dbStorePath\";s:146:\"/home/fitandpr/meetingmastery.lightrees.com/wp-snapshots/tmp/20200526_meetingmasterybycoachjoshua_80869e3fbefac33b1518_20200527015232_database.sql\";s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;s:19:\"sameNameTableExists\";b:0;}s:13:\"BuildProgress\";O:18:\"DUP_Build_Progress\":12:{s:17:\"thread_start_time\";N;s:11:\"initialized\";b:0;s:15:\"installer_built\";b:0;s:15:\"archive_started\";b:0;s:20:\"archive_has_database\";b:0;s:13:\"archive_built\";b:0;s:21:\"database_script_built\";b:0;s:6:\"failed\";b:0;s:7:\"retries\";i:0;s:14:\"build_failures\";a:0:{}s:19:\"validation_failures\";a:0:{}s:27:\"\0DUP_Build_Progress\0package\";r:63;}}s:29:\"\0DUP_Archive\0tmpFilterDirsAll\";a:0:{}s:24:\"\0DUP_Archive\0wpCorePaths\";a:5:{i:0;s:52:\"/home/fitandpr/meetingmastery.lightrees.com/wp-admin\";i:1;s:62:\"/home/fitandpr/meetingmastery.lightrees.com/wp-content/uploads\";i:2;s:64:\"/home/fitandpr/meetingmastery.lightrees.com/wp-content/languages\";i:3;s:61:\"/home/fitandpr/meetingmastery.lightrees.com/wp-content/themes\";i:4;s:55:\"/home/fitandpr/meetingmastery.lightrees.com/wp-includes\";}s:29:\"\0DUP_Archive\0wpCoreExactPaths\";a:2:{i:0;s:43:\"/home/fitandpr/meetingmastery.lightrees.com\";i:1;s:54:\"/home/fitandpr/meetingmastery.lightrees.com/wp-content\";}}s:9:\"Installer\";r:86;s:8:\"Database\";r:98;s:13:\"BuildProgress\";r:136;}");

/* INSERT TABLE DATA: lt_options */
INSERT INTO `lt_options` VALUES("1", "siteurl", "https://meetingmastery.lightrees.com", "yes");
INSERT INTO `lt_options` VALUES("2", "home", "https://meetingmastery.lightrees.com", "yes");
INSERT INTO `lt_options` VALUES("3", "blogname", "Meeting Mastery by Coach Joshua Sutanto | Lightrees Grup", "yes");
INSERT INTO `lt_options` VALUES("4", "blogdescription", "", "yes");
INSERT INTO `lt_options` VALUES("5", "users_can_register", "0", "yes");
INSERT INTO `lt_options` VALUES("6", "admin_email", "st@pakar.co.id", "yes");
INSERT INTO `lt_options` VALUES("7", "start_of_week", "1", "yes");
INSERT INTO `lt_options` VALUES("8", "use_balanceTags", "0", "yes");
INSERT INTO `lt_options` VALUES("9", "use_smilies", "1", "yes");
INSERT INTO `lt_options` VALUES("10", "require_name_email", "1", "yes");
INSERT INTO `lt_options` VALUES("11", "comments_notify", "1", "yes");
INSERT INTO `lt_options` VALUES("12", "posts_per_rss", "10", "yes");
INSERT INTO `lt_options` VALUES("13", "rss_use_excerpt", "0", "yes");
INSERT INTO `lt_options` VALUES("14", "mailserver_url", "mail.example.com", "yes");
INSERT INTO `lt_options` VALUES("15", "mailserver_login", "login@example.com", "yes");
INSERT INTO `lt_options` VALUES("16", "mailserver_pass", "password", "yes");
INSERT INTO `lt_options` VALUES("17", "mailserver_port", "110", "yes");
INSERT INTO `lt_options` VALUES("18", "default_category", "1", "yes");
INSERT INTO `lt_options` VALUES("19", "default_comment_status", "open", "yes");
INSERT INTO `lt_options` VALUES("20", "default_ping_status", "open", "yes");
INSERT INTO `lt_options` VALUES("21", "default_pingback_flag", "0", "yes");
INSERT INTO `lt_options` VALUES("22", "posts_per_page", "10", "yes");
INSERT INTO `lt_options` VALUES("23", "date_format", "F j, Y", "yes");
INSERT INTO `lt_options` VALUES("24", "time_format", "g:i a", "yes");
INSERT INTO `lt_options` VALUES("25", "links_updated_date_format", "F j, Y g:i a", "yes");
INSERT INTO `lt_options` VALUES("26", "comment_moderation", "0", "yes");
INSERT INTO `lt_options` VALUES("27", "moderation_notify", "1", "yes");
INSERT INTO `lt_options` VALUES("28", "permalink_structure", "/%postname%/", "yes");
INSERT INTO `lt_options` VALUES("29", "rewrite_rules", "a:182:{s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:16:\"custom-css-js/?$\";s:33:\"index.php?post_type=custom-css-js\";s:46:\"custom-css-js/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_type=custom-css-js&feed=$matches[1]\";s:41:\"custom-css-js/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_type=custom-css-js&feed=$matches[1]\";s:33:\"custom-css-js/page/([0-9]{1,})/?$\";s:51:\"index.php?post_type=custom-css-js&paged=$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/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:41:\"custom-css-js/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"custom-css-js/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"custom-css-js/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"custom-css-js/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"custom-css-js/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"custom-css-js/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"custom-css-js/([^/]+)/embed/?$\";s:61:\"index.php?post_type=custom-css-js&name=$matches[1]&embed=true\";s:34:\"custom-css-js/([^/]+)/trackback/?$\";s:55:\"index.php?post_type=custom-css-js&name=$matches[1]&tb=1\";s:54:\"custom-css-js/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:67:\"index.php?post_type=custom-css-js&name=$matches[1]&feed=$matches[2]\";s:49:\"custom-css-js/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:67:\"index.php?post_type=custom-css-js&name=$matches[1]&feed=$matches[2]\";s:42:\"custom-css-js/([^/]+)/page/?([0-9]{1,})/?$\";s:68:\"index.php?post_type=custom-css-js&name=$matches[1]&paged=$matches[2]\";s:49:\"custom-css-js/([^/]+)/comment-page-([0-9]{1,})/?$\";s:68:\"index.php?post_type=custom-css-js&name=$matches[1]&cpage=$matches[2]\";s:39:\"custom-css-js/([^/]+)/wc-api(/(.*))?/?$\";s:69:\"index.php?post_type=custom-css-js&name=$matches[1]&wc-api=$matches[3]\";s:45:\"custom-css-js/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:56:\"custom-css-js/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:38:\"custom-css-js/([^/]+)(?:/([0-9]+))?/?$\";s:67:\"index.php?post_type=custom-css-js&name=$matches[1]&page=$matches[2]\";s:30:\"custom-css-js/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"custom-css-js/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"custom-css-js/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"custom-css-js/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"custom-css-js/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"custom-css-js/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=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:38:\"index.php?&page_id=2&cpage=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";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:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:25:\"([^/]+)/wc-api(/(.*))?/?$\";s:45:\"index.php?name=$matches[1]&wc-api=$matches[3]\";s:31:\"[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\"[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}", "yes");
INSERT INTO `lt_options` VALUES("30", "hack_file", "0", "yes");
INSERT INTO `lt_options` VALUES("31", "blog_charset", "UTF-8", "yes");
INSERT INTO `lt_options` VALUES("32", "moderation_keys", "", "no");
INSERT INTO `lt_options` VALUES("33", "active_plugins", "a:10:{i:0;s:44:\"SNAP-Woocommerce-master/midtrans-gateway.php\";i:1;s:36:\"contact-form-7/wp-contact-form-7.php\";i:2;s:42:\"contact-form-cfdb7/contact-form-cfdb-7.php\";i:3;s:31:\"custom-css-js/custom-css-js.php\";i:4;s:25:\"duplicator/duplicator.php\";i:5;s:23:\"elementor/elementor.php\";i:6;s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";i:7;s:53:\"facebook-for-woocommerce/facebook-for-woocommerce.php\";i:8;s:27:\"popup-maker/popup-maker.php\";i:9;s:27:\"woocommerce/woocommerce.php\";}", "yes");
INSERT INTO `lt_options` VALUES("34", "category_base", "", "yes");
INSERT INTO `lt_options` VALUES("35", "ping_sites", "http://rpc.pingomatic.com/", "yes");
INSERT INTO `lt_options` VALUES("36", "comment_max_links", "2", "yes");
INSERT INTO `lt_options` VALUES("37", "gmt_offset", "", "yes");
INSERT INTO `lt_options` VALUES("38", "default_email_category", "1", "yes");
INSERT INTO `lt_options` VALUES("39", "recently_edited", "", "no");
INSERT INTO `lt_options` VALUES("40", "template", "astra", "yes");
INSERT INTO `lt_options` VALUES("41", "stylesheet", "lightrees", "yes");
INSERT INTO `lt_options` VALUES("42", "comment_whitelist", "1", "yes");
INSERT INTO `lt_options` VALUES("43", "blacklist_keys", "", "no");
INSERT INTO `lt_options` VALUES("44", "comment_registration", "0", "yes");
INSERT INTO `lt_options` VALUES("45", "html_type", "text/html", "yes");
INSERT INTO `lt_options` VALUES("46", "use_trackback", "0", "yes");
INSERT INTO `lt_options` VALUES("47", "default_role", "subscriber", "yes");
INSERT INTO `lt_options` VALUES("48", "db_version", "47018", "yes");
INSERT INTO `lt_options` VALUES("49", "uploads_use_yearmonth_folders", "1", "yes");
INSERT INTO `lt_options` VALUES("50", "upload_path", "", "yes");
INSERT INTO `lt_options` VALUES("51", "blog_public", "0", "yes");
INSERT INTO `lt_options` VALUES("52", "default_link_category", "2", "yes");
INSERT INTO `lt_options` VALUES("53", "show_on_front", "page", "yes");
INSERT INTO `lt_options` VALUES("54", "tag_base", "", "yes");
INSERT INTO `lt_options` VALUES("55", "show_avatars", "1", "yes");
INSERT INTO `lt_options` VALUES("56", "avatar_rating", "G", "yes");
INSERT INTO `lt_options` VALUES("57", "upload_url_path", "", "yes");
INSERT INTO `lt_options` VALUES("58", "thumbnail_size_w", "150", "yes");
INSERT INTO `lt_options` VALUES("59", "thumbnail_size_h", "150", "yes");
INSERT INTO `lt_options` VALUES("60", "thumbnail_crop", "1", "yes");
INSERT INTO `lt_options` VALUES("61", "medium_size_w", "300", "yes");
INSERT INTO `lt_options` VALUES("62", "medium_size_h", "300", "yes");
INSERT INTO `lt_options` VALUES("63", "avatar_default", "mystery", "yes");
INSERT INTO `lt_options` VALUES("64", "large_size_w", "1024", "yes");
INSERT INTO `lt_options` VALUES("65", "large_size_h", "1024", "yes");
INSERT INTO `lt_options` VALUES("66", "image_default_link_type", "none", "yes");
INSERT INTO `lt_options` VALUES("67", "image_default_size", "", "yes");
INSERT INTO `lt_options` VALUES("68", "image_default_align", "", "yes");
INSERT INTO `lt_options` VALUES("69", "close_comments_for_old_posts", "0", "yes");
INSERT INTO `lt_options` VALUES("70", "close_comments_days_old", "14", "yes");
INSERT INTO `lt_options` VALUES("71", "thread_comments", "1", "yes");
INSERT INTO `lt_options` VALUES("72", "thread_comments_depth", "5", "yes");
INSERT INTO `lt_options` VALUES("73", "page_comments", "0", "yes");
INSERT INTO `lt_options` VALUES("74", "comments_per_page", "50", "yes");
INSERT INTO `lt_options` VALUES("75", "default_comments_page", "newest", "yes");
INSERT INTO `lt_options` VALUES("76", "comment_order", "asc", "yes");
INSERT INTO `lt_options` VALUES("77", "sticky_posts", "a:0:{}", "yes");
INSERT INTO `lt_options` VALUES("78", "widget_categories", "a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("79", "widget_text", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("80", "widget_rss", "a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("81", "uninstall_plugins", "a:2:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:27:\"popup-maker/popup-maker.php\";a:2:{i:0;s:11:\"PUM_Install\";i:1;s:16:\"uninstall_plugin\";}}", "no");
INSERT INTO `lt_options` VALUES("82", "timezone_string", "Asia/Jakarta", "yes");
INSERT INTO `lt_options` VALUES("83", "page_for_posts", "0", "yes");
INSERT INTO `lt_options` VALUES("84", "page_on_front", "2", "yes");
INSERT INTO `lt_options` VALUES("85", "default_post_format", "0", "yes");
INSERT INTO `lt_options` VALUES("86", "link_manager_enabled", "0", "yes");
INSERT INTO `lt_options` VALUES("87", "finished_splitting_shared_terms", "1", "yes");
INSERT INTO `lt_options` VALUES("88", "site_icon", "10", "yes");
INSERT INTO `lt_options` VALUES("89", "medium_large_size_w", "768", "yes");
INSERT INTO `lt_options` VALUES("90", "medium_large_size_h", "0", "yes");
INSERT INTO `lt_options` VALUES("91", "wp_page_for_privacy_policy", "3", "yes");
INSERT INTO `lt_options` VALUES("92", "show_comments_cookies_opt_in", "1", "yes");
INSERT INTO `lt_options` VALUES("93", "admin_email_lifespan", "1603689957", "yes");
INSERT INTO `lt_options` VALUES("94", "initial_db_version", "47018", "yes");
INSERT INTO `lt_options` VALUES("95", "lt_user_roles", "a:8:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:125:{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:12:\"cfdb7_access\";b:1;s:15:\"edit_custom_css\";b:1;s:15:\"read_custom_css\";b:1;s:17:\"delete_custom_css\";b:1;s:16:\"edit_custom_csss\";b:1;s:23:\"edit_others_custom_csss\";b:1;s:19:\"publish_custom_csss\";b:1;s:18:\"delete_custom_csss\";b:1;s:28:\"delete_published_custom_csss\";b:1;s:25:\"delete_others_custom_csss\";b:1;s:26:\"edit_published_custom_csss\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:15:\"css_js_designer\";a:2:{s:4:\"name\";s:12:\"Web Designer\";s:12:\"capabilities\";a:10:{s:15:\"edit_custom_css\";b:1;s:15:\"read_custom_css\";b:1;s:17:\"delete_custom_css\";b:1;s:16:\"edit_custom_csss\";b:1;s:23:\"edit_others_custom_csss\";b:1;s:19:\"publish_custom_csss\";b:1;s:18:\"delete_custom_csss\";b:1;s:28:\"delete_published_custom_csss\";b:1;s:25:\"delete_others_custom_csss\";b:1;s:26:\"edit_published_custom_csss\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}}", "yes");
INSERT INTO `lt_options` VALUES("96", "fresh_site", "0", "yes");
INSERT INTO `lt_options` VALUES("97", "widget_search", "a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("98", "widget_recent-posts", "a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("99", "widget_recent-comments", "a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("100", "widget_archives", "a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("101", "widget_meta", "a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("102", "sidebars_widgets", "a:12:{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:13:\"header-widget\";a:0:{}s:15:\"footer-widget-1\";a:0:{}s:15:\"footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-1\";a:0:{}s:24:\"advanced-footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-3\";a:0:{}s:24:\"advanced-footer-widget-4\";a:0:{}s:22:\"astra-woo-shop-sidebar\";a:0:{}s:24:\"astra-woo-single-sidebar\";a:0:{}s:13:\"array_version\";i:3;}", "yes");
INSERT INTO `lt_options` VALUES("103", "cron", "a:18:{i:1590545163;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1590546358;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:1590546487;a:1:{s:33:\"wc_admin_process_orders_milestone\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1590546494;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1590547731;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1590549016;a:2:{s:33:\"woocommerce_cleanup_personal_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1590557158;a:4:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}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:1590557167;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:1590557169;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:1590559785;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:1590559806;a:1:{s:24:\"woocommerce_cleanup_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1590560888;a:1:{s:14:\"wc_admin_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1590570606;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1590598769;a:2:{s:27:\"pum_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:26:\"pum_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;}}}i:1590598800;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1590643558;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1591067466;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:11:\"fifteendays\";s:4:\"args\";a:0:{}s:8:\"interval\";i:1296000;}}}s:7:\"version\";i:2;}", "yes");
INSERT INTO `lt_options` VALUES("104", "widget_pages", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("105", "widget_calendar", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("106", "widget_media_audio", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("107", "widget_media_image", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("108", "widget_media_gallery", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("109", "widget_media_video", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("110", "widget_tag_cloud", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("111", "widget_nav_menu", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("112", "widget_custom_html", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("114", "theme_mods_twentytwenty", "a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1588212153;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}}}}", "yes");
INSERT INTO `lt_options` VALUES("115", "recovery_keys", "a:0:{}", "yes");
INSERT INTO `lt_options` VALUES("127", "can_compress_scripts", "0", "no");
INSERT INTO `lt_options` VALUES("148", "recently_activated", "a:0:{}", "yes");
INSERT INTO `lt_options` VALUES("149", "elementor_version", "2.9.8", "yes");
INSERT INTO `lt_options` VALUES("151", "_elementor_installed_time", "1588140592", "yes");
INSERT INTO `lt_options` VALUES("152", "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\";s:247:\"[\"404 page\",\"about\",\"archive\",\"call to action\",\"clients\",\"contact\",\"faq\",\"features\",\"footer\",\"header\",\"hero\",\"portfolio\",\"pricing\",\"product archive\",\"services\",\"single page\",\"single post\",\"single product\",\"stats\",\"subscribe\",\"team\",\"testimonials\"]\";s:9:\"templates\";a:693:{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:\"10\";s:11:\"trend_index\";s:1:\"6\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:1;a:14:{s:2:\"id\";s:5:\"10107\";s:5:\"title\";s:34:\"Classic | Promotion | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/balls_small.png\";s:12:\"tmpl_created\";s:10:\"1547851373\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-promotion-announcement/?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:\"256\";s:11:\"trend_index\";s:3:\"214\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:2;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:\"28\";s:11:\"trend_index\";s:2:\"13\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:3;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:\"15\";s:11:\"trend_index\";s:1:\"9\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:4;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:\"32\";s:11:\"trend_index\";s:2:\"20\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:5;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:2:\"77\";s:11:\"trend_index\";s:2:\"48\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:6;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:\"70\";s:11:\"trend_index\";s:2:\"53\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:7;a:14:{s:2:\"id\";s:5:\"10158\";s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/coco_small.png\";s:12:\"tmpl_created\";s:10:\"1547852227\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-contact/?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:\"283\";s:11:\"trend_index\";s:3:\"211\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:8;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:\"202\";s:11:\"trend_index\";s:3:\"201\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:9;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:\"27\";s:11:\"trend_index\";s:2:\"17\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:10;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:\"196\";s:11:\"trend_index\";s:3:\"183\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:11;a:14:{s:2:\"id\";s:5:\"10190\";s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/engage_small.png\";s:12:\"tmpl_created\";s:10:\"1547885703\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-5/?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:\"265\";s:11:\"trend_index\";s:3:\"175\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:12;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:\"124\";s:11:\"trend_index\";s:3:\"160\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:13;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:\"301\";s:11:\"trend_index\";s:3:\"308\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:14;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:\"160\";s:11:\"trend_index\";s:3:\"157\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:15;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:\"199\";s:11:\"trend_index\";s:3:\"204\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:16;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:2:\"96\";s:11:\"trend_index\";s:3:\"113\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:17;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:\"307\";s:11:\"trend_index\";s:3:\"325\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:18;a:14:{s:2:\"id\";s:5:\"10256\";s:5:\"title\";s:20:\"Classic | Sale | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/fruit_small.png\";s:12:\"tmpl_created\";s:10:\"1547888909\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-3/?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:\"427\";s:11:\"trend_index\";s:3:\"536\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:19;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:\"34\";s:11:\"trend_index\";s:2:\"34\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:20;a:14:{s:2:\"id\";s:5:\"10267\";s:5:\"title\";s:29:\"Classic | Contact | Christmas\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/christmas_small.png\";s:12:\"tmpl_created\";s:10:\"1547889047\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-contact-christmas/?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:\"315\";s:11:\"trend_index\";s:3:\"309\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:21;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:\"339\";s:11:\"trend_index\";s:3:\"292\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:22;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:\"220\";s:11:\"trend_index\";s:3:\"290\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:23;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:\"18\";s:11:\"trend_index\";s:2:\"10\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:24;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:\"114\";s:11:\"trend_index\";s:3:\"112\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:25;a:14:{s:2:\"id\";s:5:\"10307\";s:5:\"title\";s:43:\"Fly In | Promotion | Christmas | Teddy Bear\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/teddy_small.png\";s:12:\"tmpl_created\";s:10:\"1547893266\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-promotion-christmas/?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:\"581\";s:11:\"trend_index\";s:3:\"524\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:26;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:\"179\";s:11:\"trend_index\";s:3:\"155\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:27;a:14:{s:2:\"id\";s:5:\"10318\";s:5:\"title\";s:27:\"Classic | Contact | Bicycle\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/by_small.png\";s:12:\"tmpl_created\";s:10:\"1547893367\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-2/?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:\"354\";s:11:\"trend_index\";s:3:\"301\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:28;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:\"295\";s:11:\"trend_index\";s:3:\"270\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:29;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:\"117\";s:11:\"trend_index\";s:3:\"103\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:30;a:14:{s:2:\"id\";s:5:\"10339\";s:5:\"title\";s:22:\"Fly In | Contact | Spa\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small.png\";s:12:\"tmpl_created\";s:10:\"1547893603\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-contact-spa/?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:\"404\";s:11:\"trend_index\";s:3:\"348\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:31;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:\"287\";s:11:\"trend_index\";s:3:\"233\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:32;a:14:{s:2:\"id\";s:5:\"10352\";s:5:\"title\";s:23:\"Fly In | Contact | Wine\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_wine_small.png\";s:12:\"tmpl_created\";s:10:\"1547915335\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/fly-in-contact/?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:\"437\";s:11:\"trend_index\";s:3:\"330\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:33;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:\"493\";s:11:\"trend_index\";s:3:\"567\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:34;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:\"340\";s:11:\"trend_index\";s:3:\"371\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:35;a:14:{s:2:\"id\";s:5:\"10372\";s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/phone_small.png\";s:12:\"tmpl_created\";s:10:\"1547915554\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-register-subscribe-2/?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:\"578\";s:11:\"trend_index\";s:3:\"550\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:36;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:\"490\";s:11:\"trend_index\";s:3:\"547\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:37;a:14:{s:2:\"id\";s:5:\"10382\";s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom_pink_small.png\";s:12:\"tmpl_created\";s:10:\"1547916616\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/bottom-bar-announcement/?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:3:\"290\";s:11:\"trend_index\";s:3:\"199\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:38;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:\"64\";s:11:\"trend_index\";s:2:\"65\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:39;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:\"60\";s:11:\"trend_index\";s:2:\"56\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:40;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:\"237\";s:11:\"trend_index\";s:3:\"247\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:41;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:\"121\";s:11:\"trend_index\";s:3:\"147\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:42;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:\"84\";s:11:\"trend_index\";s:3:\"107\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:43;a:14:{s:2:\"id\";s:5:\"10434\";s:5:\"title\";s:27:\"Classic | Sale | Headphones\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/head_small.png\";s:12:\"tmpl_created\";s:10:\"1547961950\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-6/?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:\"376\";s:11:\"trend_index\";s:3:\"368\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:44;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:\"67\";s:11:\"trend_index\";s:2:\"75\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:45;a:14:{s:2:\"id\";s:5:\"10444\";s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/plant_small.png\";s:12:\"tmpl_created\";s:10:\"1547962029\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-3/?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:\"407\";s:11:\"trend_index\";s:3:\"391\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:46;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:\"38\";s:11:\"trend_index\";s:2:\"28\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:47;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:\"87\";s:11:\"trend_index\";s:2:\"73\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:48;a:14:{s:2:\"id\";s:5:\"10467\";s:5:\"title\";s:27:\"Bottom Bar | Contact | Lego\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small.png\";s:12:\"tmpl_created\";s:10:\"1547962277\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/bottom-bar-contact/?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:3:\"641\";s:11:\"trend_index\";s:3:\"662\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:49;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:\"66\";s:11:\"trend_index\";s:2:\"70\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:50;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:\"166\";s:11:\"trend_index\";s:3:\"162\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:51;a:14:{s:2:\"id\";s:5:\"10487\";s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/acc_small.png\";s:12:\"tmpl_created\";s:10:\"1547964527\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-2/?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:\"514\";s:11:\"trend_index\";s:3:\"520\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:52;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:\"159\";s:11:\"trend_index\";s:3:\"190\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:53;a:14:{s:2:\"id\";s:5:\"10498\";s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547964616\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-7/?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:\"432\";s:11:\"trend_index\";s:3:\"379\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:54;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:\"161\";s:11:\"trend_index\";s:3:\"165\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:55;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:\"270\";s:11:\"trend_index\";s:3:\"299\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:56;a:14:{s:2:\"id\";s:5:\"10519\";s:5:\"title\";s:27:\"Hello Bar | Promotion | App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547964801\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-promotion-app-2/?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:\"543\";s:11:\"trend_index\";s:3:\"508\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:57;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:\"246\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:58;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:\"262\";s:11:\"trend_index\";s:3:\"318\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:59;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:\"332\";s:11:\"trend_index\";s:3:\"367\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:60;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:\"369\";s:11:\"trend_index\";s:3:\"512\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:61;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:\"36\";s:11:\"trend_index\";s:2:\"30\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:62;a:14:{s:2:\"id\";s:5:\"10569\";s:5:\"title\";s:15:\"Slide In | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/off_small.png\";s:12:\"tmpl_created\";s:10:\"1547967812\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/slide-in-sale/?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:\"498\";s:11:\"trend_index\";s:3:\"366\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:63;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:\"82\";s:11:\"trend_index\";s:2:\"62\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:64;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:\"149\";s:11:\"trend_index\";s:3:\"128\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:65;a:14:{s:2:\"id\";s:5:\"10590\";s:5:\"title\";s:19:\"Full Screen | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pass1_small.png\";s:12:\"tmpl_created\";s:10:\"1547967978\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-6/?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:3:\"476\";s:11:\"trend_index\";s:3:\"413\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:66;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:\"239\";s:11:\"trend_index\";s:3:\"293\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:67;a:14:{s:2:\"id\";s:5:\"10600\";s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/orange_small.png\";s:12:\"tmpl_created\";s:10:\"1547968080\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-3/?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:\"456\";s:11:\"trend_index\";s:3:\"451\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:68;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:\"331\";s:11:\"trend_index\";s:3:\"373\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:69;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:\"320\";s:11:\"trend_index\";s:3:\"343\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:70;a:14:{s:2:\"id\";s:5:\"10622\";s:5:\"title\";s:34:\"Full Screen | Contact | Headphones\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/full_hear_small.png\";s:12:\"tmpl_created\";s:10:\"1547969678\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-contact-2/?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:3:\"517\";s:11:\"trend_index\";s:3:\"533\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:71;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:\"375\";s:11:\"trend_index\";s:3:\"456\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:72;a:14:{s:2:\"id\";s:5:\"10633\";s:5:\"title\";s:23:\"Slide In | Login | Lego\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547969858\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/slide-in-login/?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:\"604\";s:11:\"trend_index\";s:3:\"554\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:73;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:\"463\";s:11:\"trend_index\";s:3:\"542\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:74;a:14:{s:2:\"id\";s:5:\"10644\";s:5:\"title\";s:26:\"Fly In | Contact | Webinar\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547970814\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-contact-2/?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:\"449\";s:11:\"trend_index\";s:3:\"374\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:75;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:\"104\";s:11:\"trend_index\";s:2:\"94\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:76;a:14:{s:2:\"id\";s:5:\"10654\";s:5:\"title\";s:31:\"Full Screen | Login | Christmas\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/full_login_small.png\";s:12:\"tmpl_created\";s:10:\"1547970917\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/full-screen-login-christmas/?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:3:\"601\";s:11:\"trend_index\";s:3:\"626\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:77;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:\"216\";s:11:\"trend_index\";s:3:\"193\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:78;a:14:{s:2:\"id\";s:5:\"10664\";s:5:\"title\";s:34:\"Slide In | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_gym_small.png\";s:12:\"tmpl_created\";s:10:\"1547973928\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-4/?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:\"505\";s:11:\"trend_index\";s:3:\"453\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:79;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:\"78\";s:11:\"trend_index\";s:2:\"80\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:80;a:14:{s:2:\"id\";s:5:\"10675\";s:5:\"title\";s:35:\"Full Screen | Login | Gym | Fitness\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/gym_full_small.png\";s:12:\"tmpl_created\";s:10:\"1547974110\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-4/?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:3:\"494\";s:11:\"trend_index\";s:3:\"448\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:81;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:\"80\";s:11:\"trend_index\";s:2:\"92\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:82;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:\"370\";s:11:\"trend_index\";s:3:\"382\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:83;a:14:{s:2:\"id\";s:4:\"9719\";s:5:\"title\";s:30:\"Classic | Subscribe | Register\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/register_small.png\";s:12:\"tmpl_created\";s:10:\"1547976107\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-subscribe-register/?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:\"436\";s:11:\"trend_index\";s:3:\"529\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:84;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:\"26\";s:11:\"trend_index\";s:2:\"19\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:85;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:\"58\";s:11:\"trend_index\";s:2:\"44\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:86;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:\"410\";s:11:\"trend_index\";s:3:\"489\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:87;a:14:{s:2:\"id\";s:5:\"10137\";s:5:\"title\";s:34:\"Full Screen | Contact | Restaurant\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rest_small.png\";s:12:\"tmpl_created\";s:10:\"1547976342\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-contact/?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:3:\"518\";s:11:\"trend_index\";s:3:\"556\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:88;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:\"51\";s:11:\"trend_index\";s:2:\"45\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:89;a:14:{s:2:\"id\";s:5:\"10244\";s:5:\"title\";s:17:\"Bottom Bar | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/wow_small.png\";s:12:\"tmpl_created\";s:10:\"1547976402\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/bottom-bar-sale/?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:3:\"565\";s:11:\"trend_index\";s:3:\"501\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:90;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:\"97\";s:11:\"trend_index\";s:3:\"109\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:91;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:\"153\";s:11:\"trend_index\";s:3:\"110\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:92;a:14:{s:2:\"id\";s:5:\"10127\";s:5:\"title\";s:35:\"Fly In | Announcement | Maintenance\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pizza_small.png\";s:12:\"tmpl_created\";s:10:\"1547984061\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-2/?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:\"616\";s:11:\"trend_index\";s:3:\"614\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:93;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:\"258\";s:11:\"trend_index\";s:3:\"250\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:94;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:\"378\";s:11:\"trend_index\";s:3:\"411\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:95;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:\"399\";s:11:\"trend_index\";s:3:\"484\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:96;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:\"556\";s:11:\"trend_index\";s:3:\"604\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:97;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:\"244\";s:11:\"trend_index\";s:3:\"249\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:98;a:14:{s:2:\"id\";s:5:\"10776\";s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social1_small.png\";s:12:\"tmpl_created\";s:10:\"1548047055\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-social-share/?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:\"621\";s:11:\"trend_index\";s:3:\"651\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:99;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:\"240\";s:11:\"trend_index\";s:3:\"220\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:100;a:14:{s:2:\"id\";s:5:\"10785\";s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social2_small.png\";s:12:\"tmpl_created\";s:10:\"1548047593\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/fly-in-contact-social-share-2/?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:\"451\";s:11:\"trend_index\";s:3:\"450\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:101;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:\"390\";s:11:\"trend_index\";s:3:\"469\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:102;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:\"488\";s:11:\"trend_index\";s:3:\"518\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:103;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:\"75\";s:11:\"trend_index\";s:2:\"87\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:104;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:\"111\";s:11:\"trend_index\";s:2:\"97\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:105;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:\"226\";s:11:\"trend_index\";s:3:\"263\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:106;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:\"211\";s:11:\"trend_index\";s:3:\"242\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:107;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:\"43\";s:11:\"trend_index\";s:2:\"40\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:108;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:\"90\";s:11:\"trend_index\";s:2:\"89\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:109;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:\"192\";s:11:\"trend_index\";s:3:\"268\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:110;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:\"336\";s:11:\"trend_index\";s:3:\"359\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:111;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:\"389\";s:11:\"trend_index\";s:3:\"418\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:112;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:\"567\";s:11:\"trend_index\";s:3:\"628\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:113;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:\"507\";s:11:\"trend_index\";s:3:\"537\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:114;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:\"147\";s:11:\"trend_index\";s:3:\"166\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:115;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:\"368\";s:11:\"trend_index\";s:3:\"390\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:116;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:\"44\";s:11:\"trend_index\";s:2:\"35\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:117;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:\"186\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:118;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:\"296\";s:11:\"trend_index\";s:3:\"298\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:119;a:14:{s:2:\"id\";s:5:\"10794\";s:5:\"title\";s:34:\"Classic | Contact | Social | Share\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/s_small.png\";s:12:\"tmpl_created\";s:10:\"1548067619\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-social-share/?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:\"429\";s:11:\"trend_index\";s:3:\"445\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:120;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:\"271\";s:11:\"trend_index\";s:3:\"251\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:121;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:\"223\";s:11:\"trend_index\";s:3:\"265\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:122;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:\"275\";s:11:\"trend_index\";s:3:\"230\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:123;a:14:{s:2:\"id\";s:5:\"10871\";s:5:\"title\";s:20:\"Bottom Bar | Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/m_small.png\";s:12:\"tmpl_created\";s:10:\"1548074396\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-contact-2/?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:3:\"623\";s:11:\"trend_index\";s:3:\"637\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:124;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:\"466\";s:11:\"trend_index\";s:3:\"654\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:125;a:14:{s:2:\"id\";s:5:\"10936\";s:5:\"title\";s:25:\"Full Screen | Toggle Menu\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/menu_small.png\";s:12:\"tmpl_created\";s:10:\"1548874587\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-toggle-menu/?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:3:\"430\";s:11:\"trend_index\";s:3:\"498\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:126;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:\"172\";s:11:\"trend_index\";s:3:\"143\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:127;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:\"152\";s:11:\"trend_index\";s:3:\"145\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:128;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:\"360\";s:11:\"trend_index\";s:3:\"350\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:129;a:14:{s:2:\"id\";s:5:\"10964\";s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/love_small.png\";s:12:\"tmpl_created\";s:10:\"1550039106\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-promotion-coupon/?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:\"572\";s:11:\"trend_index\";s:3:\"548\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:130;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:\"25\";s:11:\"trend_index\";s:2:\"15\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:131;a:14:{s:2:\"id\";s:5:\"10992\";s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/02/h_small.png\";s:12:\"tmpl_created\";s:10:\"1550072007\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-promotion-coupon-love-valentines-day/?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:\"611\";s:11:\"trend_index\";s:3:\"630\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:132;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:\"221\";s:11:\"trend_index\";s:3:\"237\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:133;a:14:{s:2:\"id\";s:5:\"11005\";s:5:\"title\";s:50:\"Classic | Promotion | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/bear_small.png\";s:12:\"tmpl_created\";s:10:\"1550073303\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-promotion-love-valentines-day/?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:\"605\";s:11:\"trend_index\";s:3:\"532\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:134;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:\"168\";s:11:\"trend_index\";s:3:\"174\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:135;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:\"358\";s:11:\"trend_index\";s:3:\"479\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:136;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:\"350\";s:11:\"trend_index\";s:3:\"502\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:137;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:\"162\";s:11:\"trend_index\";s:3:\"131\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:138;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:\"260\";s:11:\"trend_index\";s:3:\"209\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:139;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:\"131\";s:11:\"trend_index\";s:3:\"120\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:140;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:\"156\";s:11:\"trend_index\";s:2:\"90\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:141;a:14:{s:2:\"id\";s:5:\"11231\";s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";s:10:\"1564642380\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/digital-agency/?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:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"180\";s:11:\"trend_index\";s:2:\"76\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:142;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:\"167\";s:11:\"trend_index\";s:2:\"33\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:143;a:14:{s:2:\"id\";s:5:\"11220\";s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";s:10:\"1564642385\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-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:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"138\";s:11:\"trend_index\";s:2:\"49\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:144;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:\"126\";s:11:\"trend_index\";s:3:\"126\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:145;a:14:{s:2:\"id\";s:5:\"11204\";s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";s:10:\"1564642389\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-3/?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:36:\"[\"404\",\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"353\";s:11:\"trend_index\";s:3:\"245\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:146;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:\"268\";s:11:\"trend_index\";s:3:\"213\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:147;a:14:{s:2:\"id\";s:5:\"11198\";s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Header_small_3.jpg\";s:12:\"tmpl_created\";s:10:\"1564642395\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-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:39:\"[\"Digital Agency\",\"header\",\"marketing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"53\";s:11:\"trend_index\";s:2:\"12\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:148;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:2:\"69\";s:11:\"trend_index\";s:1:\"8\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:149;a:14:{s:2:\"id\";s:5:\"11192\";s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";s:10:\"1564642399\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/digital-agency-5/?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:39:\"[\"Digital Agency\",\"footer\",\"marketing\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"217\";s:11:\"trend_index\";s:3:\"104\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:150;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:\"171\";s:11:\"trend_index\";s:3:\"255\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:151;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:\"215\";s:11:\"trend_index\";s:3:\"195\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:152;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:2:\"95\";s:11:\"trend_index\";s:2:\"71\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:153;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:\"188\";s:11:\"trend_index\";s:3:\"177\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:154;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:\"154\";s:11:\"trend_index\";s:3:\"215\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:155;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:\"365\";s:11:\"trend_index\";s:3:\"354\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:156;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:\"129\";s:11:\"trend_index\";s:3:\"102\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:157;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:\"300\";s:11:\"trend_index\";s:3:\"358\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:158;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:\"480\";s:11:\"trend_index\";s:3:\"527\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:159;a:14:{s:2:\"id\";s:5:\"11468\";s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";s:10:\"1567393182\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/classic-sale-gym/?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:\"629\";s:11:\"trend_index\";s:3:\"600\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:160;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:\"281\";s:11:\"trend_index\";s:3:\"224\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:161;a:14:{s:2:\"id\";s:5:\"11461\";s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Header_Small.png\";s:12:\"tmpl_created\";s:10:\"1567393219\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/blocks/gym/?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:16:\"[\"Gym\",\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"264\";s:11:\"trend_index\";s:3:\"151\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:162;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:\"246\";s:11:\"trend_index\";s:3:\"257\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:163;a:14:{s:2:\"id\";s:5:\"11453\";s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";s:10:\"1567393224\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-2/?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:16:\"[\"footer\",\"Gym\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"316\";s:11:\"trend_index\";s:3:\"223\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:164;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:\"446\";s:11:\"trend_index\";s:3:\"561\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:165;a:14:{s:2:\"id\";s:5:\"11445\";s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";s:10:\"1567393229\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-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:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"434\";s:11:\"trend_index\";s:3:\"334\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:166;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:\"580\";s:11:\"trend_index\";s:3:\"634\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:167;a:14:{s:2:\"id\";s:5:\"11435\";s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";s:10:\"1567393296\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-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:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"422\";s:11:\"trend_index\";s:3:\"302\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:168;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:\"232\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:169;a:14:{s:2:\"id\";s:5:\"11424\";s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";s:10:\"1567393309\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/blocks/gym-5/?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:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"618\";s:11:\"trend_index\";s:3:\"570\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:170;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:\"73\";s:11:\"trend_index\";s:2:\"81\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:171;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:\"177\";s:11:\"trend_index\";s:3:\"169\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:172;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:\"35\";s:11:\"trend_index\";s:2:\"36\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:173;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:\"29\";s:11:\"trend_index\";s:2:\"25\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:174;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:3:\"113\";s:11:\"trend_index\";s:3:\"115\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:175;a:14:{s:2:\"id\";s:5:\"11822\";s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";s:10:\"1569429896\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?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:3:\"599\";s:11:\"trend_index\";s:3:\"590\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:176;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:\"125\";s:11:\"trend_index\";s:3:\"134\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:177;a:14:{s:2:\"id\";s:5:\"11877\";s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";s:10:\"1569429954\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-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:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"607\";s:11:\"trend_index\";s:3:\"642\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:178;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:\"48\";s:11:\"trend_index\";s:2:\"55\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:179;a:14:{s:2:\"id\";s:5:\"11870\";s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";s:10:\"1569429964\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-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:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"588\";s:11:\"trend_index\";s:3:\"574\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:180;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:3:\"102\";s:11:\"trend_index\";s:3:\"118\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:181;a:14:{s:2:\"id\";s:5:\"11861\";s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";s:10:\"1569429975\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/portfolio-project-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:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"577\";s:11:\"trend_index\";s:3:\"549\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:182;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:3:\"120\";s:11:\"trend_index\";s:3:\"154\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:183;a:14:{s:2:\"id\";s:5:\"11854\";s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";s:10:\"1569429983\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blocks/portfolio/?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:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"479\";s:11:\"trend_index\";s:3:\"398\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:184;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:\"225\";s:11:\"trend_index\";s:3:\"294\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:185;a:14:{s:2:\"id\";s:5:\"11847\";s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";s:10:\"1569430010\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-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:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"351\";s:11:\"trend_index\";s:3:\"185\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:186;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:2:\"89\";s:11:\"trend_index\";s:2:\"66\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:187;a:14:{s:2:\"id\";s:5:\"11839\";s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";s:10:\"1569430015\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-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:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"303\";s:11:\"trend_index\";s:3:\"181\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:188;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:\"224\";s:11:\"trend_index\";s:3:\"188\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:189;a:14:{s:2:\"id\";s:5:\"11832\";s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";s:10:\"1569430019\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-19/?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:43:\"[\"creative portfolio\",\"footer\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"330\";s:11:\"trend_index\";s:3:\"167\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:190;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:\"187\";s:11:\"trend_index\";s:3:\"170\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:191;a:14:{s:2:\"id\";s:5:\"11807\";s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";s:10:\"1569430070\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/portfolio-20/?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:40:\"[\"404\",\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"526\";s:11:\"trend_index\";s:3:\"395\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:192;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:\"250\";s:11:\"trend_index\";s:3:\"261\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:193;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:\"206\";s:11:\"trend_index\";s:3:\"216\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:194;a:14:{s:2:\"id\";s:5:\"11897\";s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";s:10:\"1569494236\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-project-2-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:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"655\";s:11:\"trend_index\";s:3:\"656\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:195;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:\"182\";s:11:\"trend_index\";s:3:\"173\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:196;a:14:{s:2:\"id\";s:5:\"11890\";s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";s:10:\"1571907344\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-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:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"356\";s:11:\"trend_index\";s:3:\"171\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:197;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:2:\"98\";s:11:\"trend_index\";s:2:\"83\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:198;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:\"201\";s:11:\"trend_index\";s:3:\"253\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:199;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:\"433\";s:11:\"trend_index\";s:3:\"457\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:200;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:\"218\";s:11:\"trend_index\";s:3:\"212\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:201;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:\"142\";s:11:\"trend_index\";s:3:\"148\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:202;a:14:{s:2:\"id\";s:5:\"12212\";s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";s:10:\"1572846914\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/law-firm-single-post/?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:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"396\";s:11:\"trend_index\";s:3:\"229\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:203;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:\"101\";s:11:\"trend_index\";s:3:\"122\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:204;a:14:{s:2:\"id\";s:5:\"12203\";s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";s:10:\"1572846925\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/law-firm-search-archiv/?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:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"553\";s:11:\"trend_index\";s:3:\"383\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:205;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:\"74\";s:11:\"trend_index\";s:3:\"182\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:206;a:14:{s:2:\"id\";s:5:\"12194\";s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/header.png\";s:12:\"tmpl_created\";s:10:\"1572846935\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-header/?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:27:\"[\"header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"157\";s:11:\"trend_index\";s:2:\"50\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:207;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:\"119\";s:11:\"trend_index\";s:3:\"184\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:208;a:14:{s:2:\"id\";s:5:\"12179\";s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";s:10:\"1572846958\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-footer/?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:27:\"[\"footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"443\";s:11:\"trend_index\";s:3:\"352\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:209;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:\"117\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:210;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:\"79\";s:11:\"trend_index\";s:2:\"86\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:211;a:14:{s:2:\"id\";s:5:\"12170\";s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";s:10:\"1572846967\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/law-firm-archiv/?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:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"453\";s:11:\"trend_index\";s:3:\"304\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:212;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:\"329\";s:11:\"trend_index\";s:3:\"380\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:213;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:\"110\";s:11:\"trend_index\";s:2:\"96\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:214;a:14:{s:2:\"id\";s:5:\"12164\";s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";s:10:\"1572846979\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/law-firm-404/?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:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"657\";s:11:\"trend_index\";s:3:\"531\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:215;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:\"286\";s:11:\"trend_index\";s:3:\"289\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:216;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:\"33\";s:11:\"trend_index\";s:2:\"31\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:217;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:\"469\";s:11:\"trend_index\";s:3:\"419\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:218;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:\"37\";s:11:\"trend_index\";s:2:\"72\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:219;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:\"46\";s:11:\"trend_index\";s:2:\"37\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:220;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:\"100\";s:11:\"trend_index\";s:2:\"91\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:221;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:\"186\";s:11:\"trend_index\";s:3:\"136\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:222;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:\"107\";s:11:\"trend_index\";s:3:\"149\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:223;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:\"163\";s:11:\"trend_index\";s:3:\"153\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:224;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:\"56\";s:11:\"trend_index\";s:2:\"67\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:225;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:\"346\";s:11:\"trend_index\";s:3:\"414\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:226;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:\"85\";s:11:\"trend_index\";s:3:\"139\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:227;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:\"41\";s:11:\"trend_index\";s:1:\"7\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:228;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:\"49\";s:11:\"trend_index\";s:2:\"41\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:229;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:\"280\";s:11:\"trend_index\";s:3:\"227\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:230;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:\"59\";s:11:\"trend_index\";s:2:\"85\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:231;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:\"63\";s:11:\"trend_index\";s:2:\"29\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:232;a:14:{s:2:\"id\";s:5:\"12229\";s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";s:10:\"1572847842\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-law-firm-information/?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:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"545\";s:11:\"trend_index\";s:3:\"416\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:233;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:\"128\";s:11:\"trend_index\";s:3:\"105\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:234;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:\"306\";s:11:\"trend_index\";s:3:\"283\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:235;a:14:{s:2:\"id\";s:5:\"12550\";s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";s:10:\"1575960263\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?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:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"677\";s:11:\"trend_index\";s:3:\"661\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:236;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:\"289\";s:11:\"trend_index\";s:3:\"205\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:237;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:\"305\";s:11:\"trend_index\";s:3:\"323\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:238;a:14:{s:2:\"id\";s:5:\"12540\";s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";s:10:\"1575960267\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?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:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"635\";s:11:\"trend_index\";s:3:\"571\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:239;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:\"144\";s:11:\"trend_index\";s:3:\"111\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:240;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:\"470\";s:11:\"trend_index\";s:3:\"572\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:241;a:14:{s:2:\"id\";s:5:\"12492\";s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";s:10:\"1575960358\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/travel-footer/?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:27:\"[\"footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"492\";s:11:\"trend_index\";s:3:\"377\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:242;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:\"143\";s:11:\"trend_index\";s:3:\"124\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:243;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:\"421\";s:11:\"trend_index\";s:3:\"599\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:244;a:14:{s:2:\"id\";s:5:\"12500\";s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Header_s.png\";s:12:\"tmpl_created\";s:10:\"1575960371\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/travel-header/?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:27:\"[\"header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"440\";s:11:\"trend_index\";s:3:\"345\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:245;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:\"312\";s:11:\"trend_index\";s:3:\"280\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:246;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:\"461\";s:11:\"trend_index\";s:3:\"465\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:247;a:14:{s:2:\"id\";s:5:\"12509\";s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";s:10:\"1575960378\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/blocks/travel-404/?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:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"660\";s:11:\"trend_index\";s:3:\"639\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:248;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:\"47\";s:11:\"trend_index\";s:2:\"32\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:249;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:\"471\";s:11:\"trend_index\";s:3:\"535\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:250;a:14:{s:2:\"id\";s:5:\"12516\";s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";s:10:\"1575960387\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-archive-blog/?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:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"503\";s:11:\"trend_index\";s:3:\"347\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:251;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:\"65\";s:11:\"trend_index\";s:2:\"54\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:252;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:\"561\";s:11:\"trend_index\";s:3:\"552\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:253;a:14:{s:2:\"id\";s:5:\"12524\";s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";s:10:\"1575960397\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/travel-single-post/?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:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"563\";s:11:\"trend_index\";s:3:\"511\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:254;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:\"146\";s:11:\"trend_index\";s:3:\"121\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:255;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:\"367\";s:11:\"trend_index\";s:3:\"468\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:256;a:14:{s:2:\"id\";s:5:\"12531\";s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";s:10:\"1575960404\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/travel-single-post-tour/?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:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"593\";s:11:\"trend_index\";s:3:\"578\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:257;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:\"148\";s:11:\"trend_index\";s:3:\"144\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:258;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:\"415\";s:11:\"trend_index\";s:3:\"490\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:259;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:\"269\";s:11:\"trend_index\";s:3:\"307\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:260;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:\"334\";s:11:\"trend_index\";s:3:\"372\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:261;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:\"99\";s:11:\"trend_index\";s:2:\"84\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:262;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:\"183\";s:11:\"trend_index\";s:3:\"206\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:263;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:\"184\";s:11:\"trend_index\";s:3:\"180\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:264;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:\"195\";s:11:\"trend_index\";s:3:\"187\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:265;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:3:\"103\";s:11:\"trend_index\";s:3:\"133\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:266;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:\"409\";s:11:\"trend_index\";s:3:\"444\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:267;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:\"164\";s:11:\"trend_index\";s:3:\"217\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:268;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:\"313\";s:11:\"trend_index\";s:3:\"360\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:269;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:2:\"91\";s:11:\"trend_index\";s:2:\"52\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:270;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:\"438\";s:11:\"trend_index\";s:3:\"440\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:271;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:\"145\";s:11:\"trend_index\";s:3:\"114\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:272;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:\"401\";s:11:\"trend_index\";s:3:\"328\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:273;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:\"116\";s:11:\"trend_index\";s:2:\"59\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:274;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:\"88\";s:11:\"trend_index\";s:3:\"178\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:275;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:\"132\";s:11:\"trend_index\";s:3:\"116\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:276;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:\"232\";s:11:\"trend_index\";s:3:\"357\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:277;a:14:{s:2:\"id\";s:5:\"12716\";s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";s:10:\"1579060659\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-single-post-3-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:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"555\";s:11:\"trend_index\";s:3:\"385\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:278;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:\"241\";s:11:\"trend_index\";s:3:\"254\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:279;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:\"178\";s:11:\"trend_index\";s:3:\"252\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:280;a:14:{s:2:\"id\";s:5:\"12707\";s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";s:10:\"1579060669\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-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:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"538\";s:11:\"trend_index\";s:3:\"310\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:281;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:\"325\";s:11:\"trend_index\";s:3:\"317\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:282;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:\"342\";s:11:\"trend_index\";s:3:\"417\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:283;a:14:{s:2:\"id\";s:5:\"12699\";s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";s:10:\"1579060680\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-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:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"473\";s:11:\"trend_index\";s:3:\"194\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:284;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:\"42\";s:11:\"trend_index\";s:2:\"21\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:285;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:\"310\";s:11:\"trend_index\";s:3:\"403\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:286;a:14:{s:2:\"id\";s:5:\"12688\";s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";s:10:\"1579060692\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/magazine-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:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"454\";s:11:\"trend_index\";s:3:\"279\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:287;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:\"450\";s:11:\"trend_index\";s:3:\"525\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:288;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:\"208\";s:11:\"trend_index\";s:3:\"228\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:289;a:14:{s:2:\"id\";s:5:\"12678\";s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Header_s.png\";s:12:\"tmpl_created\";s:10:\"1579060701\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-header/?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:28:\"[\"Blog\",\"header\",\"Magazine\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"347\";s:11:\"trend_index\";s:3:\"158\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:290;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:\"626\";s:11:\"trend_index\";s:3:\"646\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:291;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:\"200\";s:11:\"trend_index\";s:3:\"225\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:292;a:14:{s:2:\"id\";s:5:\"12669\";s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";s:10:\"1579060715\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-footer/?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:28:\"[\"Blog\",\"footer\",\"Magazine\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"496\";s:11:\"trend_index\";s:3:\"324\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:293;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:\"309\";s:11:\"trend_index\";s:3:\"278\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:294;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:\"204\";s:11:\"trend_index\";s:3:\"378\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:295;a:14:{s:2:\"id\";s:5:\"12661\";s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";s:10:\"1579060722\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/magazine-search/?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:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"501\";s:11:\"trend_index\";s:3:\"236\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:296;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:\"554\";s:11:\"trend_index\";s:3:\"612\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:297;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:\"254\";s:11:\"trend_index\";s:3:\"430\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:298;a:14:{s:2:\"id\";s:5:\"12652\";s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";s:10:\"1579060730\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/magazine-archiv2/?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:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"548\";s:11:\"trend_index\";s:3:\"406\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:299;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:\"520\";s:11:\"trend_index\";s:3:\"546\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:300;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:\"249\";s:11:\"trend_index\";s:3:\"306\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:301;a:14:{s:2:\"id\";s:5:\"12643\";s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";s:10:\"1579060737\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/magazine-archiv1/?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:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"447\";s:11:\"trend_index\";s:3:\"226\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:302;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:\"622\";s:11:\"trend_index\";s:3:\"658\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:303;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:\"55\";s:11:\"trend_index\";s:3:\"129\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:304;a:14:{s:2:\"id\";s:5:\"12635\";s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";s:10:\"1579060746\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/magazine-404/?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:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"619\";s:11:\"trend_index\";s:3:\"539\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:305;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:\"468\";s:11:\"trend_index\";s:3:\"443\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:306;a:14:{s:2:\"id\";s:5:\"12736\";s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";s:10:\"1579060978\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/slide-in-contact-us/?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:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"667\";s:11:\"trend_index\";s:3:\"461\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:307;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:\"612\";s:11:\"trend_index\";s:3:\"602\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:308;a:14:{s:2:\"id\";s:5:\"12726\";s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";s:10:\"1579061019\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?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:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"495\";s:11:\"trend_index\";s:3:\"262\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:309;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:\"304\";s:11:\"trend_index\";s:3:\"300\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:310;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:2:\"50\";s:11:\"trend_index\";s:2:\"22\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:311;a:14:{s:2:\"id\";s:5:\"13089\";s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";s:10:\"1582091623\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/photography-404/?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:33:\"[\"404\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"663\";s:11:\"trend_index\";s:3:\"563\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:312;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:\"513\";s:11:\"trend_index\";s:3:\"583\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:313;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:2:\"94\";s:11:\"trend_index\";s:2:\"68\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:314;a:14:{s:2:\"id\";s:5:\"13096\";s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";s:10:\"1582091742\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-archiv-media/?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:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"620\";s:11:\"trend_index\";s:3:\"540\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:315;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:\"627\";s:11:\"trend_index\";s:3:\"595\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:316;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:\"136\";s:11:\"trend_index\";s:3:\"100\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:317;a:14:{s:2:\"id\";s:5:\"13103\";s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";s:10:\"1582091903\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/photography-footer/?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:36:\"[\"footer\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"508\";s:11:\"trend_index\";s:3:\"274\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:318;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:\"544\";s:11:\"trend_index\";s:3:\"565\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:319;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:\"150\";s:11:\"trend_index\";s:2:\"98\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:320;a:14:{s:2:\"id\";s:5:\"13120\";s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";s:10:\"1582092351\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/photography-single-post/?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:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"649\";s:11:\"trend_index\";s:3:\"591\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:321;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:\"643\";s:11:\"trend_index\";s:3:\"629\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:322;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:2:\"93\";s:11:\"trend_index\";s:2:\"47\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:323;a:14:{s:2:\"id\";s:5:\"13112\";s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Header_s.png\";s:12:\"tmpl_created\";s:10:\"1582092483\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/photography-header/?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:36:\"[\"header\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"377\";s:11:\"trend_index\";s:3:\"161\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:324;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:\"509\";s:11:\"trend_index\";s:3:\"509\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:325;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:\"108\";s:11:\"trend_index\";s:2:\"78\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:326;a:14:{s:2:\"id\";s:5:\"13129\";s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";s:10:\"1582092645\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-menu-photography/?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:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"633\";s:11:\"trend_index\";s:3:\"522\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:327;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:\"118\";s:11:\"trend_index\";s:2:\"61\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:328;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:\"214\";s:11:\"trend_index\";s:3:\"333\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:329;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:\"194\";s:11:\"trend_index\";s:3:\"273\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:330;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:\"170\";s:11:\"trend_index\";s:3:\"248\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:331;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:\"193\";s:11:\"trend_index\";s:3:\"295\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:332;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:\"137\";s:11:\"trend_index\";s:3:\"203\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:333;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:\"231\";s:11:\"trend_index\";s:3:\"208\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:334;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:\"394\";s:11:\"trend_index\";s:3:\"405\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:335;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:\"141\";s:11:\"trend_index\";s:3:\"164\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:336;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:\"174\";s:11:\"trend_index\";s:3:\"196\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:337;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:\"361\";s:11:\"trend_index\";s:3:\"344\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:338;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:\"139\";s:11:\"trend_index\";s:3:\"168\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:339;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:\"261\";s:11:\"trend_index\";s:3:\"329\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:340;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:\"284\";s:11:\"trend_index\";s:3:\"369\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:341;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:\"380\";s:11:\"trend_index\";s:3:\"449\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:342;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:\"248\";s:11:\"trend_index\";s:3:\"311\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:343;a:14:{s:2:\"id\";s:4:\"9611\";s:5:\"title\";s:16:\"Hello Bar | Sale\";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:\"562\";s:11:\"trend_index\";s:3:\"492\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:344;a:14:{s:2:\"id\";s:5:\"13274\";s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";s:10:\"1586148723\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/interior-design-single-project/?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:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"650\";s:11:\"trend_index\";s:3:\"429\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:345;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:\"189\";s:11:\"trend_index\";s:3:\"231\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:346;a:14:{s:2:\"id\";s:4:\"9622\";s:5:\"title\";s:19:\"Classic | Promotion\";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:\"564\";s:11:\"trend_index\";s:3:\"496\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:347;a:14:{s:2:\"id\";s:5:\"13267\";s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";s:10:\"1586148728\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/interior-design-single-news/?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:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"598\";s:11:\"trend_index\";s:3:\"264\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:348;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:\"333\";s:11:\"trend_index\";s:3:\"437\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:349;a:14:{s:2:\"id\";s:4:\"9631\";s:5:\"title\";s:38:\"Slide-in | Sale | Register | Subscribe\";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:3:\"584\";s:11:\"trend_index\";s:3:\"566\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:350;a:14:{s:2:\"id\";s:5:\"13259\";s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";s:10:\"1586148733\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-news-archive/?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:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"582\";s:11:\"trend_index\";s:3:\"210\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:351;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:\"279\";s:11:\"trend_index\";s:3:\"281\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:352;a:14:{s:2:\"id\";s:5:\"13251\";s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";s:10:\"1586148737\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/interior-design-404/?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:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"681\";s:11:\"trend_index\";s:3:\"538\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:353;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:\"435\";s:11:\"trend_index\";s:3:\"580\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:354;a:14:{s:2:\"id\";s:5:\"13244\";s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";s:10:\"1586148742\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/interior-design-footer/?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:39:\"[\"business\",\"footer\",\"interior design\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"532\";s:11:\"trend_index\";s:3:\"198\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:355;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:\"552\";s:11:\"trend_index\";s:3:\"625\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:356;a:14:{s:2:\"id\";s:4:\"9662\";s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";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:3:\"608\";s:11:\"trend_index\";s:3:\"685\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:357;a:14:{s:2:\"id\";s:5:\"13236\";s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Header.png\";s:12:\"tmpl_created\";s:10:\"1586148746\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/interior-design-header/?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:39:\"[\"business\",\"header\",\"interior design\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"345\";s:11:\"trend_index\";s:2:\"39\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:358;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:\"341\";s:11:\"trend_index\";s:3:\"364\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:359;a:14:{s:2:\"id\";s:5:\"13281\";s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";s:10:\"1586148801\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?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:19:\"[\"interior design\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"683\";s:11:\"trend_index\";s:3:\"652\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:360;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:\"485\";s:11:\"trend_index\";s:3:\"544\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:361;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:\"277\";s:11:\"trend_index\";s:3:\"271\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:362;a:14:{s:2:\"id\";s:4:\"9690\";s:5:\"title\";s:17:\"Classic | Contact\";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:\"386\";s:11:\"trend_index\";s:3:\"483\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:363;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:\"417\";s:11:\"trend_index\";s:3:\"439\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:364;a:14:{s:2:\"id\";s:4:\"9699\";s:5:\"title\";s:33:\"Classic | Contact | Gym | Fitness\";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:\"442\";s:11:\"trend_index\";s:3:\"452\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:365;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:\"414\";s:11:\"trend_index\";s:3:\"534\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:366;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:\"497\";s:11:\"trend_index\";s:3:\"516\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:367;a:14:{s:2:\"id\";s:4:\"9571\";s:5:\"title\";s:14:\"Fly In | Login\";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:\"1547726151\";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:\"571\";s:11:\"trend_index\";s:3:\"586\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:368;a:14:{s:2:\"id\";s:5:\"13395\";s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";s:10:\"1587474673\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-start-lesson/?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:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"668\";s:11:\"trend_index\";s:3:\"392\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:369;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:\"528\";s:11:\"trend_index\";s:3:\"579\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:370;a:14:{s:2:\"id\";s:5:\"13387\";s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";s:10:\"1587474682\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/online-course-end-lesson/?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:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"672\";s:11:\"trend_index\";s:3:\"504\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:371;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:\"198\";s:11:\"trend_index\";s:3:\"239\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:372;a:14:{s:2:\"id\";s:5:\"13378\";s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Header.jpg\";s:12:\"tmpl_created\";s:10:\"1587474693\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/online-course-header/?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:38:\"[\"Course Online\",\"Education\",\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"595\";s:11:\"trend_index\";s:3:\"241\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:373;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:\"388\";s:11:\"trend_index\";s:3:\"447\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:374;a:14:{s:2:\"id\";s:4:\"9740\";s:5:\"title\";s:25:\"Classic | Promotion | App\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small.png\";s:12:\"tmpl_created\";s:10:\"1547822836\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/classic-promotion-app/?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:\"560\";s:11:\"trend_index\";s:3:\"619\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:375;a:14:{s:2:\"id\";s:5:\"13369\";s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";s:10:\"1587474701\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/online-course-footer/?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:38:\"[\"Course Online\",\"Education\",\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"591\";s:11:\"trend_index\";s:3:\"172\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:376;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:\"319\";s:11:\"trend_index\";s:3:\"363\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:377;a:14:{s:2:\"id\";s:5:\"13361\";s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";s:10:\"1587474710\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/online-course-404/?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:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"679\";s:11:\"trend_index\";s:3:\"435\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:378;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:\"547\";s:11:\"trend_index\";s:3:\"582\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:379;a:14:{s:2:\"id\";s:4:\"9762\";s:5:\"title\";s:36:\"Classic | Register | Subscribe | Spa\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small_classic.png\";s:12:\"tmpl_created\";s:10:\"1547824145\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-register-subscribe-spa/?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:\"420\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:380;a:14:{s:2:\"id\";s:5:\"13413\";s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";s:10:\"1587474761\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/classic-contact-online-course/?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:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"647\";s:11:\"trend_index\";s:3:\"362\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:381;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:\"478\";s:11:\"trend_index\";s:3:\"500\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:382;a:14:{s:2:\"id\";s:4:\"9772\";s:5:\"title\";s:27:\"Hello bar | Promotion | App\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/app_hello_small.png\";s:12:\"tmpl_created\";s:10:\"1547824279\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/hello-bar-promotion-app/?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:\"659\";s:11:\"trend_index\";s:3:\"636\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:383;a:14:{s:2:\"id\";s:5:\"13402\";s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";s:10:\"1587474772\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-cta-online-course/?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:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"662\";s:11:\"trend_index\";s:3:\"462\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:384;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:\"397\";s:11:\"trend_index\";s:3:\"472\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:385;a:14:{s:2:\"id\";s:5:\"13422\";s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";s:10:\"1587474782\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-menu-online-course/?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:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"637\";s:11:\"trend_index\";s:3:\"404\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"1\";}i:386;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:\"109\";s:11:\"trend_index\";s:2:\"60\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:387;a:14:{s:2:\"id\";s:4:\"9793\";s:5:\"title\";s:13:\"Fly In | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_black_small.png\";s:12:\"tmpl_created\";s:10:\"1547831151\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/popups/fly-in-sale/?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:\"600\";s:11:\"trend_index\";s:3:\"620\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:388;a:14:{s:2:\"id\";s:5:\"13621\";s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";s:10:\"1589893137\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/barbershop-single-post/?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:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"692\";s:11:\"trend_index\";s:3:\"672\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:389;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:\"328\";s:11:\"trend_index\";s:3:\"353\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:390;a:14:{s:2:\"id\";s:5:\"13612\";s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Header-Small.jpg\";s:12:\"tmpl_created\";s:10:\"1589893142\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/barbershop-header/?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:37:\"[\"Barber Shop\",\"Barbershop\",\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"661\";s:11:\"trend_index\";s:2:\"95\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:391;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:\"291\";s:11:\"trend_index\";s:3:\"387\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:392;a:14:{s:2:\"id\";s:5:\"13604\";s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";s:10:\"1589893147\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/barbershop-footer/?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:37:\"[\"Barber Shop\",\"Barbershop\",\"footer\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"685\";s:11:\"trend_index\";s:3:\"423\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:393;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:\"502\";s:11:\"trend_index\";s:3:\"616\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:394;a:14:{s:2:\"id\";s:5:\"13528\";s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";s:10:\"1589893152\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/barbershop-404/?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:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"693\";s:11:\"trend_index\";s:3:\"588\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:395;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:\"416\";s:11:\"trend_index\";s:3:\"559\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:396;a:14:{s:2:\"id\";s:4:\"9836\";s:5:\"title\";s:21:\"Classic | Login | Pop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/login_b_small.png\";s:12:\"tmpl_created\";s:10:\"1547835635\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/classic-login/?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:\"568\";s:11:\"trend_index\";s:3:\"624\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:397;a:14:{s:2:\"id\";s:5:\"13518\";s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";s:10:\"1589893157\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/barbershop-archive/?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:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"690\";s:11:\"trend_index\";s:3:\"589\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:398;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:\"583\";s:11:\"trend_index\";s:3:\"609\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:399;a:14:{s:2:\"id\";s:4:\"9847\";s:5:\"title\";s:25:\"Fly In | Promotion | Lego\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_in_promotion_tro.png\";s:12:\"tmpl_created\";s:10:\"1547836956\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-promotion/?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:\"648\";s:11:\"trend_index\";s:3:\"671\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:400;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:\"467\";s:11:\"trend_index\";s:3:\"577\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:401;a:14:{s:2:\"id\";s:4:\"9858\";s:5:\"title\";s:27:\"Slide In | Promotion | Wine\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_promotion_wine_small.png\";s:12:\"tmpl_created\";s:10:\"1547837100\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-promotion/?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:\"673\";s:11:\"trend_index\";s:3:\"679\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:402;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:\"484\";s:11:\"trend_index\";s:3:\"454\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:403;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:\"267\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:404;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:\"546\";s:11:\"trend_index\";s:3:\"573\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:405;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:\"238\";s:11:\"trend_index\";s:3:\"287\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:406;a:14:{s:2:\"id\";s:5:\"13538\";s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";s:10:\"1589893364\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?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:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"691\";s:11:\"trend_index\";s:3:\"670\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:407;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:\"327\";s:11:\"trend_index\";s:3:\"394\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:408;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:\"236\";s:11:\"trend_index\";s:3:\"240\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:409;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:\"185\";s:11:\"trend_index\";s:3:\"243\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:410;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:\"387\";s:11:\"trend_index\";s:3:\"361\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:411;a:14:{s:2:\"id\";s:4:\"9944\";s:5:\"title\";s:33:\"Slide In | Promotion | Headphones\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_head_small.png\";s:12:\"tmpl_created\";s:10:\"1547841939\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-2/?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:\"651\";s:11:\"trend_index\";s:3:\"611\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:412;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:\"151\";s:11:\"trend_index\";s:3:\"146\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:413;a:14:{s:2:\"id\";s:4:\"9955\";s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_login_lock_small.png\";s:12:\"tmpl_created\";s:10:\"1547842065\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/fly-in-login/?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:\"521\";s:11:\"trend_index\";s:3:\"495\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:414;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:\"222\";s:11:\"trend_index\";s:3:\"218\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:415;a:14:{s:2:\"id\";s:4:\"9965\";s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_moon_small.png\";s:12:\"tmpl_created\";s:10:\"1547842174\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-2/?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:\"524\";s:11:\"trend_index\";s:3:\"575\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:416;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:\"115\";s:11:\"trend_index\";s:2:\"38\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:417;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:\"233\";s:11:\"trend_index\";s:3:\"197\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:418;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:2:\"83\";s:11:\"trend_index\";s:2:\"69\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:419;a:14:{s:2:\"id\";s:4:\"9995\";s:5:\"title\";s:27:\"Slide In | Sale | Christmas\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_christmas_small.png\";s:12:\"tmpl_created\";s:10:\"1547844802\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-christmas/?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:\"675\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:420;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:\"190\";s:11:\"trend_index\";s:3:\"137\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:421;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:\"57\";s:11:\"trend_index\";s:2:\"27\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:422;a:14:{s:2:\"id\";s:5:\"10016\";s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Hello-Bar_Promotion_bag_small.png\";s:12:\"tmpl_created\";s:10:\"1547845062\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/hello-bar-sale/?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:\"682\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:423;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:\"134\";s:11:\"trend_index\";s:3:\"141\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:424;a:14:{s:2:\"id\";s:5:\"10026\";s:5:\"title\";s:46:\"Classic | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_register_small.png\";s:12:\"tmpl_created\";s:10:\"1547845205\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-3/?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:\"540\";s:11:\"trend_index\";s:3:\"587\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:425;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:\"230\";s:11:\"trend_index\";s:3:\"235\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:426;a:14:{s:2:\"id\";s:5:\"10036\";s:5:\"title\";s:43:\"Full Screen | Sale | Promotion | Headphones\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_sale_head_small.png\";s:12:\"tmpl_created\";s:10:\"1547845409\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-sale-promotion/?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:3:\"558\";s:11:\"trend_index\";s:3:\"659\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:427;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:\"209\";s:11:\"trend_index\";s:3:\"285\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:428;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:\"412\";s:11:\"trend_index\";s:3:\"438\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:429;a:14:{s:2:\"id\";s:5:\"10057\";s:5:\"title\";s:48:\"Hello Bar | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/hello-bar_register_sport_small.png\";s:12:\"tmpl_created\";s:10:\"1547847938\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/hello-bar-register-subscribe/?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:\"665\";s:11:\"trend_index\";s:3:\"664\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:430;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:\"302\";s:11:\"trend_index\";s:3:\"393\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:431;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:\"482\";s:11:\"trend_index\";s:3:\"541\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:432;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:3:\"105\";s:11:\"trend_index\";s:3:\"119\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:433;a:14:{s:2:\"id\";s:5:\"10087\";s:5:\"title\";s:25:\"Full Screen | Login | Spa\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2019/01/full-screen_login_spa_small.png\";s:12:\"tmpl_created\";s:10:\"1547848301\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-login-spa/?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:3:\"576\";s:11:\"trend_index\";s:3:\"657\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:434;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:\"276\";s:11:\"trend_index\";s:3:\"282\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:435;a:14:{s:2:\"id\";s:5:\"10097\";s:5:\"title\";s:37:\"Classic | Register | Subscribe | Lego\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_lego_small.png\";s:12:\"tmpl_created\";s:10:\"1547848411\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-4/?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:\"609\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:436;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:1:\"1\";s:16:\"popularity_index\";s:1:\"4\";s:11:\"trend_index\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:437;a:14:{s:2:\"id\";s:4:\"9816\";s:5:\"title\";s:30:\"Classic | Sale | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_sale_sport_small.png\";s:12:\"tmpl_created\";s:10:\"1547991876\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-2/?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:\"1\";s:16:\"popularity_index\";s:3:\"624\";s:11:\"trend_index\";s:3:\"635\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:438;a:14:{s:2:\"id\";s:4:\"9602\";s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";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:\"1\";s:16:\"popularity_index\";s:3:\"551\";s:11:\"trend_index\";s:3:\"488\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:439;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:1:\"2\";s:16:\"popularity_index\";s:1:\"1\";s:11:\"trend_index\";s:1:\"2\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:440;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:1:\"3\";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:441;a:14:{s:2:\"id\";s:5:\"10277\";s:5:\"title\";s:36:\"Bottom Bar | Promotion | Sale | Book\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/book_small.png\";s:12:\"tmpl_created\";s:10:\"1548055999\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/bottom-bar-promotion-book/?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:\"3\";s:16:\"popularity_index\";s:3:\"639\";s:11:\"trend_index\";s:3:\"627\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:442;a:14:{s:2:\"id\";s:5:\"11241\";s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";s:10:\"1564643043\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?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:\"3\";s:16:\"popularity_index\";s:3:\"384\";s:11:\"trend_index\";s:3:\"291\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:443;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:1:\"4\";s:16:\"popularity_index\";s:1:\"3\";s:11:\"trend_index\";s:1:\"3\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:444;a:14:{s:2:\"id\";s:4:\"9903\";s:5:\"title\";s:34:\"Bottom Bar | Promotion | Olive Oil\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom-bar_promotion_olive_small.png\";s:12:\"tmpl_created\";s:10:\"1547838896\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-promotion/?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:\"4\";s:16:\"popularity_index\";s:3:\"664\";s:11:\"trend_index\";s:3:\"643\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:445;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:1:\"5\";s:16:\"popularity_index\";s:1:\"8\";s:11:\"trend_index\";s:1:\"5\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:446;a:14:{s:2:\"id\";s:5:\"10549\";s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/com_small.png\";s:12:\"tmpl_created\";s:10:\"1547967595\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/bottom-bar-register-subscribe/?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:\"6\";s:16:\"popularity_index\";s:3:\"632\";s:11:\"trend_index\";s:3:\"569\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:447;a:14:{s:2:\"id\";s:5:\"13479\";s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";s:10:\"1589893275\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/barbershop-home/?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:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";s:1:\"6\";s:16:\"popularity_index\";s:3:\"684\";s:11:\"trend_index\";s:3:\"272\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:448;a:14:{s:2:\"id\";s:5:\"13503\";s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";s:10:\"1589893289\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/barbershop-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:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";s:1:\"7\";s:16:\"popularity_index\";s:3:\"686\";s:11:\"trend_index\";s:3:\"428\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:449;a:14:{s:2:\"id\";s:5:\"13548\";s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";s:10:\"1589893298\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/barbershop-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:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";s:1:\"8\";s:16:\"popularity_index\";s:3:\"687\";s:11:\"trend_index\";s:3:\"467\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:450;a:14:{s:2:\"id\";s:5:\"10529\";s:5:\"title\";s:36:\"Classic | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/icon_small.png\";s:12:\"tmpl_created\";s:10:\"1548046309\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-announcement/?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:\"9\";s:16:\"popularity_index\";s:3:\"441\";s:11:\"trend_index\";s:3:\"477\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:451;a:14:{s:2:\"id\";s:5:\"13560\";s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";s:10:\"1589893307\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/barbershop-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:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";s:1:\"9\";s:16:\"popularity_index\";s:3:\"688\";s:11:\"trend_index\";s:3:\"473\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:452;a:14:{s:2:\"id\";s:5:\"13587\";s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";s:10:\"1589893315\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/barbershop-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:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";s:2:\"10\";s:16:\"popularity_index\";s:3:\"689\";s:11:\"trend_index\";s:3:\"507\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:453;a:14:{s:2:\"id\";s:5:\"13307\";s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";s:10:\"1587474541\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/online-course-home/?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:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";s:2:\"11\";s:16:\"popularity_index\";s:3:\"448\";s:11:\"trend_index\";s:2:\"93\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:454;a:14:{s:2:\"id\";s:5:\"13328\";s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";s:10:\"1587474558\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/online-course-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:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";s:2:\"12\";s:16:\"popularity_index\";s:3:\"597\";s:11:\"trend_index\";s:3:\"321\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:455;a:14:{s:2:\"id\";s:5:\"13338\";s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";s:10:\"1587474574\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/online-course-course-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:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";s:2:\"13\";s:16:\"popularity_index\";s:3:\"510\";s:11:\"trend_index\";s:3:\"159\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:456;a:14:{s:2:\"id\";s:5:\"13352\";s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";s:10:\"1587474591\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/online-course-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:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";s:2:\"14\";s:16:\"popularity_index\";s:3:\"613\";s:11:\"trend_index\";s:3:\"342\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:457;a:14:{s:2:\"id\";s:5:\"13187\";s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";s:10:\"1586148661\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/interior-design-home-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:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";s:2:\"15\";s:16:\"popularity_index\";s:3:\"475\";s:11:\"trend_index\";s:3:\"140\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:458;a:14:{s:2:\"id\";s:5:\"13199\";s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";s:10:\"1586148666\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/interior-design-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:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";s:2:\"16\";s:16:\"popularity_index\";s:3:\"472\";s:11:\"trend_index\";s:3:\"123\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:459;a:14:{s:2:\"id\";s:5:\"10413\";s:5:\"title\";s:28:\"Classic | Content Lock | Pop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/hot_small.png\";s:12:\"tmpl_created\";s:10:\"1547961774\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-content-lock/?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:2:\"17\";s:16:\"popularity_index\";s:3:\"652\";s:11:\"trend_index\";s:3:\"683\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:460;a:14:{s:2:\"id\";s:5:\"13214\";s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";s:10:\"1586148672\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/interior-design-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:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";s:2:\"17\";s:16:\"popularity_index\";s:3:\"516\";s:11:\"trend_index\";s:3:\"135\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:461;a:14:{s:2:\"id\";s:5:\"13229\";s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";s:10:\"1586148677\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/interior-design-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:30:\"[\"business\",\"interior design\"]\";s:10:\"menu_order\";s:2:\"18\";s:16:\"popularity_index\";s:3:\"534\";s:11:\"trend_index\";s:3:\"179\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:462;a:14:{s:2:\"id\";s:5:\"10223\";s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/welcome_small.png\";s:12:\"tmpl_created\";s:10:\"1547887343\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-4/?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:2:\"19\";s:16:\"popularity_index\";s:3:\"458\";s:11:\"trend_index\";s:3:\"493\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:463;a:14:{s:2:\"id\";s:5:\"10559\";s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_small.png\";s:12:\"tmpl_created\";s:10:\"1547967711\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/bottom-bar-register-subscribe-2/?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:2:\"19\";s:16:\"popularity_index\";s:3:\"614\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:464;a:14:{s:2:\"id\";s:5:\"12948\";s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";s:10:\"1582093442\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/photography-home-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:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"19\";s:16:\"popularity_index\";s:3:\"324\";s:11:\"trend_index\";s:3:\"130\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:465;a:14:{s:2:\"id\";s:5:\"10403\";s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_small.png\";s:12:\"tmpl_created\";s:10:\"1548056371\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-5/?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:2:\"20\";s:16:\"popularity_index\";s:3:\"559\";s:11:\"trend_index\";s:3:\"592\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:466;a:14:{s:2:\"id\";s:5:\"12798\";s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";s:10:\"1582093446\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/photography-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:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"20\";s:16:\"popularity_index\";s:3:\"506\";s:11:\"trend_index\";s:3:\"313\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:467;a:14:{s:2:\"id\";s:5:\"12868\";s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";s:10:\"1582093450\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/photography-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:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"21\";s:16:\"popularity_index\";s:3:\"539\";s:11:\"trend_index\";s:3:\"478\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:468;a:14:{s:2:\"id\";s:4:\"9913\";s:5:\"title\";s:27:\"Classic | Login | Christmas\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/log_small.png\";s:12:\"tmpl_created\";s:10:\"1547841430\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-2/?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:2:\"21\";s:16:\"popularity_index\";s:3:\"522\";s:11:\"trend_index\";s:3:\"606\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:469;a:14:{s:2:\"id\";s:5:\"13056\";s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";s:10:\"1582093454\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/photography-wildlife/?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:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"22\";s:16:\"popularity_index\";s:3:\"557\";s:11:\"trend_index\";s:3:\"327\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:470;a:14:{s:2:\"id\";s:5:\"12922\";s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";s:10:\"1582093457\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-glowing-jellyfish/?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:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"23\";s:16:\"popularity_index\";s:3:\"590\";s:11:\"trend_index\";s:3:\"442\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:471;a:14:{s:2:\"id\";s:5:\"12875\";s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";s:10:\"1582093461\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-fluttering-birds/?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:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"24\";s:16:\"popularity_index\";s:3:\"640\";s:11:\"trend_index\";s:3:\"585\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:472;a:14:{s:2:\"id\";s:5:\"12962\";s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";s:10:\"1582093465\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/photography-nature/?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:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"25\";s:16:\"popularity_index\";s:3:\"579\";s:11:\"trend_index\";s:3:\"446\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:473;a:14:{s:2:\"id\";s:5:\"12833\";s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";s:10:\"1582093469\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-blossoming-flowers/?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:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"26\";s:16:\"popularity_index\";s:3:\"589\";s:11:\"trend_index\";s:3:\"409\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:474;a:14:{s:2:\"id\";s:4:\"9592\";s:5:\"title\";s:26:\"Classic | Promotion | Sale\";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:2:\"26\";s:16:\"popularity_index\";s:3:\"587\";s:11:\"trend_index\";s:3:\"622\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:475;a:14:{s:2:\"id\";s:5:\"10210\";s:5:\"title\";s:29:\"Classic | Promotion | Webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547886103\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-promotion-webinar/?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:2:\"27\";s:16:\"popularity_index\";s:3:\"678\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:476;a:14:{s:2:\"id\";s:5:\"12898\";s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";s:10:\"1582093473\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-forest-mushrooms/?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:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"27\";s:16:\"popularity_index\";s:3:\"630\";s:11:\"trend_index\";s:3:\"555\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:477;a:14:{s:2:\"id\";s:5:\"12994\";s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";s:10:\"1582093477\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/photography-pets/?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:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"28\";s:16:\"popularity_index\";s:3:\"592\";s:11:\"trend_index\";s:3:\"455\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:478;a:14:{s:2:\"id\";s:5:\"12805\";s:5:\"title\";s:38:\"Photography &#8211; B&#038;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";s:10:\"1582093481\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/photography-bw-portraits/?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:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"29\";s:16:\"popularity_index\";s:3:\"644\";s:11:\"trend_index\";s:3:\"505\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:479;a:14:{s:2:\"id\";s:5:\"13031\";s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";s:10:\"1582093484\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-vivid-parrots/?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:27:\"[\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"30\";s:16:\"popularity_index\";s:3:\"610\";s:11:\"trend_index\";s:3:\"433\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:480;a:14:{s:2:\"id\";s:5:\"10047\";s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/yellow_small.png\";s:12:\"tmpl_created\";s:10:\"1547847757\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-3/?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:2:\"30\";s:16:\"popularity_index\";s:3:\"491\";s:11:\"trend_index\";s:3:\"551\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:481;a:14:{s:2:\"id\";s:5:\"12621\";s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";s:10:\"1579060604\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/magazine-home-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:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";s:2:\"31\";s:16:\"popularity_index\";s:3:\"266\";s:11:\"trend_index\";s:2:\"99\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:482;a:14:{s:2:\"id\";s:4:\"9879\";s:5:\"title\";s:38:\"Classic | Register | Subscribe | Leads\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/dog_small.png\";s:12:\"tmpl_created\";s:10:\"1547838416\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-register-subscribe/?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:2:\"31\";s:16:\"popularity_index\";s:3:\"594\";s:11:\"trend_index\";s:3:\"608\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:483;a:14:{s:2:\"id\";s:5:\"12352\";s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";s:10:\"1575960464\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/travel-home-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:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:2:\"32\";s:16:\"popularity_index\";s:3:\"311\";s:11:\"trend_index\";s:3:\"200\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:484;a:14:{s:2:\"id\";s:5:\"12400\";s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";s:10:\"1575960441\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/travel-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:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:2:\"33\";s:16:\"popularity_index\";s:3:\"423\";s:11:\"trend_index\";s:3:\"320\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:485;a:14:{s:2:\"id\";s:5:\"12479\";s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";s:10:\"1575960474\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/travel-tours/?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:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:2:\"34\";s:16:\"popularity_index\";s:3:\"499\";s:11:\"trend_index\";s:3:\"412\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:486;a:14:{s:2:\"id\";s:5:\"10297\";s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/s_yellow_small.png\";s:12:\"tmpl_created\";s:10:\"1548056099\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-4/?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:2:\"35\";s:16:\"popularity_index\";s:3:\"536\";s:11:\"trend_index\";s:3:\"596\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:487;a:14:{s:2:\"id\";s:5:\"12466\";s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";s:10:\"1575960469\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-testimonials/?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:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:2:\"35\";s:16:\"popularity_index\";s:3:\"512\";s:11:\"trend_index\";s:3:\"384\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:488;a:14:{s:2:\"id\";s:5:\"10393\";s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small.png\";s:12:\"tmpl_created\";s:10:\"1548056682\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-5/?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:2:\"36\";s:16:\"popularity_index\";s:3:\"602\";s:11:\"trend_index\";s:3:\"607\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:489;a:14:{s:2:\"id\";s:5:\"12443\";s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";s:10:\"1575960459\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/travel-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:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:2:\"36\";s:16:\"popularity_index\";s:3:\"464\";s:11:\"trend_index\";s:3:\"316\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:490;a:14:{s:2:\"id\";s:5:\"12431\";s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";s:10:\"1575960453\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/travel-faq/?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:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:2:\"37\";s:16:\"popularity_index\";s:3:\"515\";s:11:\"trend_index\";s:3:\"400\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:491;a:14:{s:2:\"id\";s:5:\"10579\";s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/sale1_small.png\";s:12:\"tmpl_created\";s:10:\"1547967887\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-8/?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:2:\"38\";s:16:\"popularity_index\";s:3:\"628\";s:11:\"trend_index\";s:3:\"631\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:492;a:14:{s:2:\"id\";s:5:\"12421\";s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";s:10:\"1575960445\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-contact-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:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";s:2:\"38\";s:16:\"popularity_index\";s:3:\"529\";s:11:\"trend_index\";s:3:\"494\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:493;a:14:{s:2:\"id\";s:5:\"11763\";s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";s:10:\"1569428959\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/portfolio-home-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:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"39\";s:16:\"popularity_index\";s:3:\"297\";s:11:\"trend_index\";s:3:\"256\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:494;a:14:{s:2:\"id\";s:5:\"11781\";s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";s:10:\"1569428955\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/portfolio-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:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"40\";s:16:\"popularity_index\";s:3:\"364\";s:11:\"trend_index\";s:3:\"340\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:495;a:14:{s:2:\"id\";s:5:\"11793\";s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";s:10:\"1569428951\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/portfolio-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:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"41\";s:16:\"popularity_index\";s:3:\"418\";s:11:\"trend_index\";s:3:\"351\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:496;a:14:{s:2:\"id\";s:5:\"11800\";s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";s:10:\"1569428946\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/portfolio-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:34:\"[\"creative portfolio\",\"portfolio\"]\";s:10:\"menu_order\";s:2:\"42\";s:16:\"popularity_index\";s:3:\"465\";s:11:\"trend_index\";s:3:\"415\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:497;a:14:{s:2:\"id\";s:5:\"10180\";s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_small.png\";s:12:\"tmpl_created\";s:10:\"1548045309\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-3/?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:2:\"43\";s:16:\"popularity_index\";s:3:\"603\";s:11:\"trend_index\";s:3:\"613\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:498;a:14:{s:2:\"id\";s:5:\"11163\";s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";s:10:\"1564641877\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/digital-agency-home-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:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:2:\"43\";s:16:\"popularity_index\";s:2:\"81\";s:11:\"trend_index\";s:2:\"42\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:499;a:14:{s:2:\"id\";s:5:\"11129\";s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";s:10:\"1564641889\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/digital-agency-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:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:2:\"44\";s:16:\"popularity_index\";s:3:\"212\";s:11:\"trend_index\";s:3:\"125\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:500;a:14:{s:2:\"id\";s:5:\"11074\";s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";s:10:\"1564641872\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/digital-agency-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:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:2:\"45\";s:16:\"popularity_index\";s:3:\"173\";s:11:\"trend_index\";s:3:\"108\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:501;a:14:{s:2:\"id\";s:4:\"9731\";s:5:\"title\";s:26:\"Classic | Sale | Promotion\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/icecream_small.png\";s:12:\"tmpl_created\";s:10:\"1547976166\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/classic-sale/?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:2:\"46\";s:16:\"popularity_index\";s:3:\"570\";s:11:\"trend_index\";s:3:\"633\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:502;a:14:{s:2:\"id\";s:5:\"11056\";s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";s:10:\"1564641867\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/digital-agency-social-media/?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:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:2:\"46\";s:16:\"popularity_index\";s:3:\"299\";s:11:\"trend_index\";s:3:\"207\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:503;a:14:{s:2:\"id\";s:5:\"11094\";s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";s:10:\"1564641885\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/digital-agency-clients/?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:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:2:\"47\";s:16:\"popularity_index\";s:3:\"403\";s:11:\"trend_index\";s:3:\"425\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:504;a:14:{s:2:\"id\";s:5:\"11034\";s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";s:10:\"1564641881\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/contact-digital-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:30:\"[\"Digital Agency\",\"marketing\"]\";s:10:\"menu_order\";s:2:\"48\";s:16:\"popularity_index\";s:3:\"213\";s:11:\"trend_index\";s:3:\"142\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:505;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:\"49\";s:16:\"popularity_index\";s:1:\"9\";s:11:\"trend_index\";s:2:\"18\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:506;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:\"50\";s:16:\"popularity_index\";s:3:\"205\";s:11:\"trend_index\";s:3:\"222\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:507;a:14:{s:2:\"id\";s:5:\"12143\";s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";s:10:\"1572847069\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/law-firm-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:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:2:\"50\";s:16:\"popularity_index\";s:3:\"406\";s:11:\"trend_index\";s:3:\"305\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:508;a:14:{s:2:\"id\";s:5:\"12091\";s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";s:10:\"1572847113\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/law-firm-team/?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:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:2:\"50\";s:16:\"popularity_index\";s:3:\"392\";s:11:\"trend_index\";s:3:\"314\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:509;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:\"50\";s:16:\"popularity_index\";s:1:\"6\";s:11:\"trend_index\";s:2:\"11\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:510;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:\"155\";s:11:\"trend_index\";s:3:\"238\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:511;a:14:{s:2:\"id\";s:5:\"11572\";s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";s:10:\"1567392934\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-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:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:2:\"51\";s:16:\"popularity_index\";s:3:\"549\";s:11:\"trend_index\";s:3:\"475\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:512;a:14:{s:2:\"id\";s:5:\"12155\";s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";s:10:\"1572847054\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/law-firm-home-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:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:2:\"51\";s:16:\"popularity_index\";s:3:\"251\";s:11:\"trend_index\";s:3:\"156\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:513;a:14:{s:2:\"id\";s:5:\"12133\";s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";s:10:\"1572847078\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-careers/?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:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:2:\"51\";s:16:\"popularity_index\";s:3:\"566\";s:11:\"trend_index\";s:3:\"410\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:514;a:14:{s:2:\"id\";s:5:\"12080\";s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";s:10:\"1572847120\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-partner/?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:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:2:\"51\";s:16:\"popularity_index\";s:3:\"550\";s:11:\"trend_index\";s:3:\"436\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:515;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:\"52\";s:16:\"popularity_index\";s:3:\"158\";s:11:\"trend_index\";s:3:\"191\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:516;a:14:{s:2:\"id\";s:5:\"11506\";s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";s:10:\"1567392930\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-classes/?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:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:2:\"52\";s:16:\"popularity_index\";s:3:\"525\";s:11:\"trend_index\";s:3:\"530\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:517;a:14:{s:2:\"id\";s:5:\"12124\";s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";s:10:\"1572847096\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/law-firm-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:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:2:\"52\";s:16:\"popularity_index\";s:3:\"444\";s:11:\"trend_index\";s:3:\"322\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:518;a:14:{s:2:\"id\";s:5:\"12044\";s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";s:10:\"1572847130\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-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:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:2:\"52\";s:16:\"popularity_index\";s:3:\"459\";s:11:\"trend_index\";s:3:\"326\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:519;a:14:{s:2:\"id\";s:5:\"11536\";s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";s:10:\"1567392927\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-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:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:2:\"53\";s:16:\"popularity_index\";s:3:\"573\";s:11:\"trend_index\";s:3:\"422\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:520;a:14:{s:2:\"id\";s:5:\"11545\";s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";s:10:\"1567392943\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/gym-home-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:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:2:\"53\";s:16:\"popularity_index\";s:3:\"322\";s:11:\"trend_index\";s:3:\"407\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:521;a:14:{s:2:\"id\";s:5:\"12116\";s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";s:10:\"1572847105\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/law-firm-service/?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:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";s:2:\"53\";s:16:\"popularity_index\";s:3:\"477\";s:11:\"trend_index\";s:3:\"331\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:522;a:14:{s:2:\"id\";s:5:\"11563\";s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";s:10:\"1567392923\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-pricing/?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:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:2:\"54\";s:16:\"popularity_index\";s:3:\"537\";s:11:\"trend_index\";s:3:\"523\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:523;a:14:{s:2:\"id\";s:5:\"11478\";s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";s:10:\"1567392939\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:99:\"https://library.elementor.com/gym-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:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:2:\"54\";s:16:\"popularity_index\";s:3:\"457\";s:11:\"trend_index\";s:3:\"491\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:524;a:14:{s:2:\"id\";s:5:\"10005\";s:5:\"title\";s:38:\"Fly In | Promotion | Spa | Body Lotion\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/Flyin_lotion_small.png\";s:12:\"tmpl_created\";s:10:\"1547844909\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-promotion-2/?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:2:\"54\";s:16:\"popularity_index\";s:3:\"654\";s:11:\"trend_index\";s:3:\"665\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:525;a:14:{s:2:\"id\";s:5:\"10424\";s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/flower_small.png\";s:12:\"tmpl_created\";s:10:\"1547961866\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-4/?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:2:\"55\";s:16:\"popularity_index\";s:3:\"586\";s:11:\"trend_index\";s:3:\"638\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:526;a:14:{s:2:\"id\";s:5:\"11528\";s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";s:10:\"1567392917\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/gym-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:7:\"[\"Gym\"]\";s:10:\"menu_order\";s:2:\"55\";s:16:\"popularity_index\";s:3:\"500\";s:11:\"trend_index\";s:3:\"401\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:527;a:14:{s:2:\"id\";s:4:\"9975\";s:5:\"title\";s:24:\"Fly In | Promotion | App\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_webinar_app_small.png\";s:12:\"tmpl_created\";s:10:\"1547842284\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-promotion-webinar/?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:2:\"55\";s:16:\"popularity_index\";s:3:\"674\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:528;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:\"56\";s:16:\"popularity_index\";s:2:\"24\";s:11:\"trend_index\";s:2:\"74\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:529;a:14:{s:2:\"id\";s:5:\"10067\";s:5:\"title\";s:31:\"Fly In | Announcement | Cookies\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/fly-in_cookie_yellow_small.png\";s:12:\"tmpl_created\";s:10:\"1547848075\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/fly-in-announcement/?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:2:\"56\";s:16:\"popularity_index\";s:3:\"533\";s:11:\"trend_index\";s:3:\"521\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:530;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:\"57\";s:16:\"popularity_index\";s:3:\"252\";s:11:\"trend_index\";s:3:\"356\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:531;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:\"58\";s:16:\"popularity_index\";s:3:\"169\";s:11:\"trend_index\";s:3:\"296\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:532;a:14:{s:2:\"id\";s:5:\"10329\";s:5:\"title\";s:25:\"Fly In | Sale | Promotion\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/organic_small.png\";s:12:\"tmpl_created\";s:10:\"1547893478\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-sale-promotion/?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:2:\"59\";s:16:\"popularity_index\";s:3:\"680\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:533;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:\"59\";s:16:\"popularity_index\";s:3:\"243\";s:11:\"trend_index\";s:3:\"458\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:534;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:\"60\";s:16:\"popularity_index\";s:3:\"293\";s:11:\"trend_index\";s:3:\"349\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:535;a:14:{s:2:\"id\";s:4:\"9650\";s:5:\"title\";s:36:\"Fly In | Register | Subscribe | Sale\";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:2:\"60\";s:16:\"popularity_index\";s:3:\"670\";s:11:\"trend_index\";s:3:\"618\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:536;a:14:{s:2:\"id\";s:5:\"11948\";s:5:\"title\";s:18:\"Maintenance Mode 3\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm3.png\";s:12:\"tmpl_created\";s:10:\"1572153978\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-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:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";s:2:\"61\";s:16:\"popularity_index\";s:3:\"242\";s:11:\"trend_index\";s:3:\"101\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:537;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:2:\"62\";s:16:\"popularity_index\";s:3:\"227\";s:11:\"trend_index\";s:3:\"336\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:538;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:2:\"63\";s:16:\"popularity_index\";s:3:\"294\";s:11:\"trend_index\";s:3:\"441\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:539;a:14:{s:2:\"id\";s:5:\"10200\";s:5:\"title\";s:33:\"Full Screen | Content Lock | Wine\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/lock_wine_small.png\";s:12:\"tmpl_created\";s:10:\"1548055635\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/full-screen-content-lock/?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:2:\"63\";s:16:\"popularity_index\";s:3:\"634\";s:11:\"trend_index\";s:3:\"674\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:540;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:2:\"64\";s:16:\"popularity_index\";s:3:\"282\";s:11:\"trend_index\";s:3:\"421\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:541;a:14:{s:2:\"id\";s:5:\"10287\";s:5:\"title\";s:34:\"Full Screen | Register | Subscribe\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_pink_small.png\";s:12:\"tmpl_created\";s:10:\"1547994301\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-2/?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:2:\"64\";s:16:\"popularity_index\";s:3:\"542\";s:11:\"trend_index\";s:3:\"543\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:542;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:2:\"65\";s:16:\"popularity_index\";s:3:\"234\";s:11:\"trend_index\";s:3:\"288\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:543;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:\"66\";s:16:\"popularity_index\";s:2:\"92\";s:11:\"trend_index\";s:3:\"163\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:544;a:14:{s:2:\"id\";s:4:\"9889\";s:5:\"title\";s:28:\"Full Screen | Login | Cactus\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/cac_small.png\";s:12:\"tmpl_created\";s:10:\"1547838722\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/full-screen-login/?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:2:\"66\";s:16:\"popularity_index\";s:3:\"653\";s:11:\"trend_index\";s:3:\"666\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:545;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:2:\"67\";s:16:\"popularity_index\";s:3:\"245\";s:11:\"trend_index\";s:3:\"259\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:546;a:14:{s:2:\"id\";s:5:\"10077\";s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_register_blue_small.png\";s:12:\"tmpl_created\";s:10:\"1547848197\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/fly-in-register-subscribe/?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:2:\"67\";s:16:\"popularity_index\";s:3:\"486\";s:11:\"trend_index\";s:3:\"564\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:547;a:14:{s:2:\"id\";s:5:\"11966\";s:5:\"title\";s:18:\"Maintenance mode 4\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm4.png\";s:12:\"tmpl_created\";s:10:\"1572154274\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-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:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";s:2:\"68\";s:16:\"popularity_index\";s:3:\"523\";s:11:\"trend_index\";s:3:\"386\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:548;a:14:{s:2:\"id\";s:5:\"10362\";s:5:\"title\";s:32:\"Full Screen | Login | Restaurant\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/vip_small.png\";s:12:\"tmpl_created\";s:10:\"1548056253\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-3/?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:2:\"69\";s:16:\"popularity_index\";s:3:\"574\";s:11:\"trend_index\";s:3:\"667\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:549;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:2:\"69\";s:16:\"popularity_index\";s:3:\"191\";s:11:\"trend_index\";s:3:\"234\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:550;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:2:\"70\";s:16:\"popularity_index\";s:3:\"210\";s:11:\"trend_index\";s:3:\"258\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:551;a:14:{s:2:\"id\";s:5:\"10454\";s:5:\"title\";s:29:\"Full Screen | Promotion | App\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/appy_small.png\";s:12:\"tmpl_created\";s:10:\"1548056896\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-promotion-app/?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:2:\"71\";s:16:\"popularity_index\";s:3:\"671\";s:11:\"trend_index\";s:3:\"676\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:552;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:2:\"71\";s:16:\"popularity_index\";s:3:\"318\";s:11:\"trend_index\";s:3:\"432\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:553;a:14:{s:2:\"id\";s:5:\"11973\";s:5:\"title\";s:18:\"Maintenance mode 5\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm5.png\";s:12:\"tmpl_created\";s:10:\"1572154523\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-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:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";s:2:\"72\";s:16:\"popularity_index\";s:3:\"481\";s:11:\"trend_index\";s:3:\"312\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:554;a:14:{s:2:\"id\";s:4:\"9803\";s:5:\"title\";s:41:\"Full Screen | Register | Contact | Meetup\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2019/01/designme_full_small.png\";s:12:\"tmpl_created\";s:10:\"1547831298\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/full-screen-register-contact/?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:2:\"72\";s:16:\"popularity_index\";s:3:\"617\";s:11:\"trend_index\";s:3:\"603\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:555;a:14:{s:2:\"id\";s:5:\"10611\";s:5:\"title\";s:18:\"Full Screen | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fla_small.png\";s:12:\"tmpl_created\";s:10:\"1547968868\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/full-screen-sale/?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:2:\"73\";s:16:\"popularity_index\";s:3:\"676\";s:11:\"trend_index\";s:3:\"678\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:556;a:14:{s:2:\"id\";s:5:\"10508\";s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/hand_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547964711\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-welcome-mat-2/?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:2:\"75\";s:16:\"popularity_index\";s:3:\"625\";s:11:\"trend_index\";s:3:\"641\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:557;a:14:{s:2:\"id\";s:4:\"9934\";s:5:\"title\";s:38:\"Full Screen | Welcome Mat | Teddy Bear\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_mat_teddy_small.png\";s:12:\"tmpl_created\";s:10:\"1547841787\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-welcome-mat/?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:2:\"76\";s:16:\"popularity_index\";s:3:\"596\";s:11:\"trend_index\";s:3:\"601\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:558;a:14:{s:2:\"id\";s:4:\"9709\";s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";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:2:\"78\";s:16:\"popularity_index\";s:3:\"636\";s:11:\"trend_index\";s:3:\"645\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:559;a:14:{s:2:\"id\";s:4:\"9671\";s:5:\"title\";s:34:\"Hello Bar | Announcement | Cookies\";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:2:\"79\";s:16:\"popularity_index\";s:3:\"575\";s:11:\"trend_index\";s:3:\"594\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:560;a:14:{s:2:\"id\";s:5:\"10234\";s:5:\"title\";s:38:\"Hello Bar | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small.png\";s:12:\"tmpl_created\";s:10:\"1548055049\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/hello-bar-announcement/?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:2:\"80\";s:16:\"popularity_index\";s:3:\"656\";s:11:\"trend_index\";s:3:\"615\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:561;a:14:{s:2:\"id\";s:5:\"11981\";s:5:\"title\";s:18:\"Maintenance mode 6\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm6.png\";s:12:\"tmpl_created\";s:10:\"1572155125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-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:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";s:2:\"83\";s:16:\"popularity_index\";s:3:\"474\";s:11:\"trend_index\";s:3:\"339\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:562;a:14:{s:2:\"id\";s:4:\"9869\";s:5:\"title\";s:28:\"Hello Bar | Promotion | Sale\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/ru_small.png\";s:12:\"tmpl_created\";s:10:\"1547837269\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/hello-bar-promotion/?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:2:\"83\";s:16:\"popularity_index\";s:3:\"666\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:563;a:14:{s:2:\"id\";s:5:\"10539\";s:5:\"title\";s:19:\"Hello Bar | Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_pink_small.png\";s:12:\"tmpl_created\";s:10:\"1548056994\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-2/?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:2:\"84\";s:16:\"popularity_index\";s:3:\"631\";s:11:\"trend_index\";s:3:\"640\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:564;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:\"87\";s:16:\"popularity_index\";s:1:\"2\";s:11:\"trend_index\";s:2:\"16\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:565;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:\"88\";s:16:\"popularity_index\";s:3:\"140\";s:11:\"trend_index\";s:3:\"319\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:566;a:14:{s:2:\"id\";s:5:\"10147\";s:5:\"title\";s:34:\"Hello Bar | Sale | Promotion | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/donut_small.png\";s:12:\"tmpl_created\";s:10:\"1548055522\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/hello-bar-sale-promotion/?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:2:\"89\";s:16:\"popularity_index\";s:3:\"669\";s:11:\"trend_index\";s:3:\"677\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:567;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:\"89\";s:16:\"popularity_index\";s:3:\"135\";s:11:\"trend_index\";s:3:\"284\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:568;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:\"90\";s:16:\"popularity_index\";s:2:\"12\";s:11:\"trend_index\";s:2:\"79\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:569;a:14:{s:2:\"id\";s:4:\"9923\";s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_ann_italian_small.png\";s:12:\"tmpl_created\";s:10:\"1547841537\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/slide-in-announcement/?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:2:\"90\";s:16:\"popularity_index\";s:3:\"606\";s:11:\"trend_index\";s:3:\"584\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:570;a:14:{s:2:\"id\";s:5:\"10117\";s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/white_small.png\";s:12:\"tmpl_created\";s:10:\"1548066998\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-announcement-2/?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:2:\"91\";s:16:\"popularity_index\";s:3:\"638\";s:11:\"trend_index\";s:3:\"650\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:571;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:\"91\";s:16:\"popularity_index\";s:3:\"219\";s:11:\"trend_index\";s:3:\"519\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:572;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:\"92\";s:16:\"popularity_index\";s:3:\"326\";s:11:\"trend_index\";s:3:\"528\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:573;a:14:{s:2:\"id\";s:4:\"9826\";s:5:\"title\";s:33:\"Slide In | Announcement | webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-2.png\";s:12:\"tmpl_created\";s:10:\"1547835513\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-announcement-webinar/?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:2:\"92\";s:16:\"popularity_index\";s:3:\"646\";s:11:\"trend_index\";s:3:\"669\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:574;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:\"93\";s:16:\"popularity_index\";s:3:\"203\";s:11:\"trend_index\";s:3:\"370\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:575;a:14:{s:2:\"id\";s:5:\"10478\";s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_wow_small.png\";s:12:\"tmpl_created\";s:10:\"1548056829\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-contact/?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:2:\"93\";s:16:\"popularity_index\";s:3:\"535\";s:11:\"trend_index\";s:3:\"553\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:576;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:\"94\";s:16:\"popularity_index\";s:3:\"106\";s:11:\"trend_index\";s:3:\"150\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:577;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:\"95\";s:16:\"popularity_index\";s:3:\"267\";s:11:\"trend_index\";s:3:\"470\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:578;a:14:{s:2:\"id\";s:5:\"10685\";s:5:\"title\";s:32:\"Hello Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/env_small.png\";s:12:\"tmpl_created\";s:10:\"1547974729\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-3/?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:2:\"96\";s:16:\"popularity_index\";s:3:\"615\";s:11:\"trend_index\";s:3:\"644\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:579;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:\"96\";s:16:\"popularity_index\";s:3:\"253\";s:11:\"trend_index\";s:3:\"481\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:580;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:\"97\";s:16:\"popularity_index\";s:3:\"175\";s:11:\"trend_index\";s:3:\"337\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:581;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:\"98\";s:16:\"popularity_index\";s:2:\"11\";s:11:\"trend_index\";s:2:\"24\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:582;a:14:{s:2:\"id\";s:4:\"9985\";s:5:\"title\";s:20:\"Slide In | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_promotion_av_small.png\";s:12:\"tmpl_created\";s:10:\"1547844661\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-3/?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:2:\"98\";s:16:\"popularity_index\";s:3:\"658\";s:11:\"trend_index\";s:3:\"684\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:583;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:\"99\";s:16:\"popularity_index\";s:3:\"259\";s:11:\"trend_index\";s:3:\"464\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:584;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:3:\"100\";s:16:\"popularity_index\";s:3:\"393\";s:11:\"trend_index\";s:3:\"605\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:585;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:3:\"101\";s:16:\"popularity_index\";s:3:\"426\";s:11:\"trend_index\";s:3:\"673\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:586;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:3:\"102\";s:16:\"popularity_index\";s:3:\"197\";s:11:\"trend_index\";s:3:\"297\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:587;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:3:\"103\";s:16:\"popularity_index\";s:3:\"176\";s:11:\"trend_index\";s:3:\"341\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:588;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:3:\"104\";s:16:\"popularity_index\";s:3:\"335\";s:11:\"trend_index\";s:3:\"510\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:589;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:3:\"105\";s:16:\"popularity_index\";s:3:\"383\";s:11:\"trend_index\";s:3:\"399\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:590;a:14:{s:2:\"id\";s:4:\"9559\";s:5:\"title\";s:16:\"Slide In | Login\";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:3:\"105\";s:16:\"popularity_index\";s:3:\"530\";s:11:\"trend_index\";s:3:\"581\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:591;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:3:\"106\";s:16:\"popularity_index\";s:1:\"7\";s:11:\"trend_index\";s:2:\"14\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:592;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:3:\"107\";s:16:\"popularity_index\";s:2:\"22\";s:11:\"trend_index\";s:2:\"77\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:593;a:14:{s:2:\"id\";s:4:\"9752\";s:5:\"title\";s:27:\"Slide In | Sale | Promotion\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rush_small.png\";s:12:\"tmpl_created\";s:10:\"1547823982\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-promotion/?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:3:\"107\";s:16:\"popularity_index\";s:3:\"645\";s:11:\"trend_index\";s:3:\"632\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:594;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:3:\"108\";s:16:\"popularity_index\";s:2:\"39\";s:11:\"trend_index\";s:3:\"127\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:595;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:3:\"109\";s:16:\"popularity_index\";s:2:\"16\";s:11:\"trend_index\";s:2:\"46\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:596;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:3:\"110\";s:16:\"popularity_index\";s:2:\"19\";s:11:\"trend_index\";s:2:\"63\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:597;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:3:\"111\";s:16:\"popularity_index\";s:3:\"207\";s:11:\"trend_index\";s:3:\"397\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:598;a:14:{s:2:\"id\";s:5:\"10169\";s:5:\"title\";s:37:\"Slide In | Register | Subscribe | App\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/slideinapp_small.png\";s:12:\"tmpl_created\";s:10:\"1547852334\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-register-subscribe-2/?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:3:\"112\";s:16:\"popularity_index\";s:3:\"413\";s:11:\"trend_index\";s:3:\"649\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:599;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:3:\"112\";s:16:\"popularity_index\";s:3:\"352\";s:11:\"trend_index\";s:3:\"560\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:600;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:3:\"113\";s:16:\"popularity_index\";s:3:\"343\";s:11:\"trend_index\";s:3:\"499\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:601;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:3:\"114\";s:16:\"popularity_index\";s:3:\"359\";s:11:\"trend_index\";s:3:\"459\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:602;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:3:\"115\";s:16:\"popularity_index\";s:3:\"228\";s:11:\"trend_index\";s:3:\"338\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:603;a:14:{s:2:\"id\";s:4:\"9680\";s:5:\"title\";s:23:\"Slide In | Content Lock\";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:3:\"115\";s:16:\"popularity_index\";s:3:\"642\";s:11:\"trend_index\";s:3:\"675\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:604;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:3:\"116\";s:16:\"popularity_index\";s:2:\"31\";s:11:\"trend_index\";s:2:\"82\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:605;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:3:\"117\";s:16:\"popularity_index\";s:3:\"374\";s:11:\"trend_index\";s:3:\"503\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:606;a:14:{s:2:\"id\";s:4:\"9783\";s:5:\"title\";s:31:\"Slide In | Register | Subscribe\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_yellow_small.png\";s:12:\"tmpl_created\";s:10:\"1547831059\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/slide-in-register-subscribe/?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:3:\"117\";s:16:\"popularity_index\";s:3:\"483\";s:11:\"trend_index\";s:3:\"485\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:607;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:3:\"118\";s:16:\"popularity_index\";s:3:\"400\";s:11:\"trend_index\";s:3:\"513\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:608;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:3:\"119\";s:16:\"popularity_index\";s:3:\"419\";s:11:\"trend_index\";s:3:\"497\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:609;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:3:\"120\";s:16:\"popularity_index\";s:3:\"439\";s:11:\"trend_index\";s:3:\"526\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:610;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:3:\"121\";s:16:\"popularity_index\";s:3:\"366\";s:11:\"trend_index\";s:3:\"545\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:611;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:3:\"122\";s:16:\"popularity_index\";s:3:\"263\";s:11:\"trend_index\";s:3:\"434\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:612;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:3:\"123\";s:16:\"popularity_index\";s:3:\"278\";s:11:\"trend_index\";s:3:\"396\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:613;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:3:\"124\";s:16:\"popularity_index\";s:3:\"379\";s:11:\"trend_index\";s:3:\"568\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:614;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:3:\"125\";s:16:\"popularity_index\";s:3:\"373\";s:11:\"trend_index\";s:3:\"466\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:615;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:3:\"126\";s:16:\"popularity_index\";s:3:\"349\";s:11:\"trend_index\";s:3:\"486\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:616;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:3:\"127\";s:16:\"popularity_index\";s:3:\"408\";s:11:\"trend_index\";s:3:\"653\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:617;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:3:\"128\";s:16:\"popularity_index\";s:2:\"86\";s:11:\"trend_index\";s:3:\"277\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:618;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:3:\"129\";s:16:\"popularity_index\";s:2:\"40\";s:11:\"trend_index\";s:3:\"176\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:619;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:3:\"130\";s:16:\"popularity_index\";s:3:\"308\";s:11:\"trend_index\";s:3:\"381\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:620;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:3:\"131\";s:16:\"popularity_index\";s:2:\"14\";s:11:\"trend_index\";s:2:\"64\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:621;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:3:\"132\";s:16:\"popularity_index\";s:3:\"321\";s:11:\"trend_index\";s:3:\"480\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:622;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:3:\"133\";s:16:\"popularity_index\";s:3:\"431\";s:11:\"trend_index\";s:3:\"682\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:623;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:3:\"134\";s:16:\"popularity_index\";s:3:\"363\";s:11:\"trend_index\";s:3:\"515\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:624;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:3:\"135\";s:16:\"popularity_index\";s:3:\"355\";s:11:\"trend_index\";s:3:\"402\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:625;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:3:\"136\";s:16:\"popularity_index\";s:2:\"52\";s:11:\"trend_index\";s:3:\"219\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:626;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:3:\"137\";s:16:\"popularity_index\";s:3:\"127\";s:11:\"trend_index\";s:3:\"275\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:627;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:3:\"138\";s:16:\"popularity_index\";s:2:\"61\";s:11:\"trend_index\";s:3:\"192\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:628;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:3:\"139\";s:16:\"popularity_index\";s:3:\"344\";s:11:\"trend_index\";s:3:\"517\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:629;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:3:\"140\";s:16:\"popularity_index\";s:3:\"462\";s:11:\"trend_index\";s:3:\"576\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:630;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:3:\"141\";s:16:\"popularity_index\";s:3:\"405\";s:11:\"trend_index\";s:3:\"463\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:631;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:3:\"142\";s:16:\"popularity_index\";s:3:\"489\";s:11:\"trend_index\";s:3:\"655\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:632;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:3:\"143\";s:16:\"popularity_index\";s:3:\"527\";s:11:\"trend_index\";s:3:\"648\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:633;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:3:\"144\";s:16:\"popularity_index\";s:3:\"569\";s:11:\"trend_index\";s:3:\"681\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:634;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:3:\"145\";s:16:\"popularity_index\";s:3:\"541\";s:11:\"trend_index\";s:3:\"680\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:635;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:3:\"146\";s:16:\"popularity_index\";s:3:\"112\";s:11:\"trend_index\";s:3:\"221\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:636;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:3:\"147\";s:16:\"popularity_index\";s:3:\"314\";s:11:\"trend_index\";s:3:\"388\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:637;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:3:\"148\";s:16:\"popularity_index\";s:2:\"45\";s:11:\"trend_index\";s:3:\"106\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:638;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:3:\"149\";s:16:\"popularity_index\";s:3:\"122\";s:11:\"trend_index\";s:3:\"276\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:639;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:3:\"150\";s:16:\"popularity_index\";s:2:\"62\";s:11:\"trend_index\";s:3:\"132\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:640;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:3:\"151\";s:16:\"popularity_index\";s:3:\"123\";s:11:\"trend_index\";s:3:\"269\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:641;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:3:\"152\";s:16:\"popularity_index\";s:2:\"13\";s:11:\"trend_index\";s:2:\"26\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:642;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:3:\"153\";s:16:\"popularity_index\";s:2:\"23\";s:11:\"trend_index\";s:2:\"51\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:643;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:3:\"154\";s:16:\"popularity_index\";s:3:\"531\";s:11:\"trend_index\";s:3:\"557\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:644;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:3:\"155\";s:16:\"popularity_index\";s:2:\"71\";s:11:\"trend_index\";s:3:\"260\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:645;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:3:\"156\";s:16:\"popularity_index\";s:2:\"21\";s:11:\"trend_index\";s:2:\"58\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:646;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:3:\"157\";s:16:\"popularity_index\";s:3:\"428\";s:11:\"trend_index\";s:3:\"482\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:647;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:\"158\";s:16:\"popularity_index\";s:3:\"371\";s:11:\"trend_index\";s:3:\"431\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:648;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:\"159\";s:16:\"popularity_index\";s:3:\"348\";s:11:\"trend_index\";s:3:\"315\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:649;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:\"160\";s:16:\"popularity_index\";s:3:\"362\";s:11:\"trend_index\";s:3:\"424\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:650;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:\"161\";s:16:\"popularity_index\";s:3:\"372\";s:11:\"trend_index\";s:3:\"426\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:651;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:\"162\";s:16:\"popularity_index\";s:2:\"76\";s:11:\"trend_index\";s:3:\"152\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:652;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:\"163\";s:16:\"popularity_index\";s:2:\"54\";s:11:\"trend_index\";s:2:\"88\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:653;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:\"164\";s:16:\"popularity_index\";s:2:\"17\";s:11:\"trend_index\";s:2:\"23\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:654;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:\"165\";s:16:\"popularity_index\";s:3:\"257\";s:11:\"trend_index\";s:3:\"335\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:655;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:\"166\";s:16:\"popularity_index\";s:2:\"30\";s:11:\"trend_index\";s:2:\"43\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:656;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:\"167\";s:16:\"popularity_index\";s:3:\"382\";s:11:\"trend_index\";s:3:\"427\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:657;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:\"168\";s:16:\"popularity_index\";s:3:\"411\";s:11:\"trend_index\";s:3:\"487\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:658;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:\"169\";s:16:\"popularity_index\";s:2:\"68\";s:11:\"trend_index\";s:3:\"138\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:659;a:14:{s:2:\"id\";s:4:\"1260\";s:5:\"title\";s:18:\"Maintenance Mode 1\";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:108:\"https://library.elementor.com/maintenance-mode-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:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";s:3:\"170\";s:16:\"popularity_index\";s:3:\"424\";s:11:\"trend_index\";s:3:\"562\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:660;a:14:{s:2:\"id\";s:4:\"1261\";s:5:\"title\";s:18:\"Maintenance Mode 2\";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:108:\"https://library.elementor.com/maintenance-mode-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:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";s:3:\"171\";s:16:\"popularity_index\";s:2:\"72\";s:11:\"trend_index\";s:3:\"189\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:661;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:\"172\";s:16:\"popularity_index\";s:3:\"285\";s:11:\"trend_index\";s:3:\"303\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:662;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:\"173\";s:16:\"popularity_index\";s:3:\"133\";s:11:\"trend_index\";s:3:\"202\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:663;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:\"174\";s:16:\"popularity_index\";s:3:\"274\";s:11:\"trend_index\";s:3:\"244\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:664;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:\"175\";s:16:\"popularity_index\";s:3:\"402\";s:11:\"trend_index\";s:3:\"506\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:665;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:\"176\";s:16:\"popularity_index\";s:3:\"292\";s:11:\"trend_index\";s:3:\"408\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:666;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:\"177\";s:16:\"popularity_index\";s:3:\"229\";s:11:\"trend_index\";s:3:\"266\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:667;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:\"178\";s:16:\"popularity_index\";s:3:\"381\";s:11:\"trend_index\";s:3:\"332\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:668;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:\"179\";s:16:\"popularity_index\";s:3:\"247\";s:11:\"trend_index\";s:3:\"355\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:669;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:\"180\";s:16:\"popularity_index\";s:3:\"357\";s:11:\"trend_index\";s:3:\"346\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:670;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:\"181\";s:16:\"popularity_index\";s:3:\"323\";s:11:\"trend_index\";s:3:\"376\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:671;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:\"182\";s:16:\"popularity_index\";s:3:\"398\";s:11:\"trend_index\";s:3:\"474\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:672;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:\"183\";s:16:\"popularity_index\";s:3:\"519\";s:11:\"trend_index\";s:3:\"593\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:673;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:\"184\";s:16:\"popularity_index\";s:3:\"317\";s:11:\"trend_index\";s:3:\"476\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:674;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:\"185\";s:16:\"popularity_index\";s:3:\"385\";s:11:\"trend_index\";s:3:\"597\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:675;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:\"186\";s:16:\"popularity_index\";s:3:\"288\";s:11:\"trend_index\";s:3:\"389\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:676;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:\"187\";s:16:\"popularity_index\";s:3:\"273\";s:11:\"trend_index\";s:3:\"286\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:677;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:\"188\";s:16:\"popularity_index\";s:3:\"298\";s:11:\"trend_index\";s:3:\"365\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:678;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:\"189\";s:16:\"popularity_index\";s:3:\"337\";s:11:\"trend_index\";s:3:\"514\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:679;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:\"190\";s:16:\"popularity_index\";s:3:\"272\";s:11:\"trend_index\";s:3:\"375\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:680;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:\"191\";s:16:\"popularity_index\";s:3:\"338\";s:11:\"trend_index\";s:3:\"460\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:681;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:\"192\";s:16:\"popularity_index\";s:3:\"585\";s:11:\"trend_index\";s:3:\"668\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:682;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:\"193\";s:16:\"popularity_index\";s:3:\"511\";s:11:\"trend_index\";s:3:\"623\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:683;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:\"194\";s:16:\"popularity_index\";s:3:\"452\";s:11:\"trend_index\";s:3:\"621\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:684;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:\"195\";s:16:\"popularity_index\";s:3:\"455\";s:11:\"trend_index\";s:3:\"660\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:685;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:\"196\";s:16:\"popularity_index\";s:3:\"425\";s:11:\"trend_index\";s:3:\"558\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:686;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:\"197\";s:16:\"popularity_index\";s:3:\"504\";s:11:\"trend_index\";s:3:\"617\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:687;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:\"198\";s:16:\"popularity_index\";s:3:\"487\";s:11:\"trend_index\";s:3:\"647\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:688;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:\"199\";s:16:\"popularity_index\";s:3:\"460\";s:11:\"trend_index\";s:3:\"663\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:689;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:\"200\";s:16:\"popularity_index\";s:3:\"395\";s:11:\"trend_index\";s:3:\"598\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:690;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:\"201\";s:16:\"popularity_index\";s:3:\"391\";s:11:\"trend_index\";s:3:\"471\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:691;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:\"202\";s:16:\"popularity_index\";s:3:\"420\";s:11:\"trend_index\";s:3:\"610\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:692;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:\"203\";s:16:\"popularity_index\";s:2:\"20\";s:11:\"trend_index\";s:2:\"57\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}}}", "no");
INSERT INTO `lt_options` VALUES("153", "elementor_remote_info_feed_data", "a:5:{i:0;a:5:{s:5:\"title\";s:37:\"How to Find Freelance Web Design Work\";s:7:\"excerpt\";s:208:\"What is the best way for web designers who are looking for freelance web design work to find their next gig? It’s a competitive market out there, so here are our top tips for finding work as a web designer.\";s:7:\"created\";s:10:\"1590484112\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:122:\"https://elementor.com/blog/find-web-design-work-2/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:56:\"How to Create a Custom WordPress 404 Page With Elementor\";s:7:\"excerpt\";s:227:\"In this post, we\'ll talk a little bit about what your 404 page is and why it\'s important. Then, we\'ll show you some real-world examples and walk you through the steps to build your own custom WordPress 404 page using Elementor.\";s:7:\"created\";s:10:\"1590313832\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:142:\"https://elementor.com/blog/create-custom-wordpress-404-page-elementor/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:62:\"Monthly Template Kits #10: The Barbershop Website Template Kit\";s:7:\"excerpt\";s:265:\"This month’s Template Kit is an authentic and hip barbershop website template that makes it simple and easy for businesses to create their own website with Elementor. Adjust the template to your business needs and to set up your website in a quick and simple way.\";s:7:\"created\";s:10:\"1589908997\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:123:\"https://elementor.com/blog/barbershop-template-kit/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:3;a:5:{s:5:\"title\";s:65:\"We Just Reached the Peak of WordPress: 5 Million Active Installs!\";s:7:\"excerpt\";s:109:\"Elementor just passed the highest milestone possible for a WordPress plugin: 5 million active installs.​​\";s:7:\"created\";s:10:\"1589893680\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:125:\"https://elementor.com/blog/5-million-active-installs/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:4;a:5:{s:5:\"title\";s:43:\"Elementor Sites of the Month – April 2020\";s:7:\"excerpt\";s:73:\"Here are our top picks of Elementor sites for April 2020. Check them out!\";s:7:\"created\";s:10:\"1589783657\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:119:\"https://elementor.com/blog/showcase-april-2020/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}", "no");
INSERT INTO `lt_options` VALUES("157", "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");
INSERT INTO `lt_options` VALUES("158", "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");
INSERT INTO `lt_options` VALUES("159", "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");
INSERT INTO `lt_options` VALUES("160", "elementor_active_kit", "6", "yes");
INSERT INTO `lt_options` VALUES("161", "elementor_controls_usage", "a:2:{s:4:\"page\";a:9:{s:6:\"column\";a:2:{s:5:\"count\";i:67;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:67;s:16:\"content_position\";i:1;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:17;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:17;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"space\";i:10;s:12:\"space_mobile\";i:4;s:12:\"space_tablet\";i:3;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:41;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:19;}s:14:\"section_layout\";a:1:{s:16:\"content_position\";i:3;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:38;s:14:\"padding_mobile\";i:22;s:6:\"margin\";i:12;s:13:\"margin_mobile\";i:5;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:19;s:16:\"background_color\";i:19;s:18:\"background_color_b\";i:3;s:23:\"background_color_b_stop\";i:3;s:24:\"background_gradient_type\";i:3;s:28:\"background_gradient_position\";i:3;s:16:\"background_image\";i:3;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:3;s:24:\"background_overlay_color\";i:3;s:26:\"background_overlay_opacity\";i:3;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:32;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:32;s:11:\"header_size\";i:32;s:5:\"align\";i:32;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:11:\"title_color\";i:32;s:21:\"typography_typography\";i:32;s:22:\"typography_font_family\";i:25;s:20:\"typography_font_size\";i:26;s:22:\"typography_font_weight\";i:26;s:27:\"typography_font_size_mobile\";i:25;s:27:\"typography_font_size_tablet\";i:3;s:21:\"typography_font_style\";i:6;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:14:\"_margin_mobile\";i:2;s:8:\"_padding\";i:1;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:6;s:4:\"text\";i:6;s:4:\"link\";i:6;s:5:\"align\";i:6;s:4:\"size\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:20:\"typography_font_size\";i:6;s:27:\"typography_font_size_mobile\";i:6;s:22:\"typography_font_weight\";i:6;s:17:\"button_text_color\";i:6;s:16:\"background_color\";i:6;s:11:\"hover_color\";i:6;s:29:\"button_background_hover_color\";i:6;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:6;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:10;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:10;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:9;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:10;s:9:\"icon_size\";i:9;}s:18:\"section_text_style\";a:4:{s:10:\"text_color\";i:10;s:26:\"icon_typography_typography\";i:9;s:27:\"icon_typography_font_family\";i:9;s:25:\"icon_typography_font_size\";i:9;}}}}s:6:\"spacer\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:27:\"typography_font_size_mobile\";i:6;s:5:\"align\";i:2;s:10:\"text_color\";i:2;s:22:\"typography_font_weight\";i:3;}}}}s:5:\"video\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:5:{s:11:\"youtube_url\";i:1;s:8:\"autoplay\";i:1;s:14:\"play_on_mobile\";i:1;s:14:\"modestbranding\";i:1;s:8:\"controls\";i:1;}}}}}s:7:\"wp-page\";a:11:{s:7:\"heading\";a:2:{s:5:\"count\";i:15;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:15;s:11:\"header_size\";i:15;s:5:\"align\";i:15;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:15;s:21:\"typography_typography\";i:15;s:22:\"typography_font_family\";i:14;s:20:\"typography_font_size\";i:15;s:22:\"typography_font_weight\";i:15;s:27:\"typography_font_size_tablet\";i:2;s:27:\"typography_font_size_mobile\";i:15;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:34;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:34;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:11:\"_element_id\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:2:{s:13:\"border_border\";i:1;s:13:\"border_radius\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:18;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:14:\"padding_mobile\";i:8;s:13:\"margin_mobile\";i:4;s:7:\"padding\";i:16;s:6:\"margin\";i:5;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:10;}s:14:\"section_layout\";a:2:{s:13:\"content_width\";i:1;s:16:\"content_position\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:7;s:16:\"background_color\";i:7;s:18:\"background_color_b\";i:2;s:23:\"background_color_b_stop\";i:2;s:24:\"background_gradient_type\";i:2;s:28:\"background_gradient_position\";i:2;s:16:\"background_image\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}}}}s:5:\"video\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:5:{s:11:\"youtube_url\";i:4;s:8:\"autoplay\";i:1;s:14:\"play_on_mobile\";i:1;s:14:\"modestbranding\";i:1;s:8:\"controls\";i:1;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:7:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:13:\"selected_icon\";i:1;s:11:\"icon_indent\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:27:\"typography_font_size_mobile\";i:2;s:22:\"typography_font_weight\";i:2;s:17:\"button_text_color\";i:2;s:16:\"background_color\";i:2;s:11:\"hover_color\";i:2;s:29:\"button_background_hover_color\";i:2;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:4;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:12:\"space_tablet\";i:1;s:5:\"space\";i:2;s:12:\"space_mobile\";i:1;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:4;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:3;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:4;s:9:\"icon_size\";i:3;}s:18:\"section_text_style\";a:4:{s:10:\"text_color\";i:4;s:26:\"icon_typography_typography\";i:3;s:27:\"icon_typography_font_family\";i:3;s:25:\"icon_typography_font_size\";i:3;}}}}s:6:\"spacer\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:27:\"typography_font_size_mobile\";i:2;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:2;}}}}s:18:\"eael-pricing-table\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:4:{s:35:\"eael_section_pricing_table_settings\";a:3:{s:24:\"eael_pricing_table_title\";i:1;s:28:\"eael_pricing_table_sub_title\";i:1;s:35:\"eael_pricing_table_style_2_icon_new\";i:1;}s:32:\"eael_section_pricing_table_price\";a:4:{s:24:\"eael_pricing_table_price\";i:1;s:28:\"eael_pricing_table_price_cur\";i:1;s:31:\"eael_pricing_table_price_period\";i:1;s:35:\"eael_pricing_table_period_separator\";i:1;}s:34:\"eael_section_pricing_table_feature\";a:1:{s:24:\"eael_pricing_table_items\";i:1;}s:34:\"eael_section_pricing_table_footerr\";a:1:{s:30:\"eael_pricing_table_button_show\";i:1;}}s:5:\"style\";a:4:{s:41:\"eael_section_pricing_table_style_settings\";a:1:{s:36:\"eael_pricing_table_content_alignment\";i:1;}s:48:\"eael_section_pricing_table_header_style_settings\";a:2:{s:46:\"eael_pricing_table_title_typography_typography\";i:1;s:45:\"eael_pricing_table_title_typography_font_size\";i:1;}s:47:\"eael_section_pricing_table_title_style_settings\";a:1:{s:37:\"eael_pricing_table_pricing_curr_color\";i:1;}s:55:\"eael_section_pricing_table_style_featured_list_settings\";a:2:{s:34:\"eael_pricing_table_list_item_color\";i:1;s:50:\"eael_pricing_table_list_item_typography_typography\";i:1;}}}}s:4:\"html\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"html\";i:1;}}}}}}", "no");
INSERT INTO `lt_options` VALUES("170", "WPLANG", "", "yes");
INSERT INTO `lt_options` VALUES("171", "new_admin_email", "st@pakar.co.id", "yes");
INSERT INTO `lt_options` VALUES("183", "wpcf7", "a:2:{s:7:\"version\";s:5:\"5.1.9\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1588179066;s:7:\"version\";s:5:\"5.1.7\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}", "yes");
INSERT INTO `lt_options` VALUES("186", "cfdb7_view_install_date", "2020-04-29 9:52:16", "yes");
INSERT INTO `lt_options` VALUES("189", "popmake_settings", "a:2:{s:26:\"disable_popup_category_tag\";i:1;s:16:\"default_theme_id\";i:50;}", "yes");
INSERT INTO `lt_options` VALUES("190", "pum_version", "1.10.1", "yes");
INSERT INTO `lt_options` VALUES("191", "pum_files_writeable", "1", "yes");
INSERT INTO `lt_options` VALUES("192", "_pum_writeable_notice_dismissed", "1", "yes");
INSERT INTO `lt_options` VALUES("193", "pum_ver", "1.10.1", "yes");
INSERT INTO `lt_options` VALUES("194", "pum_initial_version", "1.10.1", "yes");
INSERT INTO `lt_options` VALUES("195", "pum_ver_upgraded_from", "0.0.0", "yes");
INSERT INTO `lt_options` VALUES("196", "pum_db_ver", "8", "yes");
INSERT INTO `lt_options` VALUES("197", "pum_installed_on", "2020-04-29 16:59:21", "yes");
INSERT INTO `lt_options` VALUES("200", "_pum_installed_themes", "a:5:{i:0;s:8:\"lightbox\";i:1;s:15:\"enterprise-blue\";i:2;s:9:\"hello-box\";i:3;s:12:\"cutting-edge\";i:4;s:13:\"framed-border\";}", "yes");
INSERT INTO `lt_options` VALUES("201", "pum_completed_upgrades", "a:1:{i:0;s:16:\"core-v1_8-themes\";}", "yes");
INSERT INTO `lt_options` VALUES("202", "pum_extend_viewed_extensions", "a:0:{}", "yes");
INSERT INTO `lt_options` VALUES("203", "pum_reviews_installed_on", "2020-04-29 16:59:21", "yes");
INSERT INTO `lt_options` VALUES("206", "_pum_installed", "1", "yes");
INSERT INTO `lt_options` VALUES("208", "pum-has-cached-css", "1589382071", "yes");
INSERT INTO `lt_options` VALUES("210", "pum-has-cached-js", "1589382071", "yes");
INSERT INTO `lt_options` VALUES("211", "pum_all_theme_close_text_cache", "a:6:{i:50;s:5:\"CLOSE\";i:51;s:7:\"&times;\";i:52;s:2:\"×\";i:53;s:2:\"×\";i:54;s:2:\"×\";i:55;s:2:\"×\";}", "yes");
INSERT INTO `lt_options` VALUES("212", "pum_total_open_count", "93", "yes");
INSERT INTO `lt_options` VALUES("218", "cf7_pum_49", "a:4:{s:10:\"closepopup\";b:1;s:10:\"closedelay\";i:4;s:12:\"openpopup_id\";i:0;s:9:\"openpopup\";b:0;}", "yes");
INSERT INTO `lt_options` VALUES("228", "auto_core_update_notified", "a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:14:\"st@pakar.co.id\";s:7:\"version\";s:5:\"5.4.1\";s:9:\"timestamp\";i:1588197689;}", "no");
INSERT INTO `lt_options` VALUES("255", "ccj__activation_time", "1589543909", "yes");
INSERT INTO `lt_options` VALUES("256", "ccj__version", "3.31.1", "yes");
INSERT INTO `lt_options` VALUES("257", "custom-css-js-tree", "a:4:{s:25:\"frontend-html-footer-both\";a:2:{i:0;s:8:\"255.html\";i:1;s:7:\"74.html\";}s:27:\"frontend-js-footer-external\";a:1:{i:0;s:13:\"189.js?v=1439\";}s:28:\"frontend-css-header-external\";a:1:{i:0;s:13:\"87.css?v=3809\";}s:25:\"frontend-html-header-both\";a:1:{i:0;s:7:\"70.html\";}}", "yes");
INSERT INTO `lt_options` VALUES("270", "_elementor_general_settings", "a:2:{s:21:\"default_generic_fonts\";s:9:\"quicksand\";s:21:\"global_image_lightbox\";s:3:\"yes\";}", "yes");
INSERT INTO `lt_options` VALUES("271", "_elementor_settings_update_time", "1588217341", "yes");
INSERT INTO `lt_options` VALUES("272", "elementor_cpt_support", "a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}", "yes");
INSERT INTO `lt_options` VALUES("273", "elementor_disable_color_schemes", "", "yes");
INSERT INTO `lt_options` VALUES("274", "elementor_disable_typography_schemes", "", "yes");
INSERT INTO `lt_options` VALUES("275", "elementor_allow_tracking", "no", "yes");
INSERT INTO `lt_options` VALUES("276", "elementor_default_generic_fonts", "quicksand", "yes");
INSERT INTO `lt_options` VALUES("277", "elementor_container_width", "", "yes");
INSERT INTO `lt_options` VALUES("278", "elementor_space_between_widgets", "", "yes");
INSERT INTO `lt_options` VALUES("279", "elementor_stretched_section_container", "", "yes");
INSERT INTO `lt_options` VALUES("280", "elementor_page_title_selector", "", "yes");
INSERT INTO `lt_options` VALUES("281", "elementor_viewport_lg", "", "yes");
INSERT INTO `lt_options` VALUES("283", "elementor_viewport_md", "", "yes");
INSERT INTO `lt_options` VALUES("284", "elementor_global_image_lightbox", "yes", "yes");
INSERT INTO `lt_options` VALUES("285", "elementor_css_print_method", "external", "yes");
INSERT INTO `lt_options` VALUES("286", "elementor_editor_break_lines", "", "yes");
INSERT INTO `lt_options` VALUES("287", "elementor_allow_svg", "", "yes");
INSERT INTO `lt_options` VALUES("288", "elementor_load_fa4_shim", "", "yes");
INSERT INTO `lt_options` VALUES("293", "current_theme", "Lightrees", "yes");
INSERT INTO `lt_options` VALUES("294", "theme_mods_lightrees", "a:5:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:17;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1589437898;s:4:\"data\";a:9:{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:13:\"header-widget\";a:0:{}s:15:\"footer-widget-1\";a:0:{}s:15:\"footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-1\";a:0:{}s:24:\"advanced-footer-widget-2\";a:0:{}s:24:\"advanced-footer-widget-3\";a:0:{}s:24:\"advanced-footer-widget-4\";a:0:{}}}s:11:\"custom_logo\";i:180;}", "yes");
INSERT INTO `lt_options` VALUES("295", "theme_switched", "", "yes");
INSERT INTO `lt_options` VALUES("296", "astra-settings", "a:7:{s:18:\"theme-auto-version\";s:5:\"2.4.4\";s:22:\"is_theme_queue_running\";b:0;s:33:\"_astra_pb_compatibility_completed\";b:1;s:18:\"display-site-title\";b:0;s:17:\"footer-sml-layout\";s:8:\"disabled\";s:27:\"footer-sml-section-1-credit\";s:40:\"Copyright © [current_year] [site_title]\";s:32:\"ast-header-responsive-logo-width\";a:3:{s:7:\"desktop\";s:3:\"100\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";}}", "yes");
INSERT INTO `lt_options` VALUES("297", "bsf_analytics_installed_time", "1588212155", "no");
INSERT INTO `lt_options` VALUES("300", "astra-theme-old-setup", "1", "yes");
INSERT INTO `lt_options` VALUES("303", "_elementor_global_css", "a:5:{s:4:\"time\";i:1588217409;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:4;s:11:\"Roboto Slab\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;b:0;}", "yes");
INSERT INTO `lt_options` VALUES("355", "recovery_mode_email_last_sent", "1590077986", "yes");
INSERT INTO `lt_options` VALUES("653", "pum_privacy_cookie_list", "a:2:{s:7:\"cookies\";a:0:{}s:9:\"timestamp\";i:1590061262;}", "yes");
INSERT INTO `lt_options` VALUES("666", "eael_save_settings", "a:44:{s:9:\"post-grid\";i:1;s:13:\"post-timeline\";i:1;s:10:\"fancy-text\";i:1;s:12:\"creative-btn\";i:1;s:10:\"count-down\";i:1;s:12:\"team-members\";i:1;s:12:\"testimonials\";i:1;s:8:\"info-box\";i:1;s:8:\"flip-box\";i:1;s:14:\"call-to-action\";i:1;s:11:\"dual-header\";i:1;s:11:\"price-table\";i:1;s:12:\"twitter-feed\";i:1;s:13:\"facebook-feed\";i:1;s:19:\"advanced-data-table\";i:1;s:10:\"data-table\";i:1;s:14:\"filter-gallery\";i:1;s:15:\"image-accordion\";i:1;s:14:\"content-ticker\";i:1;s:7:\"tooltip\";i:1;s:13:\"adv-accordion\";i:1;s:8:\"adv-tabs\";i:1;s:12:\"progress-bar\";i:1;s:12:\"feature-list\";i:1;s:12:\"product-grid\";i:1;s:14:\"contact-form-7\";i:1;s:7:\"weforms\";i:1;s:10:\"ninja-form\";i:1;s:9:\"formstack\";i:1;s:12:\"gravity-form\";i:1;s:12:\"caldera-form\";i:1;s:7:\"wpforms\";i:1;s:10:\"fluentform\";i:1;s:24:\"betterdocs-category-grid\";i:1;s:23:\"betterdocs-category-box\";i:1;s:22:\"betterdocs-search-form\";i:1;s:12:\"sticky-video\";i:1;s:14:\"event-calendar\";i:1;s:10:\"embedpress\";i:1;s:12:\"woo-checkout\";i:1;s:14:\"eael-promotion\";i:1;s:21:\"eael-reading-progress\";i:1;s:21:\"eael-table-of-content\";i:1;s:20:\"eael-post-duplicator\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("667", "wpdeveloper_plugins_data", "a:1:{s:25:\"essential_adons_elementor\";a:3:{s:16:\"notice_will_show\";a:1:{s:6:\"upsale\";i:1590575717;}s:4:\"time\";i:1589409317;s:7:\"version\";s:5:\"3.9.4\";}}", "yes");
INSERT INTO `lt_options` VALUES("668", "eael_version", "3.9.4", "yes");
INSERT INTO `lt_options` VALUES("669", "wpins_essential_adons_elementor_force_tracked", "1", "yes");
INSERT INTO `lt_options` VALUES("714", "action_scheduler_hybrid_store_demarkation", "165", "yes");
INSERT INTO `lt_options` VALUES("715", "schema-ActionScheduler_StoreSchema", "3.0.1589437683", "yes");
INSERT INTO `lt_options` VALUES("716", "schema-ActionScheduler_LoggerSchema", "2.0.1589437683", "yes");
INSERT INTO `lt_options` VALUES("719", "woocommerce_store_address", "Jakarta", "yes");
INSERT INTO `lt_options` VALUES("720", "woocommerce_store_address_2", "", "yes");
INSERT INTO `lt_options` VALUES("721", "woocommerce_store_city", "Jakarta", "yes");
INSERT INTO `lt_options` VALUES("722", "woocommerce_default_country", "ID:JK", "yes");
INSERT INTO `lt_options` VALUES("723", "woocommerce_store_postcode", "11000", "yes");
INSERT INTO `lt_options` VALUES("724", "woocommerce_allowed_countries", "all", "yes");
INSERT INTO `lt_options` VALUES("725", "woocommerce_all_except_countries", "a:0:{}", "yes");
INSERT INTO `lt_options` VALUES("726", "woocommerce_specific_allowed_countries", "a:0:{}", "yes");
INSERT INTO `lt_options` VALUES("727", "woocommerce_ship_to_countries", "", "yes");
INSERT INTO `lt_options` VALUES("728", "woocommerce_specific_ship_to_countries", "a:0:{}", "yes");
INSERT INTO `lt_options` VALUES("729", "woocommerce_default_customer_address", "base", "yes");
INSERT INTO `lt_options` VALUES("730", "woocommerce_calc_taxes", "no", "yes");
INSERT INTO `lt_options` VALUES("731", "woocommerce_enable_coupons", "yes", "yes");
INSERT INTO `lt_options` VALUES("732", "woocommerce_calc_discounts_sequentially", "yes", "no");
INSERT INTO `lt_options` VALUES("733", "woocommerce_currency", "IDR", "yes");
INSERT INTO `lt_options` VALUES("734", "woocommerce_currency_pos", "left_space", "yes");
INSERT INTO `lt_options` VALUES("735", "woocommerce_price_thousand_sep", ".", "yes");
INSERT INTO `lt_options` VALUES("736", "woocommerce_price_decimal_sep", ",", "yes");
INSERT INTO `lt_options` VALUES("737", "woocommerce_price_num_decimals", "0", "yes");
INSERT INTO `lt_options` VALUES("738", "woocommerce_shop_page_id", "166", "yes");
INSERT INTO `lt_options` VALUES("739", "woocommerce_cart_redirect_after_add", "yes", "yes");
INSERT INTO `lt_options` VALUES("740", "woocommerce_enable_ajax_add_to_cart", "yes", "yes");
INSERT INTO `lt_options` VALUES("741", "woocommerce_placeholder_image", "165", "yes");
INSERT INTO `lt_options` VALUES("742", "woocommerce_weight_unit", "kg", "yes");
INSERT INTO `lt_options` VALUES("743", "woocommerce_dimension_unit", "cm", "yes");
INSERT INTO `lt_options` VALUES("744", "woocommerce_enable_reviews", "no", "yes");
INSERT INTO `lt_options` VALUES("745", "woocommerce_review_rating_verification_label", "yes", "no");
INSERT INTO `lt_options` VALUES("746", "woocommerce_review_rating_verification_required", "no", "no");
INSERT INTO `lt_options` VALUES("747", "woocommerce_enable_review_rating", "yes", "yes");
INSERT INTO `lt_options` VALUES("748", "woocommerce_review_rating_required", "yes", "no");
INSERT INTO `lt_options` VALUES("749", "woocommerce_manage_stock", "yes", "yes");
INSERT INTO `lt_options` VALUES("750", "woocommerce_hold_stock_minutes", "60", "no");
INSERT INTO `lt_options` VALUES("751", "woocommerce_notify_low_stock", "yes", "no");
INSERT INTO `lt_options` VALUES("752", "woocommerce_notify_no_stock", "yes", "no");
INSERT INTO `lt_options` VALUES("753", "woocommerce_stock_email_recipient", "st@pakar.co.id", "no");
INSERT INTO `lt_options` VALUES("754", "woocommerce_notify_low_stock_amount", "2", "no");
INSERT INTO `lt_options` VALUES("755", "woocommerce_notify_no_stock_amount", "0", "yes");
INSERT INTO `lt_options` VALUES("756", "woocommerce_hide_out_of_stock_items", "no", "yes");
INSERT INTO `lt_options` VALUES("757", "woocommerce_stock_format", "", "yes");
INSERT INTO `lt_options` VALUES("758", "woocommerce_file_download_method", "force", "no");
INSERT INTO `lt_options` VALUES("759", "woocommerce_downloads_require_login", "no", "no");
INSERT INTO `lt_options` VALUES("760", "woocommerce_downloads_grant_access_after_payment", "yes", "no");
INSERT INTO `lt_options` VALUES("761", "woocommerce_downloads_add_hash_to_filename", "yes", "yes");
INSERT INTO `lt_options` VALUES("762", "woocommerce_prices_include_tax", "no", "yes");
INSERT INTO `lt_options` VALUES("763", "woocommerce_tax_based_on", "shipping", "yes");
INSERT INTO `lt_options` VALUES("764", "woocommerce_shipping_tax_class", "inherit", "yes");
INSERT INTO `lt_options` VALUES("765", "woocommerce_tax_round_at_subtotal", "no", "yes");
INSERT INTO `lt_options` VALUES("766", "woocommerce_tax_classes", "", "yes");
INSERT INTO `lt_options` VALUES("767", "woocommerce_tax_display_shop", "excl", "yes");
INSERT INTO `lt_options` VALUES("768", "woocommerce_tax_display_cart", "excl", "yes");
INSERT INTO `lt_options` VALUES("769", "woocommerce_price_display_suffix", "", "yes");
INSERT INTO `lt_options` VALUES("770", "woocommerce_tax_total_display", "itemized", "no");
INSERT INTO `lt_options` VALUES("771", "woocommerce_enable_shipping_calc", "yes", "no");
INSERT INTO `lt_options` VALUES("772", "woocommerce_shipping_cost_requires_address", "no", "yes");
INSERT INTO `lt_options` VALUES("773", "woocommerce_ship_to_destination", "billing", "no");
INSERT INTO `lt_options` VALUES("774", "woocommerce_shipping_debug_mode", "no", "yes");
INSERT INTO `lt_options` VALUES("775", "woocommerce_enable_guest_checkout", "no", "no");
INSERT INTO `lt_options` VALUES("776", "woocommerce_enable_checkout_login_reminder", "yes", "no");
INSERT INTO `lt_options` VALUES("777", "woocommerce_enable_signup_and_login_from_checkout", "yes", "no");
INSERT INTO `lt_options` VALUES("778", "woocommerce_enable_myaccount_registration", "yes", "no");
INSERT INTO `lt_options` VALUES("779", "woocommerce_registration_generate_username", "yes", "no");
INSERT INTO `lt_options` VALUES("780", "woocommerce_registration_generate_password", "no", "no");
INSERT INTO `lt_options` VALUES("781", "woocommerce_erasure_request_removes_order_data", "no", "no");
INSERT INTO `lt_options` VALUES("782", "woocommerce_erasure_request_removes_download_data", "no", "no");
INSERT INTO `lt_options` VALUES("783", "woocommerce_allow_bulk_remove_personal_data", "no", "no");
INSERT INTO `lt_options` VALUES("784", "woocommerce_registration_privacy_policy_text", "Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].", "yes");
INSERT INTO `lt_options` VALUES("785", "woocommerce_checkout_privacy_policy_text", "Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].", "yes");
INSERT INTO `lt_options` VALUES("786", "woocommerce_delete_inactive_accounts", "a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}", "no");
INSERT INTO `lt_options` VALUES("787", "woocommerce_trash_pending_orders", "a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}", "no");
INSERT INTO `lt_options` VALUES("788", "woocommerce_trash_failed_orders", "a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}", "no");
INSERT INTO `lt_options` VALUES("789", "woocommerce_trash_cancelled_orders", "a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:4:\"days\";}", "no");
INSERT INTO `lt_options` VALUES("790", "woocommerce_anonymize_completed_orders", "a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}", "no");
INSERT INTO `lt_options` VALUES("791", "woocommerce_email_from_name", "Lightrees Grup", "no");
INSERT INTO `lt_options` VALUES("792", "woocommerce_email_from_address", "st@pakar.co.id", "no");
INSERT INTO `lt_options` VALUES("793", "woocommerce_email_header_image", "", "no");
INSERT INTO `lt_options` VALUES("794", "woocommerce_email_footer_text", "{site_title} &mdash; Built with {WooCommerce}", "no");
INSERT INTO `lt_options` VALUES("795", "woocommerce_email_base_color", "#96588a", "no");
INSERT INTO `lt_options` VALUES("796", "woocommerce_email_background_color", "#f7f7f7", "no");
INSERT INTO `lt_options` VALUES("797", "woocommerce_email_body_background_color", "#ffffff", "no");
INSERT INTO `lt_options` VALUES("798", "woocommerce_email_text_color", "#3c3c3c", "no");
INSERT INTO `lt_options` VALUES("799", "woocommerce_cart_page_id", "167", "no");
INSERT INTO `lt_options` VALUES("800", "woocommerce_checkout_page_id", "168", "no");
INSERT INTO `lt_options` VALUES("801", "woocommerce_myaccount_page_id", "169", "no");
INSERT INTO `lt_options` VALUES("802", "woocommerce_terms_page_id", "", "no");
INSERT INTO `lt_options` VALUES("803", "woocommerce_checkout_pay_endpoint", "order-pay", "yes");
INSERT INTO `lt_options` VALUES("804", "woocommerce_checkout_order_received_endpoint", "order-received", "yes");
INSERT INTO `lt_options` VALUES("805", "woocommerce_myaccount_add_payment_method_endpoint", "add-payment-method", "yes");
INSERT INTO `lt_options` VALUES("806", "woocommerce_myaccount_delete_payment_method_endpoint", "delete-payment-method", "yes");
INSERT INTO `lt_options` VALUES("807", "woocommerce_myaccount_set_default_payment_method_endpoint", "set-default-payment-method", "yes");
INSERT INTO `lt_options` VALUES("808", "woocommerce_myaccount_orders_endpoint", "orders", "yes");
INSERT INTO `lt_options` VALUES("809", "woocommerce_myaccount_view_order_endpoint", "view-order", "yes");
INSERT INTO `lt_options` VALUES("810", "woocommerce_myaccount_downloads_endpoint", "downloads", "yes");
INSERT INTO `lt_options` VALUES("811", "woocommerce_myaccount_edit_account_endpoint", "edit-account", "yes");
INSERT INTO `lt_options` VALUES("812", "woocommerce_myaccount_edit_address_endpoint", "edit-address", "yes");
INSERT INTO `lt_options` VALUES("813", "woocommerce_myaccount_payment_methods_endpoint", "payment-methods", "yes");
INSERT INTO `lt_options` VALUES("814", "woocommerce_myaccount_lost_password_endpoint", "lost-password", "yes");
INSERT INTO `lt_options` VALUES("815", "woocommerce_logout_endpoint", "customer-logout", "yes");
INSERT INTO `lt_options` VALUES("816", "woocommerce_api_enabled", "no", "yes");
INSERT INTO `lt_options` VALUES("817", "woocommerce_allow_tracking", "no", "no");
INSERT INTO `lt_options` VALUES("818", "woocommerce_show_marketplace_suggestions", "yes", "no");
INSERT INTO `lt_options` VALUES("819", "woocommerce_single_image_width", "600", "yes");
INSERT INTO `lt_options` VALUES("820", "woocommerce_thumbnail_image_width", "300", "yes");
INSERT INTO `lt_options` VALUES("821", "woocommerce_checkout_highlight_required_fields", "yes", "yes");
INSERT INTO `lt_options` VALUES("822", "woocommerce_demo_store", "no", "no");
INSERT INTO `lt_options` VALUES("823", "woocommerce_permalinks", "a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}", "yes");
INSERT INTO `lt_options` VALUES("824", "current_theme_supports_woocommerce", "yes", "yes");
INSERT INTO `lt_options` VALUES("825", "woocommerce_queue_flush_rewrite_rules", "no", "yes");
INSERT INTO `lt_options` VALUES("828", "default_product_cat", "16", "yes");
INSERT INTO `lt_options` VALUES("829", "woocommerce_admin_notices", "a:1:{i:0;s:7:\"install\";}", "yes");
INSERT INTO `lt_options` VALUES("834", "action_scheduler_lock_async-request-runner", "1590545182", "yes");
INSERT INTO `lt_options` VALUES("835", "woocommerce_maxmind_geolocation_settings", "a:1:{s:15:\"database_prefix\";s:32:\"4lI49HkXlyWsqYzqMCk8zZJ9h9WfNUKj\";}", "yes");
INSERT INTO `lt_options` VALUES("837", "widget_woocommerce_widget_cart", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("838", "widget_woocommerce_layered_nav_filters", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("839", "widget_woocommerce_layered_nav", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("840", "widget_woocommerce_price_filter", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("841", "widget_woocommerce_product_categories", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("842", "widget_woocommerce_product_search", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("843", "widget_woocommerce_product_tag_cloud", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("844", "widget_woocommerce_products", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("845", "widget_woocommerce_recently_viewed_products", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("846", "widget_woocommerce_top_rated_products", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("847", "widget_woocommerce_recent_reviews", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("848", "widget_woocommerce_rating_filter", "a:1:{s:12:\"_multiwidget\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("849", "woocommerce_onboarding_opt_in", "yes", "yes");
INSERT INTO `lt_options` VALUES("852", "woocommerce_admin_version", "1.1.1", "yes");
INSERT INTO `lt_options` VALUES("853", "woocommerce_admin_install_timestamp", "1589437688", "yes");
INSERT INTO `lt_options` VALUES("858", "woocommerce_meta_box_errors", "a:0:{}", "yes");
INSERT INTO `lt_options` VALUES("859", "woocommerce_admin_last_orders_milestone", "1", "yes");
INSERT INTO `lt_options` VALUES("860", "woocommerce_onboarding_profile", "a:9:{s:9:\"completed\";b:1;s:12:\"setup_client\";b:0;s:8:\"industry\";a:1:{i:0;a:2:{s:4:\"slug\";s:5:\"other\";s:6:\"detail\";s:12:\"Online Class\";}}s:13:\"product_types\";a:1:{i:0;s:11:\"memberships\";}s:13:\"product_count\";s:4:\"1-10\";s:14:\"selling_venues\";s:2:\"no\";s:19:\"business_extensions\";a:3:{i:0;s:24:\"facebook-for-woocommerce\";i:1;s:25:\"mailchimp-for-woocommerce\";i:2;s:27:\"kliken-marketing-for-google\";}s:5:\"theme\";s:9:\"lightrees\";s:7:\"plugins\";s:7:\"skipped\";}", "yes");
INSERT INTO `lt_options` VALUES("897", "woocommerce_maybe_regenerate_images_hash", "991b1ca641921cf0f5baf7a2fe85861b", "yes");
INSERT INTO `lt_options` VALUES("923", "woocommerce_task_list_welcome_modal_dismissed", "1", "yes");
INSERT INTO `lt_options` VALUES("930", "wc_facebook_for_woocommerce_lifecycle_events", "[{\"name\":\"install\",\"time\":1589463136,\"version\":\"1.11.2\"}]", "no");
INSERT INTO `lt_options` VALUES("931", "wc_facebook_for_woocommerce_version", "1.11.2", "yes");
INSERT INTO `lt_options` VALUES("939", "woocommerce_marketplace_suggestions", "a:2:{s:11:\"suggestions\";a:26:{i:0;a:4:{s:4:\"slug\";s:28:\"product-edit-meta-tab-header\";s:7:\"context\";s:28:\"product-edit-meta-tab-header\";s:5:\"title\";s:22:\"Recommended extensions\";s:13:\"allow-dismiss\";b:0;}i:1;a:6:{s:4:\"slug\";s:39:\"product-edit-meta-tab-footer-browse-all\";s:7:\"context\";s:28:\"product-edit-meta-tab-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:2;a:9:{s:4:\"slug\";s:46:\"product-edit-mailchimp-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-mailchimp\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/mailchimp-for-memberships.svg\";s:5:\"title\";s:25:\"Mailchimp for Memberships\";s:4:\"copy\";s:79:\"Completely automate your email lists by syncing membership changes to Mailchimp\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/mailchimp-woocommerce-memberships/\";}i:3;a:9:{s:4:\"slug\";s:19:\"product-edit-addons\";s:7:\"product\";s:26:\"woocommerce-product-addons\";s:14:\"show-if-active\";a:2:{i:0;s:25:\"woocommerce-subscriptions\";i:1;s:20:\"woocommerce-bookings\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-add-ons.svg\";s:5:\"title\";s:15:\"Product Add-Ons\";s:4:\"copy\";s:93:\"Offer add-ons like gift wrapping, special messages or other special options for your products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-add-ons/\";}i:4;a:9:{s:4:\"slug\";s:46:\"product-edit-woocommerce-subscriptions-gifting\";s:7:\"product\";s:33:\"woocommerce-subscriptions-gifting\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/gifting-for-subscriptions.svg\";s:5:\"title\";s:25:\"Gifting for Subscriptions\";s:4:\"copy\";s:70:\"Let customers buy subscriptions for others - they\'re the ultimate gift\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/woocommerce-subscriptions-gifting/\";}i:5;a:9:{s:4:\"slug\";s:42:\"product-edit-teams-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-for-teams\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:112:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/teams-for-memberships.svg\";s:5:\"title\";s:21:\"Teams for Memberships\";s:4:\"copy\";s:123:\"Adds B2B functionality to WooCommerce Memberships, allowing sites to sell team, group, corporate, or family member accounts\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/teams-woocommerce-memberships/\";}i:6;a:8:{s:4:\"slug\";s:29:\"product-edit-variation-images\";s:7:\"product\";s:39:\"woocommerce-additional-variation-images\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/additional-variation-images.svg\";s:5:\"title\";s:27:\"Additional Variation Images\";s:4:\"copy\";s:72:\"Showcase your products in the best light with a image for each variation\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:73:\"https://woocommerce.com/products/woocommerce-additional-variation-images/\";}i:7;a:9:{s:4:\"slug\";s:47:\"product-edit-woocommerce-subscription-downloads\";s:7:\"product\";s:34:\"woocommerce-subscription-downloads\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscription-downloads.svg\";s:5:\"title\";s:22:\"Subscription Downloads\";s:4:\"copy\";s:57:\"Give customers special downloads with their subscriptions\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:68:\"https://woocommerce.com/products/woocommerce-subscription-downloads/\";}i:8;a:8:{s:4:\"slug\";s:31:\"product-edit-min-max-quantities\";s:7:\"product\";s:30:\"woocommerce-min-max-quantities\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/min-max-quantities.svg\";s:5:\"title\";s:18:\"Min/Max Quantities\";s:4:\"copy\";s:81:\"Specify minimum and maximum allowed product quantities for orders to be completed\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/min-max-quantities/\";}i:9;a:8:{s:4:\"slug\";s:28:\"product-edit-name-your-price\";s:7:\"product\";s:27:\"woocommerce-name-your-price\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/name-your-price.svg\";s:5:\"title\";s:15:\"Name Your Price\";s:4:\"copy\";s:70:\"Let customers pay what they want - useful for donations, tips and more\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/name-your-price/\";}i:10;a:8:{s:4:\"slug\";s:42:\"product-edit-woocommerce-one-page-checkout\";s:7:\"product\";s:29:\"woocommerce-one-page-checkout\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/one-page-checkout.svg\";s:5:\"title\";s:17:\"One Page Checkout\";s:4:\"copy\";s:92:\"Don\'t make customers click around - let them choose products, checkout & pay all on one page\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/woocommerce-one-page-checkout/\";}i:11;a:4:{s:4:\"slug\";s:19:\"orders-empty-header\";s:7:\"context\";s:24:\"orders-list-empty-header\";s:5:\"title\";s:20:\"Tools for your store\";s:13:\"allow-dismiss\";b:0;}i:12;a:6:{s:4:\"slug\";s:30:\"orders-empty-footer-browse-all\";s:7:\"context\";s:24:\"orders-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:13;a:8:{s:4:\"slug\";s:19:\"orders-empty-zapier\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:18:\"woocommerce-zapier\";s:4:\"icon\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/zapier.svg\";s:5:\"title\";s:6:\"Zapier\";s:4:\"copy\";s:88:\"Save time and increase productivity by connecting your store to more than 1000+ services\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/woocommerce-zapier/\";}i:14;a:8:{s:4:\"slug\";s:30:\"orders-empty-shipment-tracking\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:29:\"woocommerce-shipment-tracking\";s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipment-tracking.svg\";s:5:\"title\";s:17:\"Shipment Tracking\";s:4:\"copy\";s:86:\"Let customers know when their orders will arrive by adding shipment tracking to emails\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:51:\"https://woocommerce.com/products/shipment-tracking/\";}i:15;a:8:{s:4:\"slug\";s:32:\"orders-empty-table-rate-shipping\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:31:\"woocommerce-table-rate-shipping\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/table-rate-shipping.svg\";s:5:\"title\";s:19:\"Table Rate Shipping\";s:4:\"copy\";s:122:\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/table-rate-shipping/\";}i:16;a:8:{s:4:\"slug\";s:40:\"orders-empty-shipping-carrier-extensions\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipping-carrier-extensions.svg\";s:5:\"title\";s:27:\"Shipping Carrier Extensions\";s:4:\"copy\";s:116:\"Show live rates from FedEx, UPS, USPS and more directly on your store - never under or overcharge for shipping again\";s:11:\"button-text\";s:13:\"Find Carriers\";s:8:\"promoted\";s:26:\"category-shipping-carriers\";s:3:\"url\";s:99:\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/shipping-carriers/\";}i:17;a:8:{s:4:\"slug\";s:32:\"orders-empty-google-product-feed\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-product-feeds\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/google-product-feed.svg\";s:5:\"title\";s:19:\"Google Product Feed\";s:4:\"copy\";s:76:\"Increase sales by letting customers find you when they\'re shopping on Google\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/google-product-feed/\";}i:18;a:4:{s:4:\"slug\";s:35:\"products-empty-header-product-types\";s:7:\"context\";s:26:\"products-list-empty-header\";s:5:\"title\";s:23:\"Other types of products\";s:13:\"allow-dismiss\";b:0;}i:19;a:6:{s:4:\"slug\";s:32:\"products-empty-footer-browse-all\";s:7:\"context\";s:26:\"products-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:20;a:8:{s:4:\"slug\";s:30:\"products-empty-product-vendors\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-vendors\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-vendors.svg\";s:5:\"title\";s:15:\"Product Vendors\";s:4:\"copy\";s:47:\"Turn your store into a multi-vendor marketplace\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-vendors/\";}i:21;a:8:{s:4:\"slug\";s:26:\"products-empty-memberships\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:23:\"woocommerce-memberships\";s:4:\"icon\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/memberships.svg\";s:5:\"title\";s:11:\"Memberships\";s:4:\"copy\";s:76:\"Give members access to restricted content or products, for a fee or for free\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:57:\"https://woocommerce.com/products/woocommerce-memberships/\";}i:22;a:9:{s:4:\"slug\";s:35:\"products-empty-woocommerce-deposits\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-deposits\";s:14:\"show-if-active\";a:1:{i:0;s:20:\"woocommerce-bookings\";}s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/deposits.svg\";s:5:\"title\";s:8:\"Deposits\";s:4:\"copy\";s:75:\"Make it easier for customers to pay by offering a deposit or a payment plan\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-deposits/\";}i:23;a:8:{s:4:\"slug\";s:40:\"products-empty-woocommerce-subscriptions\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-subscriptions\";s:4:\"icon\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:13:\"Subscriptions\";s:4:\"copy\";s:97:\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:59:\"https://woocommerce.com/products/woocommerce-subscriptions/\";}i:24;a:8:{s:4:\"slug\";s:35:\"products-empty-woocommerce-bookings\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-bookings\";s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/bookings.svg\";s:5:\"title\";s:8:\"Bookings\";s:4:\"copy\";s:99:\"Allow customers to book appointments, make reservations or rent equipment without leaving your site\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-bookings/\";}i:25;a:8:{s:4:\"slug\";s:30:\"products-empty-product-bundles\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-bundles\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-bundles.svg\";s:5:\"title\";s:15:\"Product Bundles\";s:4:\"copy\";s:49:\"Offer customizable bundles and assembled products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-bundles/\";}}s:7:\"updated\";i:1590077942;}", "no");
INSERT INTO `lt_options` VALUES("997", "elementor_tracker_notice", "1", "yes");
INSERT INTO `lt_options` VALUES("998", "wpins_block_notice", "a:1:{s:25:\"essential_adons_elementor\";s:25:\"essential_adons_elementor\";}", "yes");
INSERT INTO `lt_options` VALUES("1054", "woocommerce_task_list_tracked_completed_tasks", "a:3:{i:0;s:8:\"products\";i:1;s:8:\"shipping\";i:2;s:8:\"payments\";}", "yes");
INSERT INTO `lt_options` VALUES("1064", "woocommerce_midtrans_settings", "a:19:{s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:27:\"Online Payment via Midtrans\";s:11:\"description\";s:16:\"Pay via Midtrans\";s:11:\"merchant_id\";s:10:\"G159263040\";s:27:\"select_midtrans_environment\";s:7:\"sandbox\";s:21:\"client_key_v2_sandbox\";s:30:\"SB-Mid-client-KwiJQYqheQVU-VsB\";s:21:\"server_key_v2_sandbox\";s:38:\"SB-Mid-server-Hfjei1fpnM9wQz9141QshthV\";s:24:\"client_key_v2_production\";s:0:\"\";s:24:\"server_key_v2_production\";s:0:\"\";s:16:\"enable_3d_secure\";s:3:\"yes\";s:15:\"enable_savecard\";s:3:\"yes\";s:15:\"enable_redirect\";s:2:\"no\";s:13:\"custom_expiry\";s:11:\"120 Minutes\";s:13:\"custom_fields\";s:0:\"\";s:21:\"enable_map_finish_url\";s:3:\"yes\";s:13:\"ganalytics_id\";s:0:\"\";s:29:\"enable_immediate_reduce_stock\";s:2:\"no\";s:21:\"ignore_pending_status\";s:2:\"no\";s:7:\"logging\";s:2:\"no\";}", "yes");
INSERT INTO `lt_options` VALUES("1080", "nav_menu_options", "a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}", "yes");
INSERT INTO `lt_options` VALUES("1310", "woocommerce_sales_record_date", "2020-05-20", "yes");
INSERT INTO `lt_options` VALUES("1311", "woocommerce_sales_record_amount", "1750000", "yes");
INSERT INTO `lt_options` VALUES("1367", "elementor_log", "a:1:{s:32:\"b71619369d40c320afc1ebabd7683e16\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:5:\"19954\";s:7:\"\0*\0file\";s:121:\"http://meetingmastery.lightrees.com/wp-content/plugins/elementor/assets/lib/backbone/backbone.marionette.min.js?ver=2.4.5\";s:7:\"\0*\0line\";s:2:\"22\";s:7:\"\0*\0date\";s:19:\"2020-05-15 10:50:12\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:81:\"View (cid: \\&quot;view2733\\&quot;) has already been destroyed and cannot be used.\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-05-15 10:50:12\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1589539812\";s:7:\"message\";s:71:\"View (cid: \\\"view2733\\\") has already been destroyed and cannot be used.\";s:3:\"url\";s:121:\"http://meetingmastery.lightrees.com/wp-content/plugins/elementor/assets/lib/backbone/backbone.marionette.min.js?ver=2.4.5\";s:4:\"line\";s:2:\"22\";s:6:\"column\";s:5:\"19954\";}}}", "no");
INSERT INTO `lt_options` VALUES("1755", "woocommerce_version", "4.1.0", "yes");
INSERT INTO `lt_options` VALUES("1756", "woocommerce_db_version", "4.1.0", "yes");
INSERT INTO `lt_options` VALUES("1764", "woocommerce_task_list_payments", "a:1:{s:9:\"completed\";i:1;}", "yes");
INSERT INTO `lt_options` VALUES("1877", "wc_facebook_for_woocommerce_is_active", "yes", "yes");
INSERT INTO `lt_options` VALUES("1878", "wc_facebook_feed_url_secret", "112f14d899acb42263aa7a23d3ff4d3a", "yes");
INSERT INTO `lt_options` VALUES("1881", "wc_facebook_feed_migrated", "yes", "yes");
INSERT INTO `lt_options` VALUES("1882", "wc_facebook_product_catalog_id", "736277113782661", "yes");
INSERT INTO `lt_options` VALUES("1883", "woocommerce_facebookcommerce_settings", "a:15:{s:17:\"facebook_pixel_id\";s:15:\"942210502860501\";s:24:\"enable_advanced_matching\";s:3:\"yes\";s:16:\"enable_messenger\";s:2:\"no\";s:17:\"enable_debug_mode\";s:2:\"no\";s:16:\"facebook_page_id\";s:15:\"108754503798506\";i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";s:19:\"enable_product_sync\";s:3:\"yes\";s:29:\"excluded_product_category_ids\";s:0:\"\";s:24:\"excluded_product_tag_ids\";s:0:\"\";s:24:\"product_description_mode\";s:8:\"standard\";s:16:\"messenger_locale\";s:5:\"en_US\";s:18:\"messenger_greeting\";s:52:\"Hi! We\'re here to answer any questions you may have.\";s:19:\"messenger_color_hex\";s:7:\"#0084ff\";}", "yes");
INSERT INTO `lt_options` VALUES("1885", "wc_facebook_external_merchant_settings_id", "270464310972990", "yes");
INSERT INTO `lt_options` VALUES("1887", "wc_facebook_pixel_install_time", "1589776175", "yes");
INSERT INTO `lt_options` VALUES("1889", "facebook_config", "a:2:{s:8:\"pixel_id\";s:15:\"942210502860501\";s:7:\"use_pii\";b:1;}", "yes");
INSERT INTO `lt_options` VALUES("1892", "fb_info_banner_last_query_time", "2020-05-20 15:47:07", "yes");
INSERT INTO `lt_options` VALUES("1986", "duplicator_lite_inst_hash_notice", "1", "yes");
INSERT INTO `lt_options` VALUES("2028", "product_cat_children", "a:0:{}", "yes");
INSERT INTO `lt_options` VALUES("2359", "_transient_woocommerce_webhook_ids_status_active", "a:0:{}", "yes");
INSERT INTO `lt_options` VALUES("2360", "_transient_wc_attribute_taxonomies", "a:0:{}", "yes");
INSERT INTO `lt_options` VALUES("2362", "_transient_timeout_wc_term_counts", "1592554490", "no");
INSERT INTO `lt_options` VALUES("2363", "_transient_wc_term_counts", "a:1:{i:16;s:1:\"1\";}", "no");
INSERT INTO `lt_options` VALUES("2364", "_transient_wc_facebook_average_feed_generation_time", "0.2556095123291", "yes");
INSERT INTO `lt_options` VALUES("2369", "_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.4.1.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.4.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.4.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.4.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.4.1\";s:7:\"version\";s:5:\"5.4.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1590544132;s:15:\"version_checked\";s:5:\"5.4.1\";s:12:\"translations\";a:0:{}}", "no");
INSERT INTO `lt_options` VALUES("2381", "_transient_timeout_eael_transient_elements_17c52d88823998463a8455c474cb7e1a", "1621498568", "no");
INSERT INTO `lt_options` VALUES("2382", "_transient_eael_transient_elements_17c52d88823998463a8455c474cb7e1a", "a:1:{i:0;s:11:\"price-table\";}", "no");
INSERT INTO `lt_options` VALUES("2387", "_transient_timeout_sv_wc_plugin_wc_versions", "1590567460", "no");
INSERT INTO `lt_options` VALUES("2388", "_transient_sv_wc_plugin_wc_versions", "a:60:{i:0;s:5:\"4.1.0\";i:1;s:5:\"4.0.1\";i:2;s:5:\"4.0.0\";i:3;s:5:\"3.9.3\";i:4;s:5:\"3.9.2\";i:5;s:5:\"3.9.1\";i:6;s:5:\"3.9.0\";i:7;s:5:\"3.8.1\";i:8;s:5:\"3.8.0\";i:9;s:5:\"3.7.1\";i:10;s:5:\"3.7.0\";i:11;s:5:\"3.6.5\";i:12;s:5:\"3.6.4\";i:13;s:5:\"3.6.3\";i:14;s:5:\"3.6.2\";i:15;s:5:\"3.6.1\";i:16;s:5:\"3.6.0\";i:17;s:5:\"3.5.8\";i:18;s:5:\"3.5.7\";i:19;s:5:\"3.5.6\";i:20;s:5:\"3.5.5\";i:21;s:5:\"3.5.4\";i:22;s:5:\"3.5.3\";i:23;s:5:\"3.5.2\";i:24;s:5:\"3.5.1\";i:25;s:5:\"3.5.0\";i:26;s:5:\"3.4.7\";i:27;s:5:\"3.4.6\";i:28;s:5:\"3.4.5\";i:29;s:5:\"3.4.4\";i:30;s:5:\"3.4.3\";i:31;s:5:\"3.4.2\";i:32;s:5:\"3.4.1\";i:33;s:5:\"3.4.0\";i:34;s:5:\"3.3.5\";i:35;s:5:\"3.3.4\";i:36;s:5:\"3.3.3\";i:37;s:5:\"3.3.2\";i:38;s:5:\"3.3.1\";i:39;s:5:\"3.3.0\";i:40;s:5:\"3.2.6\";i:41;s:5:\"3.2.5\";i:42;s:5:\"3.2.4\";i:43;s:5:\"3.2.3\";i:44;s:5:\"3.2.2\";i:45;s:5:\"3.2.1\";i:46;s:5:\"3.2.0\";i:47;s:5:\"3.1.2\";i:48;s:5:\"3.1.1\";i:49;s:5:\"3.1.0\";i:50;s:5:\"3.0.9\";i:51;s:5:\"3.0.8\";i:52;s:5:\"3.0.7\";i:53;s:5:\"3.0.6\";i:54;s:5:\"3.0.5\";i:55;s:5:\"3.0.4\";i:56;s:5:\"3.0.3\";i:57;s:5:\"3.0.2\";i:58;s:5:\"3.0.1\";i:59;s:5:\"3.0.0\";}", "no");
INSERT INTO `lt_options` VALUES("2391", "action_scheduler_migration_status", "complete", "yes");
INSERT INTO `lt_options` VALUES("2392", "_site_transient_timeout_browser_31f552011cd49d12bc3cd930bb193459", "1590567516", "no");
INSERT INTO `lt_options` VALUES("2393", "_site_transient_browser_31f552011cd49d12bc3cd930bb193459", "a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"81.0.4044.138\";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");
INSERT INTO `lt_options` VALUES("2394", "_site_transient_timeout_php_check_a5907c2ea4d6fbd7e531b3aa7734f0e4", "1590567517", "no");
INSERT INTO `lt_options` VALUES("2395", "_site_transient_php_check_a5907c2ea4d6fbd7e531b3aa7734f0e4", "a:5:{s:19:\"recommended_version\";s:3:\"7.3\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:0;s:13:\"is_acceptable\";b:0;}", "no");
INSERT INTO `lt_options` VALUES("2400", "_transient_timeout_wc_low_stock_count", "1592554722", "no");
INSERT INTO `lt_options` VALUES("2401", "_transient_wc_low_stock_count", "0", "no");
INSERT INTO `lt_options` VALUES("2402", "_transient_timeout_wc_outofstock_count", "1592554722", "no");
INSERT INTO `lt_options` VALUES("2403", "_transient_wc_outofstock_count", "0", "no");
INSERT INTO `lt_options` VALUES("2423", "_transient_product_query-transient-version", "1589962919", "yes");
INSERT INTO `lt_options` VALUES("2437", "_transient_shipping-transient-version", "1589963829", "yes");
INSERT INTO `lt_options` VALUES("2438", "_transient_timeout_wc_shipping_method_count_legacy", "1592555829", "no");
INSERT INTO `lt_options` VALUES("2439", "_transient_wc_shipping_method_count_legacy", "a:2:{s:7:\"version\";s:10:\"1589963829\";s:5:\"value\";i:1;}", "no");
INSERT INTO `lt_options` VALUES("2441", "_transient_orders-transient-version", "1590202685", "yes");
INSERT INTO `lt_options` VALUES("2446", "_transient_woocommerce_reports-transient-version", "1590485616", "yes");
INSERT INTO `lt_options` VALUES("2455", "_transient_timeout_pum_alerts_translation_status", "1590569066", "no");
INSERT INTO `lt_options` VALUES("2456", "_transient_pum_alerts_translation_status", "a:9:{i:0;a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:6:\"1.10.1\";s:7:\"updated\";s:19:\"2020-05-04 20:21:25\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/translation/plugin/popup-maker/1.10.1/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}}i:1;a:7:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:6:\"1.10.1\";s:7:\"updated\";s:19:\"2020-02-27 06:19:21\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/translation/plugin/popup-maker/1.10.1/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}}i:2;a:7:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:6:\"1.10.1\";s:7:\"updated\";s:19:\"2020-04-25 13:26:42\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/translation/plugin/popup-maker/1.10.1/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}}i:3;a:7:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:6:\"1.10.1\";s:7:\"updated\";s:19:\"2020-04-23 17:02:10\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/translation/plugin/popup-maker/1.10.1/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}}i:4;a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:6:\"1.10.1\";s:7:\"updated\";s:19:\"2020-04-21 10:58:56\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/translation/plugin/popup-maker/1.10.1/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}}i:5;a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:6:\"1.10.1\";s:7:\"updated\";s:19:\"2020-05-01 16:57:54\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/translation/plugin/popup-maker/1.10.1/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}}i:6;a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:6:\"1.10.1\";s:7:\"updated\";s:19:\"2020-04-26 13:22:03\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/translation/plugin/popup-maker/1.10.1/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}}i:7;a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:6:\"1.10.1\";s:7:\"updated\";s:19:\"2020-04-25 13:22:24\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/translation/plugin/popup-maker/1.10.1/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}}i:8;a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:6:\"1.10.1\";s:7:\"updated\";s:19:\"2020-02-29 08:37:37\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/translation/plugin/popup-maker/1.10.1/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}}}", "no");
INSERT INTO `lt_options` VALUES("2464", "bsf_analytics_optin", "no", "yes");
INSERT INTO `lt_options` VALUES("2471", "_transient_timeout_orders-all-statuses", "1590720871", "no");
INSERT INTO `lt_options` VALUES("2472", "_transient_orders-all-statuses", "a:2:{s:7:\"version\";s:10:\"1590115891\";s:5:\"value\";a:3:{i:0;s:8:\"wc-trash\";i:1;s:12:\"wc-cancelled\";i:2;s:10:\"wc-pending\";}}", "no");
INSERT INTO `lt_options` VALUES("2612", "_transient_timeout_astra-theme-rating", "1592570366", "no");
INSERT INTO `lt_options` VALUES("2613", "_transient_astra-theme-rating", "1", "no");
INSERT INTO `lt_options` VALUES("2614", "cfdb7_view_ignore_notice", "true", "yes");
INSERT INTO `lt_options` VALUES("2657", "_site_transient_timeout_browser_99b895322d3bb585c22fd7dd93ea6223", "1590666063", "no");
INSERT INTO `lt_options` VALUES("2658", "_site_transient_browser_99b895322d3bb585c22fd7dd93ea6223", "a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"81.0.4044.138\";s:8:\"platform\";s:7:\"Android\";s:10:\"update_url\";s:0:\"\";s:7:\"img_src\";s:0:\"\";s:11:\"img_src_ssl\";s:0:\"\";s:15:\"current_version\";s:0:\"\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:1;}", "no");
INSERT INTO `lt_options` VALUES("2726", "_transient_timeout_wc_report_coupons_stats_8969e842fbf970a8a2e3aff865156ac9", "1590682733", "no");
INSERT INTO `lt_options` VALUES("2727", "_transient_wc_report_coupons_stats_8969e842fbf970a8a2e3aff865156ac9", "a:2:{s:7:\"version\";s:10:\"1590061259\";s:5:\"value\";O:8:\"stdClass\":5:{s:6:\"totals\";O:8:\"stdClass\":3:{s:12:\"orders_count\";i:0;s:6:\"amount\";d:0;s:8:\"segments\";a:0:{}}s:9:\"intervals\";a:21:{i:0;a:6:{s:8:\"interval\";s:10:\"2020-05-01\";s:10:\"date_start\";s:19:\"2020-05-01 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-04-30 17:00:00\";s:8:\"date_end\";s:19:\"2020-05-01 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2020-05-01 16:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:12:\"orders_count\";i:0;s:6:\"amount\";d:0;s:8:\"segments\";a:0:{}}}i:1;a:6:{s:8:\"interval\";s:10:\"2020-05-02\";s:10:\"date_start\";s:19:\"2020-05-02 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-05-01 17:00:00\";s:8:\"date_end\";s:19:\"2020-05-02 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2020-05-02 16:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:12:\"orders_count\";i:0;s:6:\"amount\";d:0;s:8:\"segments\";a:0:{}}}i:2;a:6:{s:8:\"interval\";s:10:\"2020-05-03\";s:10:\"date_start\";s:19:\"2020-05-03 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-05-02 17:00:00\";s:8:\"date_end\";s:19:\"2020-05-03 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2020-05-03 16:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:12:\"orders_count\";i:0;s:6:\"amount\";d:0;s:8:\"segments\";a:0:{}}}i:3;a:6:{s:8:\"interval\";s:10:\"2020-05-04\";s:10:\"date_start\";s:19:\"2020-05-04 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-05-03 17:00:00\";s:8:\"date_end\";s:19:\"2020-05-04 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2020-05-04 16:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:12:\"orders_count\";i:0;s:6:\"amount\";d:0;s:8:\"segments\";a:0:{}}}i:4;a:6:{s:8:\"interval\";s:10:\"2020-05-05\";s:10:\"date_start\";s:19:\"2020-05-05 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-05-04 17:00:00\";s:8:\"date_end\";s:19:\"2020-05-05 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2020-05-05 16:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:12:\"orders_count\";i:0;s:6:\"amount\";d:0;s:8:\"segments\";a:0:{}}}i:5;a:6:{s:8:\"interval\";s:10:\"2020-05-06\";s:10:\"date_start\";s:19:\"2020-05-06 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-05-05 17:00:00\";s:8:\"date_end\";s:19:\"2020-05-06 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2020-05-06 16:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:12:\"orders_count\";i:0;s:6:\"amount\";d:0;s:8:\"segments\";a:0:{}}}i:6;a:6:{s:8:\"interval\";s:10:\"2020-05-07\";s:10:\"date_start\";s:19:\"2020-05-07 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-05-06 17:00:00\";s:8:\"date_end\";s:19:\"2020-05-07 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2020-05-07 16:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:12:\"orders_count\";i:0;s:6:\"amount\";d:0;s:8:\"segments\";a:0:{}}}i:7;a:6:{s:8:\"interval\";s:10:\"2020-05-08\";s:10:\"date_start\";s:19:\"2020-05-08 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-05-07 17:00:00\";s:8:\"date_end\";s:19:\"2020-05-08 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2020-05-08 16:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:12:\"orders_count\";i:0;s:6:\"amount\";d:0;s:8:\"segments\";a:0:{}}}i:8;a:6:{s:8:\"interval\";s:10:\"2020-05-09\";s:10:\"date_start\";s:19:\"2020-05-09 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-05-08 17:00:00\";s:8:\"date_end\";s:19:\"2020-05-09 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2020-05-09 16:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:12:\"orders_count\";i:0;s:6:\"amount\";d:0;s:8:\"segments\";a:0:{}}}i:9;a:6:{s:8:\"interval\";s:10:\"2020-05-10\";s:10:\"date_start\";s:19:\"2020-05-10 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-05-09 17:00:00\";s:8:\"date_end\";s:19:\"2020-05-10 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2020-05-10 16:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:12:\"orders_count\";i:0;s:6:\"amount\";d:0;s:8:\"segments\";a:0:{}}}i:10;a:6:{s:8:\"interval\";s:10:\"2020-05-11\";s:10:\"date_start\";s:19:\"2020-05-11 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-05-10 17:00:00\";s:8:\"date_end\";s:19:\"2020-05-11 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2020-05-11 16:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:12:\"orders_count\";i:0;s:6:\"amount\";d:0;s:8:\"segments\";a:0:{}}}i:11;a:6:{s:8:\"interval\";s:10:\"2020-05-12\";s:10:\"date_start\";s:19:\"2020-05-12 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-05-11 17:00:00\";s:8:\"date_end\";s:19:\"2020-05-12 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2020-05-12 16:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:12:\"orders_count\";i:0;s:6:\"amount\";d:0;s:8:\"segments\";a:0:{}}}i:12;a:6:{s:8:\"interval\";s:10:\"2020-05-13\";s:10:\"date_start\";s:19:\"2020-05-13 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-05-12 17:00:00\";s:8:\"date_end\";s:19:\"2020-05-13 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2020-05-13 16:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:12:\"orders_count\";i:0;s:6:\"amount\";d:0;s:8:\"segments\";a:0:{}}}i:13;a:6:{s:8:\"interval\";s:10:\"2020-05-14\";s:10:\"date_start\";s:19:\"2020-05-14 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-05-13 17:00:00\";s:8:\"date_end\";s:19:\"2020-05-14 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2020-05-14 16:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:12:\"orders_count\";i:0;s:6:\"amount\";d:0;s:8:\"segments\";a:0:{}}}i:14;a:6:{s:8:\"interval\";s:10:\"2020-05-15\";s:10:\"date_start\";s:19:\"2020-05-15 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-05-14 17:00:00\";s:8:\"date_end\";s:19:\"2020-05-15 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2020-05-15 16:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:12:\"orders_count\";i:0;s:6:\"amount\";d:0;s:8:\"segments\";a:0:{}}}i:15;a:6:{s:8:\"interval\";s:10:\"2020-05-16\";s:10:\"date_start\";s:19:\"2020-05-16 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-05-15 17:00:00\";s:8:\"date_end\";s:19:\"2020-05-16 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2020-05-16 16:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:12:\"orders_count\";i:0;s:6:\"amount\";d:0;s:8:\"segments\";a:0:{}}}i:16;a:6:{s:8:\"interval\";s:10:\"2020-05-17\";s:10:\"date_start\";s:19:\"2020-05-17 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-05-16 17:00:00\";s:8:\"date_end\";s:19:\"2020-05-17 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2020-05-17 16:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:12:\"orders_count\";i:0;s:6:\"amount\";d:0;s:8:\"segments\";a:0:{}}}i:17;a:6:{s:8:\"interval\";s:10:\"2020-05-18\";s:10:\"date_start\";s:19:\"2020-05-18 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-05-17 17:00:00\";s:8:\"date_end\";s:19:\"2020-05-18 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2020-05-18 16:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:12:\"orders_count\";i:0;s:6:\"amount\";d:0;s:8:\"segments\";a:0:{}}}i:18;a:6:{s:8:\"interval\";s:10:\"2020-05-19\";s:10:\"date_start\";s:19:\"2020-05-19 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-05-18 17:00:00\";s:8:\"date_end\";s:19:\"2020-05-19 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2020-05-19 16:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:12:\"orders_count\";i:0;s:6:\"amount\";d:0;s:8:\"segments\";a:0:{}}}i:19;a:6:{s:8:\"interval\";s:10:\"2020-05-20\";s:10:\"date_start\";s:19:\"2020-05-20 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-05-19 17:00:00\";s:8:\"date_end\";s:19:\"2020-05-20 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2020-05-20 16:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:12:\"orders_count\";i:0;s:6:\"amount\";d:0;s:8:\"segments\";a:0:{}}}i:20;a:6:{s:8:\"interval\";s:10:\"2020-05-21\";s:10:\"date_start\";s:19:\"2020-05-21 00:00:00\";s:14:\"date_start_gmt\";s:19:\"2020-05-20 17:00:00\";s:8:\"date_end\";s:19:\"2020-05-21 23:59:59\";s:12:\"date_end_gmt\";s:19:\"2020-05-21 16:59:59\";s:9:\"subtotals\";O:8:\"stdClass\":3:{s:12:\"orders_count\";i:0;s:6:\"amount\";d:0;s:8:\"segments\";a:0:{}}}}s:5:\"total\";i:21;s:5:\"pages\";i:1;s:7:\"page_no\";i:1;}}", "no");
INSERT INTO `lt_options` VALUES("2760", "_site_transient_update_themes", "O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1590544137;s:7:\"checked\";a:2:{s:5:\"astra\";s:5:\"2.4.4\";s:9:\"lightrees\";s:5:\"1.0.0\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}", "no");
INSERT INTO `lt_options` VALUES("2801", "woocommerce_midtrans_promo_settings", "a:23:{s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:30:\"Credit Card Promo via Midtrans\";s:11:\"description\";s:30:\"Credit Card Promo via Midtrans\";s:11:\"merchant_id\";s:0:\"\";s:27:\"select_midtrans_environment\";s:7:\"sandbox\";s:21:\"client_key_v2_sandbox\";s:0:\"\";s:21:\"server_key_v2_sandbox\";s:0:\"\";s:24:\"client_key_v2_production\";s:0:\"\";s:24:\"server_key_v2_production\";s:0:\"\";s:16:\"enable_3d_secure\";s:3:\"yes\";s:14:\"method_enabled\";s:11:\"credit_card\";s:10:\"bin_number\";s:0:\"\";s:10:\"promo_code\";s:0:\"\";s:15:\"enable_savecard\";s:2:\"no\";s:15:\"enable_redirect\";s:2:\"no\";s:13:\"custom_expiry\";s:8:\"disabled\";s:13:\"custom_fields\";s:0:\"\";s:21:\"enable_map_finish_url\";s:2:\"no\";s:13:\"ganalytics_id\";s:0:\"\";s:29:\"enable_immediate_reduce_stock\";s:2:\"no\";s:21:\"ignore_pending_status\";s:2:\"no\";s:7:\"logging\";s:2:\"no\";s:11:\"to_idr_rate\";s:0:\"\";}", "yes");
INSERT INTO `lt_options` VALUES("2854", "_transient_is_multi_author", "0", "yes");
INSERT INTO `lt_options` VALUES("2885", "_transient_wc_count_comments", "O:8:\"stdClass\":7:{s:14:\"total_comments\";i:1;s:3:\"all\";i:1;s:8:\"approved\";s:1:\"1\";s:9:\"moderated\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}", "yes");
INSERT INTO `lt_options` VALUES("2991", "_transient_timeout_feed_9437e8e02ec5af9028df4e5061705e72", "1590528827", "no");
INSERT INTO `lt_options` VALUES("2992", "_transient_feed_9437e8e02ec5af9028df4e5061705e72", "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:11:\"WPDeveloper\";s:7:\"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:23:\"https://wpdeveloper.net\";s: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:35:\"Marketplace For WordPress Developer\";s: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:\"Fri, 22 May 2020 18:01:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"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.4.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: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:82:\"https://wpdeveloper.net/wp-content/uploads/2018/11/cropped-wpd-favicon-3-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:11:\"WPDeveloper\";s:7:\"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:23:\"https://wpdeveloper.net\";s: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:94:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"How to Clear WordPress Cache: Step by Step 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:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"https://wpdeveloper.net/clear-wordpress-cache/\";s: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:54:\"https://wpdeveloper.net/clear-wordpress-cache/#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, 22 May 2020 18:01:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:8:{i:0;a:5:{s:4:\"data\";s:8:\"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:\"\";}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:\"\";}i:2;a:5:{s:4:\"data\";s:29:\"Caching for WordPress 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:\"\";}i:3;a:5:{s:4:\"data\";s:17:\"Web Browser Cache\";s: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:24:\"WordPress Caching 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:5;a:5:{s:4:\"data\";s:17:\"WordPress 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:\"\";}i:6;a:5:{s:4:\"data\";s:9:\"WP Rocket\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:7;a:5:{s:4:\"data\";s:14:\"WP Super Cache\";s:7:\"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:33:\"https://wpdeveloper.net/?p=448759\";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:373:\"<p>As important it is to know how to cache your site in the first place, it is equally important to learn how to clear your cache in WordPress.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpdeveloper.net/clear-wordpress-cache/\">How to Clear WordPress Cache: Step by Step Guide</a> appeared first on <a rel=\"nofollow\" href=\"https://wpdeveloper.net\">WPDeveloper</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:11556:\"<p>In this world of super-fast loading websites, we all know the benefits of using cache to reduce server load. If you are looking for a way to clear the <strong>WordPress cache</strong> and make your website faster, then you are in the right place. There are solutions to do it with few clicks and in this article, we will show you how to do so with detailed instructions.</p>\n<p><span id=\"more-448759\"></span></p>\n<p><a href=\"https://wpdeveloper.net/wp-content/uploads/2020/04/How-to-Clear-Your-Cache-in-WordPress-Step-by-Step-Guide.png\"><img class=\"aligncenter wp-image-463709 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/How-to-Clear-Your-Cache-in-WordPress-Step-by-Step-Guide.png\" alt=\"How to clear wordpress cache\" width=\"1280\" height=\"720\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/04/How-to-Clear-Your-Cache-in-WordPress-Step-by-Step-Guide.png 1280w, https://wpdeveloper.net/wp-content/uploads/2020/04/How-to-Clear-Your-Cache-in-WordPress-Step-by-Step-Guide-600x338.png 600w, https://wpdeveloper.net/wp-content/uploads/2020/04/How-to-Clear-Your-Cache-in-WordPress-Step-by-Step-Guide-768x432.png 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" /></a></p>\n<h2>What is Cache?</h2>\n<p>You will hear about Cache every time you search the topic Website Optimization. Caching is a process that helps to save a static version of your website. That way every time a user visits your website, it will take less time to load the website as it is already saved on Cache, no need to run PHP scripts from the ground up.</p>\n<p>It happens the first time a user visits your website. The way WordPress presents your website to your users is by sending several queries back and forth between your database and to the browser of your user. However, there is a common practice among all WordPress users, not all pages and posts are updated very frequently. This creates a great opportunity for optimizing load time for WordPress websites.</p>\n<h3>How Does Caching Help Your Website?</h3>\n<p>Caching can create static copies of the posts/pages and serve them to your users every time they visit that page. This way no need for a back and forth communication between the database server and the browser of your users. Your browser can almost instantaneously display the saved version of the webpage thus drastically reducing the load time and improving site performance. Moreover, this way less bandwidth is required from the user end, and they can more smoothly browse your WordPress website.</p>\n<p>Along with displaying your website to your users in less time Caching has other benefits too. Caching ensures there is less load on your Website\'s hosting servers. This is good for the memory of your website\'s servers as well as I/O operations. Caching has SEO benefits as well. A website with faster load time has a greater chance of scoring high on the Search Results. In fact, Google considers <strong><a href=\"https://developers.google.com/speed/pagespeed/insights/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">site load speed as an important factor</a></strong> in determining where it will appear on search results.</p>\n<p>There are many popular Caching plugins for WordPress with millions of active users, meaning trustworthy. Despite being a highly effective website optimization measure, caching can cause some issues. For example, due to caching, you might not be able to see new changes made to a website.</p>\n<p><strong>Recommended Reading:</strong> <strong><a href=\"https://wpdeveloper.net/wordpress-maintenance-tips/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Top WordPress Maintenance Tips To Keep Your Site Running Smoothly</a></strong></p>\n<h2>How To Clear WordPress Cache?</h2>\n<p>Sounds familiar? We all have faced such issues. In such circumstances, it is a better idea to clean the WordPress cache instead of storing them.</p>\n<h3>Clear Your Browser Cache First</h3>\n<p>The first measure you should undertake is clearing your browser cache. No matter what browser you are using to surf the internet, almost all of them come with the caching feature. It can save JavaScript codes to even images used on a webpage. That way subsequent visits for users are drastically faster.</p>\n<p>Before you clear your browser cache, here are a few things you should know. After you clear cache some settings on different sites will get deleted. For example, if you were signed in, you will be signed out, you’ll need to sign in again. If that\'s a big issue for you, for example, if you do not remember your password and have lost your recovery emails, you are better off not clearing the cache. Other things you will face after clearing cache is you will find some sites load slower because of content, like images as they need to load again.</p>\n<p>If you confident clearing cache will not cause any irreversible damage, continue with the next steps. If you are using Google Chrome, follow the below steps to clear cache:</p>\n<ul>\n<li>On your computer, open Chrome.</li>\n<li>At the top right, click the three vertical dots.</li>\n<li>Click More tools and then Clear browsing data.</li>\n<li>At the top, choose a time range. To delete everything, select All time.</li>\n<li>Next to &#8220;Cookies and other site data&#8221; and &#8220;Cached images and files,&#8221; check the boxes.</li>\n<li>Click Clear data.</li>\n</ul>\n<h3>Clear WordPress Cache Using WP Rocket</h3>\n<p>If you are using a caching plugin on your WordPress Website you can clear your cache very easily as most of the plugins come with a separate option in their settings area.</p>\n<p>One of our favorites is <strong><a href=\"https://wp-rocket.me/\" target=\"_blank\" rel=\"noopener noreferrer\">WP Rocket</a></strong> &#8211; it allows you to clear the  WordPress cache in two ways:</p>\n<ul>\n<li>Get the WP Rocket plugin and then go to <em>Settings</em> → <em>WP Rocket</em> → <em>Dashboard</em> tab and press the <em>Clear cache</em> button.<img class=\"aligncenter wp-image-448806 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Clear-Cache-WP-Rocket.png\" alt=\"Clear Your Cache in WordPress\" width=\"680\" height=\"383\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Clear-Cache-WP-Rocket.png 680w, https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Clear-Cache-WP-Rocket-600x338.png 600w\" sizes=\"(max-width: 680px) 100vw, 680px\" /></li>\n<li>Another way is via the WordPress toolbar (or admin bar). Roll over the  <em>WP Rocket</em> menu link,<strong> </strong>and you will see a dropdown menu. Click on the <em>Clear cache </em>link.</li>\n</ul>\n<p><img class=\"aligncenter wp-image-448808 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Clear-Cache-WP-Rocket-Dashboard.png\" alt=\"Clear Your Cache in WordPress\" width=\"680\" height=\"253\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Clear-Cache-WP-Rocket-Dashboard.png 680w, https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Clear-Cache-WP-Rocket-Dashboard-600x223.png 600w\" sizes=\"(max-width: 680px) 100vw, 680px\" /></p>\n<p>Moreover, you can clear the cache for individual pages/posts separately. Visit the <em>Pages</em> or <em>Posts</em> section in WordPress, and roll over a page or post table row to see a <em>Clear this cache</em> action link.</p>\n<p><img class=\"aligncenter wp-image-448809 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Clear-Cache-WP-Rocket-Individual-Post.png\" alt=\"Clear Your Cache in WordPress\" width=\"706\" height=\"310\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Clear-Cache-WP-Rocket-Individual-Post.png 706w, https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Clear-Cache-WP-Rocket-Individual-Post-600x263.png 600w\" sizes=\"(max-width: 706px) 100vw, 706px\" /></p>\n<h3>Clear WordPress Cache Using WP Super Cache [FREE]</h3>\n<div class=\"wp-pic-wrapper center large\" ><div class=\"wp-pic-center\"><div class=\"wp-pic large plugin \"  id=\"wp-pic-wp-super-cache\" ><div class=\"wp-pic-large\" style=\"display: none;\">\n	<div class=\"wp-pic-large-content\">\n		<a class=\"wp-pic-asset-bg\" href=\"https://wordpress.org/plugins/wp-super-cache/\" target=\"_blank\" title=\"WordPress.org Plugin Page\">\n			<img src=\"https://ps.w.org/wp-super-cache/assets/banner-772x250.png?rev=1082414\" alt=\"WP Super Cache\" />			<span class=\"wp-pic-asset-bg-title\"><span>WP Super Cache</span></span>\n		</a>\n		<div class=\"wp-pic-half-first\">\n			<a class=\"wp-pic-logo\" href=\"https://wordpress.org/plugins/wp-super-cache/\" style=\"background-image: url(https://ps.w.org/wp-super-cache/assets/icon-256x256.png?rev=1095422 );\" target=\"_blank\" title=\"WordPress.org Plugin Page\"></a>\n			<p class=\"wp-pic-author\">Author(s): <a href=\"https://automattic.com/\">Automattic</a></p>\n			<p class=\"wp-pic-version\"><span>Current Version:</span> 1.7.1</p>\n			<p class=\"wp-pic-updated\"><span>Last Updated:</span> January 30, 2020</p>\n			<p><a class=\"wp-pic-dl-link\" href=\"https://downloads.wordpress.org/plugin/wp-super-cache.1.7.1.zip\" title=\"Direct download\">wp-super-cache.1.7.1.zip</a></p>\n            		</div>\n		<div class=\"wp-pic-half-last\">\n			<div class=\"wp-pic-bottom\">\n				<div class=\"wp-pic-bar\">\n					<a href=\"https://wordpress.org/support/view/plugin-reviews/wp-super-cache\" class=\"wp-pic-rating\" target=\"_blank\" title=\"Ratings\">\n						86%<em>Ratings</em>\n					</a>\n					<a href=\"https://downloads.wordpress.org/plugin/wp-super-cache.1.7.1.zip\" class=\"wp-pic-downloaded\" target=\"_blank\" title=\"Direct download\">\n						2,000,000+<em>Installs</em>\n					</a>\n					<a href=\"https://wordpress.org/plugins/wp-super-cache/\" class=\"wp-pic-requires\" target=\"_blank\" title=\"WordPress.org Plugin Page\">\n						WP 3.1+<em>Requires</em>\n					</a>\n				</div>\n			</div>\n		</div>\n	</div>\n</div>\n</div></div></div><!-- .wp-pic-wrapper-->\n<p>If you are looking for a free solution, then you should check out <strong><a href=\"https://wordpress.org/plugins/wp-super-cache/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">WP Super Cache</a></strong> which is another popular caching plugin for WordPress run and maintained by the team behind WordPress- Automattic. This plugin generates static HTML files from your dynamic WordPress blog. To delete cache created using WP Super Cache, open your WordPress Dashboard and navigate to <strong>Settings&gt;&gt;WP Super Cache</strong>. There you will see 7 different tabs, among which you will find the tab &#8220;Easy&#8221;. From that tab scroll down until you see the button Delete Cache.</p>\n<h2>Final Words!</h2>\n<p>So there you go. Now you know what is cache as well as why and how it is important for website optimization. You have seen that caching a website might cause problems from time to time, for example, failing to load recent changes made to a website. In such cases, you are better off removing the cache for that website. But that does remove all saved data on that website such as your login credentials. If you are sure no serious harm will be done to you or your business after you delete cache for websites you know how to delete the cache.</p>\n<p>Next time you see a webpage is failing to load properly you know what to do. Do let us know your experience with WordPress cache in the comment section below. Cheers!</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpdeveloper.net/clear-wordpress-cache/\">How to Clear WordPress Cache: Step by Step Guide</a> appeared first on <a rel=\"nofollow\" href=\"https://wpdeveloper.net\">WPDeveloper</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:51:\"https://wpdeveloper.net/clear-wordpress-cache/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:85:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"Connect NotificationX With ConvertKit: Grow Your Audience By Leveraging Social Proof\";s:7:\"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://wpdeveloper.net/convertkit-social-proof/\";s: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://wpdeveloper.net/convertkit-social-proof/#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, 18 May 2020 19:17: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:13:\"NotificationX\";s: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:\"ConvertKit\";s: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:\"Email 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:3;a:5:{s:4:\"data\";s:4:\"FOMO\";s: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:12:\"Social Proof\";s:7:\"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:33:\"https://wpdeveloper.net/?p=437954\";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:423:\"<p>After you connect NotificationX with ConvertKit you can display notification pop-ups after each new sign-up in order to persuade others into signing up.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpdeveloper.net/convertkit-social-proof/\">Connect NotificationX With ConvertKit: Grow Your Audience By Leveraging Social Proof</a> appeared first on <a rel=\"nofollow\" href=\"https://wpdeveloper.net\">WPDeveloper</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:12781:\"<p><strong><a href=\"https://convertkit.com/\" target=\"_blank\" rel=\"noopener noreferrer\">ConverKit</a> </strong>is a popular email marketing solution that helps you to grow your blog and business. It lets you automate email marketing efforts, manage marketing funnels and more. If you are already using ConvertKit, we have good news for you, you can connect <strong><a href=\"https://notificationx.com/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">NotificationX</a> </strong>with ConvertKit and display pop-ups to influence new users into signing up to your email lists by leveraging social proof and increase your audience.</p>\n<p><span id=\"more-437954\"></span></p>\n<p><a href=\"https://wpdeveloper.net/wp-content/uploads/2020/04/Connect-NotificationX-With-ConvertKit-Grow-Your-Audience-By-Leveraging-Social-Proof.png\"><img class=\"aligncenter size-full wp-image-454086\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/Connect-NotificationX-With-ConvertKit-Grow-Your-Audience-By-Leveraging-Social-Proof.png\" alt=\"ConvertKit\" width=\"1280\" height=\"720\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/04/Connect-NotificationX-With-ConvertKit-Grow-Your-Audience-By-Leveraging-Social-Proof.png 1280w, https://wpdeveloper.net/wp-content/uploads/2020/04/Connect-NotificationX-With-ConvertKit-Grow-Your-Audience-By-Leveraging-Social-Proof-600x338.png 600w, https://wpdeveloper.net/wp-content/uploads/2020/04/Connect-NotificationX-With-ConvertKit-Grow-Your-Audience-By-Leveraging-Social-Proof-768x432.png 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" /></a></p>\n<p>If you are an avid ConvertKit user you can skip the next part. But if you are not yet using any email marketing tool, keep on reading. Email marketing is as popular as it was years before. <strong><a href=\"https://99firms.com/blog/how-many-email-users-are-there/#gref\" target=\"_blank\" rel=\"noopener noreferrer\">According to reports</a></strong>, there are currently 3.9 billion email users worldwide. Moreover, 293 billion emails are sent each day throughout the world. These numbers help to illustrate how popular emails still are and how important email marketing is to <strong><a href=\"https://wpdeveloper.net/notificationx-increase-sales-wordpress/\">boost sales and conversion</a></strong> for your business.</p>\n<h2>Supercharge Your Email Marketing With ConvertKit</h2>\n<p>ConvertKit is a popular email marketing solution that users have been choosing it for various reasons. Besides managing email campaigns, some users use ConvertKit for offering incentives such as printable PDFs to new sign-ups. Some users love ConverKit and place it over other alternatives because it offers advanced functionality in terms of customization and automation.</p>\n<p><img class=\"aligncenter wp-image-437971 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-ConvertKit-Website.png\" alt=\"Connect NotificationX with ConvertKit, NotificationX, ConvertKit, Email Marketing, Social proof Notifications for ConvertKit\" width=\"1207\" height=\"673\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-ConvertKit-Website.png 1207w, https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-ConvertKit-Website-600x335.png 600w, https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-ConvertKit-Website-768x428.png 768w\" sizes=\"(max-width: 1207px) 100vw, 1207px\" /></p>\n<p>ConvertKit makes it easy to drive users into the right marketing funnels and ensure future conversion as it helps users to visualize their marketing funnels. You can also see which user is at what stage of your marketing funnel. Once you can see this data you can start to understand how they will act. This visual automation mechanism is one of the best features of ConvertKit. Using it you can personalize the email campaigns and send your users the right emails that they are supposed to like.</p>\n<p>ConvertKit is one of the best email marketing solutions as it comes with more than 80+ integrations. It also allows you to smoothly switch from other email marketing solutions such as <a href=\"https://wpdeveloper.net/integrate-mailchimp-wordpress-elementor/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">MailChimp</a>, InfusionSoft, Drip, MailerLite, Aweber and, Active Campaign.</p>\n<p><img class=\"aligncenter wp-image-437974 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-ConvertKit-full-form-image.gif\" alt=\"Connect NotificationX with ConvertKit, NotificationX, ConvertKit, Email Marketing, Social proof Notifications for ConvertKit\" width=\"575\" height=\"348\" /></p>\n<h2>Integrate NotificationX with ConvertKit To Boost Email List</h2>\n<p>What are the benefits of connecting NotificationX with ConvertKit? NotificationX is the <a href=\"https://www.cloudways.com/blog/notificationx-wordpress-marketing-plugin/\" target=\"_blank\" rel=\"noopener noreferrer\">all-in-one marketing plugin for WordPress</a>. Once you connect these two tools you can <a href=\"https://wpdeveloper.net/notificationx-social-proof-fomo/\">leverage Social Proof and FOMO</a> to encourage more and more of your users to signup to your email newsletters. Online users are always under doubt about the authenticity of your website. Don\'t blame them if they say they don\'t trust you but try to resolve them and NotificationX helps you do just that.</p>\n<p>When a reader has your email newsletter form on their screen and thinking whether or not they will sign-up, they can\'t see how many others are at that same stage at that specific moment. If you can show them that specific stat and also how many are actually signing up you can instantly resolve any doubt from their minds.</p>\n<p>After you connect NotificationX with ConvertKit you can <a href=\"https://wpdeveloper.net/email-marketing-social-proof/\">encourage new users into signing up</a> to your email newsletter by showing them others are doing the same. If you don\'t have NotificationX installed in your WordPress site, <a href=\"https://notificationx.com/docs/purchase-notificationx-pro/\">check this guideline</a> and get NotificationX PRO to integrate it with ConvertKit. Once you have installed and activated PRO, follow the steps below to get started:</p>\n<p><strong>Step 01: </strong>Open your WordPress Dashboard navigate to wp-admin -&gt; <strong>NotificationX</strong> -&gt; NotificationX&gt;&gt;Add New.</p>\n<p><img class=\"aligncenter wp-image-437965 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-ConvertKit-Step01.png\" alt=\"Connect NotificationX with ConvertKit, NotificationX, ConvertKit, Email Marketing, Social proof Notifications for ConvertKit\" width=\"1024\" height=\"384\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-ConvertKit-Step01.png 1024w, https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-ConvertKit-Step01-600x225.png 600w, https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-ConvertKit-Step01-768x288.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></p>\n<p><strong>Step 02: </strong>Give the Notification a name, choose ‘Email Subscription’ as your Notification type and pick <b>‘ConvertKit’</b> as your Source and hit the Next button.</p>\n<p><img class=\"aligncenter wp-image-437966 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-ConvertKit-Step02.png\" alt=\"Connect NotificationX with ConvertKit, NotificationX, ConvertKit, Email Marketing, Social proof Notifications for ConvertKit\" width=\"768\" height=\"494\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-ConvertKit-Step02.png 768w, https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-ConvertKit-Step02-600x386.png 600w\" sizes=\"(max-width: 768px) 100vw, 768px\" /></p>\n<p><strong>Step 03: </strong>From the design tab customize your notification as per your requirement. Use the Advanced Customization tab for advanced customization options and use the Themes section to pick a layout for the notification pop-up.</p>\n<p><img class=\"aligncenter wp-image-437967 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-ConvertKit-Step03.gif\" alt=\"Connect NotificationX with ConvertKit, NotificationX, ConvertKit, Email Marketing, Social proof Notifications for ConvertKit\" width=\"1000\" height=\"501\" /></p>\n<p><strong>Step 04: </strong>Then you will be taken to the Content tab, from here, you specify the ‘ConvertKit Form’ from which Email Subscription List will be fetched and be displayed on your WordPress website. From here you can choose to display the name of the users who have subscribed to your ConvertKit Email Newsletter on a certain day.</p>\n<p><img class=\"aligncenter wp-image-437968 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-ConvertKit-Step04.png\" alt=\"Connect NotificationX with ConvertKit, NotificationX, ConvertKit, Email Marketing, Social proof Notifications for ConvertKit\" width=\"768\" height=\"441\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-ConvertKit-Step04.png 768w, https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-ConvertKit-Step04-600x345.png 600w\" sizes=\"(max-width: 768px) 100vw, 768px\" /></p>\n<p><strong>Step 05: </strong>From the display tab you can choose to display an avatar for the users who have signed up to your email newsletter, or you can also choose to use a default image among others.</p>\n<p><img class=\"aligncenter wp-image-437969 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-ConvertKit-Step05.png\" alt=\"Connect NotificationX with ConvertKit, NotificationX, ConvertKit, Email Marketing, Social proof Notifications for ConvertKit\" width=\"768\" height=\"521\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-ConvertKit-Step05.png 768w, https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-ConvertKit-Step05-600x407.png 600w\" sizes=\"(max-width: 768px) 100vw, 768px\" /></p>\n<p><strong>Step 06: </strong>From the next tab you can adjust the Appearance, Timing & Behavior for your notification. From the Appearance tab, you can set the position for Email Subscription to either at the Bottom Left or Bottom Right side of your website. From the Timing section, you can set an initial time after which your ‘Email Subscription’ notification will be popped up.</p>\n<p><img class=\"aligncenter wp-image-437970 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-ConvertKit-Step06.png\" alt=\"Connect NotificationX with ConvertKit, NotificationX, ConvertKit, Email Marketing, Social proof Notifications for ConvertKit\" width=\"768\" height=\"438\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-ConvertKit-Step06.png 768w, https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-ConvertKit-Step06-600x342.png 600w\" sizes=\"(max-width: 768px) 100vw, 768px\" /></p>\n<p>By default, it is set to 5 seconds. From the <b>‘Behaviour’</b> section, you can choose to display a number of users who have subscribed to your Email Newsletter for certain passed days. This section also hosts other advanced features such as looping your notifications.</p>\n<p>Once you are done customizing your ConvertKit notification, hit the Publish button. As a result, the ‘Email Subscription’ will be successfully created. The details above are very simply put if you need further clarification regarding any aspect of the entire process check out details <a href=\"https://notificationx.com/docs/convertkit-alert/\" target=\"_blank\" rel=\"noopener noreferrer\">documentation on ConvertKit integration</a> to configure it right now.</p>\n<h2>Wrapping Up!</h2>\n<p><img class=\"aligncenter size-full wp-image-463230\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/05/1200-x-800-Subscribe2.gif\" alt=\"convertkit\" width=\"1200\" height=\"800\" /></p>\n<p>Along with ConvertKit, there are other 15+ tools that NotificationX is currently integrated with. Along with ConvertKit, NotificationX is also compatible with other popular email marketing solutions such as <strong><a href=\"https://wpdeveloper.net/integrate-mailchimp-wordpress-elementor/\">MailChimp</a></strong>. As you start using NotificationX, let us know which integration you are using by leaving a comment below and feel free to join <a href=\"https://www.facebook.com/groups/NotificationX.Community/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">NotificationX Communit</a>y to get connected with business owners like yourself.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpdeveloper.net/convertkit-social-proof/\">Connect NotificationX With ConvertKit: Grow Your Audience By Leveraging Social Proof</a> appeared first on <a rel=\"nofollow\" href=\"https://wpdeveloper.net\">WPDeveloper</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:53:\"https://wpdeveloper.net/convertkit-social-proof/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:91:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"How To Create Amazing Pricing Menu For WordPress Site Using Elementor [No Coding Required]\";s:7:\"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://wpdeveloper.net/wordpress-pricing-menu-elementor/\";s: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://wpdeveloper.net/wordpress-pricing-menu-elementor/#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, 15 May 2020 19:49: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:7:{i:0;a:5:{s:4:\"data\";s:12:\"EA Elementor\";s: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:\"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:\"\";}i:2;a:5:{s:4:\"data\";s:13:\"EA Price Menu\";s: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:30:\"essential addons for elementor\";s: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:26:\"Online Restaurant Business\";s: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:22:\"Pricing Menu Elementor\";s: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: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:33:\"https://wpdeveloper.net/?p=284657\";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:592:\"<p>If you want to display your pricing menu on the restaurant website but you are not getting the exact solution. Then you can try out Essential Addons for Elementor special element for Pricing Menu comes with advanced features &#38; functions to help you out to create your menu list for your WordPress site.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpdeveloper.net/wordpress-pricing-menu-elementor/\">How To Create Amazing Pricing Menu For WordPress Site Using Elementor [No Coding Required]</a> appeared first on <a rel=\"nofollow\" href=\"https://wpdeveloper.net\">WPDeveloper</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:\"Afrin\";s: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:8877:\"<p><span style=\"font-weight: 400;\">The product <a href=\"https://essential-addons.com/elementor/price-menu/\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>pricing menu</strong></a> or plans play a vital role for both buyer and seller. Once a Pricing has been well-documented on your website you, it can properly inform your potential customers what features come with respective pricing plans. Depending on how creatively you are able to showcase your pricing list for your products or services, it actually affects your users to make buying decisions. So if you have a WordPress website, we will show you how to create a stunning pricing menu using Elementor.</span></p>\n<p><span id=\"more-284657\"></span></p>\n<p><a href=\"https://wpdeveloper.net/wp-content/uploads/2019/07/How-To-Create-Amazing-Pricing-Menu-with-1-Click-Using-EA-Elementor.png\"><img class=\"aligncenter wp-image-299665 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2019/07/How-To-Create-Amazing-Pricing-Menu-with-1-Click-Using-EA-Elementor.png\" alt=\"pricing menu elementor\" width=\"1280\" height=\"720\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2019/07/How-To-Create-Amazing-Pricing-Menu-with-1-Click-Using-EA-Elementor.png 1280w, https://wpdeveloper.net/wp-content/uploads/2019/07/How-To-Create-Amazing-Pricing-Menu-with-1-Click-Using-EA-Elementor-600x338.png 600w, https://wpdeveloper.net/wp-content/uploads/2019/07/How-To-Create-Amazing-Pricing-Menu-with-1-Click-Using-EA-Elementor-768x432.png 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" /></a></p>\n<p><span style=\"font-weight: 400;\">Suppose you run a software company or e-commerce site, it would be very normal that you have to display your software or product special features with a proper price plan to inform and attract your targeted customers. Where they can easily know details about the product, special deals, expiration date, or lifetime availability with the price and choose the best package to fulfill their need.</span></p>\n<p><span style=\"font-weight: 400;\">But the pricing table is not suitable for some cases like the restaurant business, where you don’t need to display a plan or package in this particular table-type format. You have to use the Price Menu template to showcase your food items and price to help your customers. They can get an overall idea about the food ingredients along with the price which one they can afford or don’t want to eat. This type of pricing-format is also suitable for Product catalogs for clothing brands and retailers of Consumer Electronics. </span></p>\n<p><a href=\"https://essential-addons.com/elementor/\" target=\"_blank\" rel=\"noopener noreferrer\"><b>Essential Addons for Elementor</b></a><span style=\"font-weight: 400;\"> comes with </span><b>Pricing Menu</b><span style=\"font-weight: 400;\"> along with advanced features and functions to help you out. With this element, you can create a menu list for any business including any restaurant website, eCommerce store, or any other business.</span></p>\n<h2><b>How Essential Addons Pricing Menu Will Help You</b></h2>\n<p><span style=\"font-weight: 400;\">Among other </span><a href=\"https://wpdeveloper.net/plugins/essential-addons-elementor/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><b>Essential Addons</b></a><span style=\"font-weight: 400;\"> marketing elements, </span>EA Pricing Menu<span style=\"font-weight: 400;\"> and </span>EA Pricing Table<span style=\"font-weight: 400;\"> are helpful in creating pricing plan for your website. And if you want to know details about the Pricing Table, you can go through this blog </span>to learn how to <a href=\"https://wpdeveloper.net/create-better-pricing-page/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><b>create a better Pricing Page</b></a> for your business<span style=\"font-weight: 400;\">.</span></p>\n<p><span style=\"font-weight: 400;\">Now let’s discuss the </span><b>EA Price Menu widget</b><span style=\"font-weight: 400;\"> with the whole process, functions, and features that could be beneficial for your restaurant business! </span></p>\n<h3><b>Create EA Price Menu</b><span style=\"font-weight: 400;\"> </span></h3>\n<p><span style=\"font-weight: 400;\">In the </span>EA Price Menu<b> Content </b>tab<span style=\"font-weight: 400;\">, you can add your item name, price, food ingredients, or desired food image.  </span><span style=\"font-weight: 400;\">You can also give a special discount offer just by enabling the discount toggle, and choose a unique design type to display the menu to attract the customer at a glance. </span></p>\n<p><a href=\"https://wpdeveloper.net/wp-content/uploads/2019/09/priceimage-1.png\"><img class=\"aligncenter size-full wp-image-338472\" src=\"https://wpdeveloper.net/wp-content/uploads/2019/09/priceimage-1.png\" alt=\"pricing menu elementor\" width=\"1225\" height=\"600\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2019/09/priceimage-1.png 1225w, https://wpdeveloper.net/wp-content/uploads/2019/09/priceimage-1-600x294.png 600w, https://wpdeveloper.net/wp-content/uploads/2019/09/priceimage-1-768x376.png 768w\" sizes=\"(max-width: 1225px) 100vw, 1225px\" /></a></p>\n<h3><b>Style The Menu With EA Price Menu Element</b><span style=\"font-weight: 400;\"> </span></h3>\n<p><span style=\"font-weight: 400;\">It would be definite that you will feel the necessity to style your every content of </span><b>Pricing Menu</b><span style=\"font-weight: 400;\"> to create an attractive look on the website, which will help to drag the audience\'s attention instantly to have that food. Easily you can do it with the </span>EA Price Menu<b> Style</b><span style=\"font-weight: 400;\"><strong> Section</strong>. </span></p>\n<p><a href=\"https://wpdeveloper.net/wp-content/uploads/2019/09/price-menu-style.png\"><img class=\"aligncenter size-full wp-image-338476\" src=\"https://wpdeveloper.net/wp-content/uploads/2019/09/price-menu-style.png\" alt=\"price menu Elementor\" width=\"1350\" height=\"684\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2019/09/price-menu-style.png 1350w, https://wpdeveloper.net/wp-content/uploads/2019/09/price-menu-style-600x304.png 600w, https://wpdeveloper.net/wp-content/uploads/2019/09/price-menu-style-768x389.png 768w\" sizes=\"(max-width: 1350px) 100vw, 1350px\" /></a></p>\n<p><span style=\"font-weight: 400;\">Now, you will get the final outcome of the price menu after adding all the desired content and design it in advance.  This is how easily you can create your restaurant food menu using </span><a href=\"https://wordpress.org/plugins/essential-addons-for-elementor-lite/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><b>EA Price Menu</b></a><span style=\"font-weight: 400;\"> element with ease.</span></p>\n<p><iframe title=\"Create Attractive Price Menu using Elementor\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/wqPXz1FNW6k?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe></p>\n<h2><b>Wrapping Up</b></h2>\n<p><span style=\"font-weight: 400;\">You can display your entire menu list by using the EA Price Menu widget. But if you need to mention more details about your food items or have to announce any special offers, that time you will feel the necessity to use the </span><b><a href=\"https://essential-addons.com/elementor/call-to-action/\" target=\"_blank\" rel=\"noopener noreferrer\">EA Call To Action</a></b> <span style=\"font-weight: 400;\">element after the price menu block. EA Pricing Menu <a href=\"https://wpdeveloper.net/dos-donts-of-web-design-2019/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><b>Call to Action (CTA)</b></a> creates a great opportunity to motivate your audience to be your real customer or client. This generally helps you to increase your site conversion rate and lead.</span></p>\n<p><a href=\"https://wpdeveloper.net/wp-content/uploads/2019/09/CTA-Image-3-1.png\"><img class=\"aligncenter size-full wp-image-338489\" src=\"https://wpdeveloper.net/wp-content/uploads/2019/09/CTA-Image-3-1.png\" alt=\"price menu Elementor\" width=\"1329\" height=\"638\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2019/09/CTA-Image-3-1.png 1329w, https://wpdeveloper.net/wp-content/uploads/2019/09/CTA-Image-3-1-600x288.png 600w, https://wpdeveloper.net/wp-content/uploads/2019/09/CTA-Image-3-1-768x369.png 768w\" sizes=\"(max-width: 1329px) 100vw, 1329px\" /></a></p>\n<p><span style=\"font-weight: 400;\">So, don’t wait and try out </span><b><a href=\"https://essential-addons.com/elementor/price-menu/\">EA Price Menu</a></b><span style=\"font-weight: 400;\"> element and leave a comment below to know more!</span></p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpdeveloper.net/wordpress-pricing-menu-elementor/\">How To Create Amazing Pricing Menu For WordPress Site Using Elementor [No Coding Required]</a> appeared first on <a rel=\"nofollow\" href=\"https://wpdeveloper.net\">WPDeveloper</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://wpdeveloper.net/wordpress-pricing-menu-elementor/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:97:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"[FREEBIE] How To Make COVID-19 Landing Page In WordPress With 1-Click Elementor Template\";s:7:\"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://wpdeveloper.net/covid-19-landing-page-elementor/\";s: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:64:\"https://wpdeveloper.net/covid-19-landing-page-elementor/#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, 11 May 2020 17:08: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:9:{i:0;a:5:{s:4:\"data\";s:8:\"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:\"\";}i:1;a:5:{s:4:\"data\";s:10:\"Templately\";s: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:8:\"covid-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:\"\";}i:3;a:5:{s:4:\"data\";s:18:\"COVID-19 Awareness\";s: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:18:\"COVID-19 Elementor\";s: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:17:\"COVID-19 Pandemic\";s: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:9:\"Elementor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:7;a:5:{s:4:\"data\";s:24:\"Templately For Elementor\";s: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: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:33:\"https://wpdeveloper.net/?p=453016\";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:434:\"<p>With the introduction of Templately, you can now instantly create eye-catchy &#38; informative COVID-19 awareness website with just a couple of clicks.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpdeveloper.net/covid-19-landing-page-elementor/\">[FREEBIE] How To Make COVID-19 Landing Page In WordPress With 1-Click Elementor Template</a> appeared first on <a rel=\"nofollow\" href=\"https://wpdeveloper.net\">WPDeveloper</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:11220:\"<p><span style=\"color: #333333;\">Do you want to create a <a href=\"https://templately.com/pack/covid-19-landing-page\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>COVID-19 landing page</strong></a> to spread social awareness during this pandemic situation? Don\'t worry, we have got you covered!😊 Introducing Covid-19 template by <strong><a href=\"http://templately.com/\" target=\"_blank\" rel=\"noopener noreferrer\">Templately</a> &#8211; </strong>the ultimate template cloud for WordPress. Now you can instantly create an eye-catchy & informative COVID-19 awareness website with just a click and yes, it\'s completely FREE for everyone. </span><span id=\"more-453016\"></span></p>\n<p><a href=\"https://wpdeveloper.net/wp-content/uploads/2020/05/How-To-Create-COVID19-Website-Using-Elementor-Free-Template-Without-Coding.png\"><img class=\"aligncenter wp-image-453085 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/05/How-To-Create-COVID19-Website-Using-Elementor-Free-Template-Without-Coding.png\" alt=\"How To Make COVID-19 Landing Page In WordPress With Free Elementor Template\" width=\"1280\" height=\"720\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/05/How-To-Create-COVID19-Website-Using-Elementor-Free-Template-Without-Coding.png 1280w, https://wpdeveloper.net/wp-content/uploads/2020/05/How-To-Create-COVID19-Website-Using-Elementor-Free-Template-Without-Coding-600x338.png 600w, https://wpdeveloper.net/wp-content/uploads/2020/05/How-To-Create-COVID19-Website-Using-Elementor-Free-Template-Without-Coding-768x432.png 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" /></a></p>\n<p><span style=\"color: #333333;\">If you have a large set of audience, this is your chance to encourage everyone to stay at home, be safe, and motivate them to work remotely. Without further ado, let\'s get in more detail on how you can create an amazing <strong>COVID-19 website using Elementor</strong> without any prior coding knowledge.</span></p>\n<h2><span style=\"color: #333333;\"><strong>🤔Why You Might Need COVID-19 Landing Page?</strong></span></h2>\n<p>This <strong><a href=\"https://www.who.int/emergencies/diseases/novel-coronavirus-2019\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">COVID-19</a> pandemic situation </strong>is getting worse day by day causing everyone to be locked down and resulting in people working remotely from home.  As a result, people out there want to know how everyone else is dealing with this crisis as a business owner, entrepreneur, medical professional, or others. To make them assure about your current position in the most graceful way is to build a COVID-19 landing page and spread social awareness. This will be helpful to create awareness among your loyal visitors and encourage them to stay strong in this tough time.</p>\n<p>By creating a COVID-19 landing page, you can comfort your audience by sharing the current situation, your take as well as highlight the blogs or news about <a href=\"https://wpdeveloper.net/working-from-home-covid-19/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><strong>remote experience.</strong></a> It would definitely strengthen the bond with your audience and they would take aspirations to fight this pandemic while keeping everything together.</p>\n<h2><strong>⚡How To Create COVID-19 Website In Elementor</strong></h2>\n<p>In general, creating a website is time-consuming considering the fact that designing and web-development takes time. But during this pandemic, a lot of development agencies and web creators are not available. Besides, design and development is costly too. But we know, business owners to medical professionals, everyone wants to participate actively in this global crisis.</p>\n<p>However, we wanted to help people to create a COVID-19 landing page with the easiest solution and we made sure that it\'s completely free for all. We have released a FREE COVID-19 Elementor Template from <a href=\"https://wordpress.org/plugins/templately/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><strong>Templately</strong></a> that you can use without any coding knowledge. With this free template for COVID-19, you can get started quite easily & build a dedicated CoronaVirus web page in minutes. Sounds pretty amazing, right? Let\'s <a href=\"https://templately.com/pack/covid-19-landing-page\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">check out the demo</a> and see what you need to make the complete COVID-19 website.</p>\n<p><img class=\"aligncenter size-full wp-image-458305\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/05/COVID-19-Banner-1.v1.png\" alt=\"\" width=\"1420\" height=\"800\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/05/COVID-19-Banner-1.v1.png 1420w, https://wpdeveloper.net/wp-content/uploads/2020/05/COVID-19-Banner-1.v1-600x338.png 600w, https://wpdeveloper.net/wp-content/uploads/2020/05/COVID-19-Banner-1.v1-768x433.png 768w\" sizes=\"(max-width: 1420px) 100vw, 1420px\" /></p>\n<h2><span style=\"color: #333333;\"><strong>Things You Need To Create COVID-19 Website In WordPress</strong></span></h2>\n<p><span style=\"color: #333333;\">You need to get a few things done before building your COVID-19 website for free using Templately for Elementor<strong>. </strong>Let\'s have a look at the Plugins you will require and make sure you have installed and activated all of these plugins:<br />\n</span></p>\n<ul>\n<li><span style=\"color: #333333;\"><strong>Elementor: </strong>Make sure that you already have activated <strong><a href=\"http://wpdeveloper.net/go/elementor\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Elementor</a> </strong>on your WordPress website before gettings started. </span></li>\n<li><span style=\"color: #333333;\"><strong>Essential Addons: </strong>You also need to activate the free version of <strong><a href=\"https://wpdeveloper.net/plugins/essential-addons-elementor/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Essential Addons for Elementor</a> </strong>to use the COVID-19 template.<br />\n</span></li>\n<li><span style=\"color: #333333;\"><strong>Templately: </strong>Once you are done activating the above-mentioned plugins, simply just go ahead and install <a href=\"https://templately.com/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><strong>&#8216;Templately\'</strong></a> on your WordPress website.</span></li>\n<li><span style=\"color: #333333;\"><strong>COVID-19 Coronavirus Outbreak Data Plugin:</strong> If you are looking for a way to display the latest statistics on the Coronavirus pandemic, you will have to install this free plugin <strong><a href=\"https://wordpress.org/plugins/ce-corona/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">COVID19 – Coronavirus Outbreak Data</a></strong> to keep your site up-to-date.<br />\n</span></li>\n</ul>\n<h2>Let\'s Get Started With Templately To Build Your COVID-19 Website</h2>\n<p>By following the step by step guideline, you will able to publish your COVID-19 website using Templately just within a few clicks. Let\'s check out the guide below:</p>\n<h3><strong>Step 1. Choose COVID-19 Template From Templately </strong></h3>\n<p>Assuming you have installed all the four plugins mentioned above and ready to dive in. Let\'s create a new page from your WordPress dashboard and click &#8216;<strong>Edit with Elementor\'. </strong>Once the new page has opened with Elementor, now click on the <strong>Templately</strong> icon from the center. It will open Templately panel and now simply just search for &#8216;<strong>COVID-19</strong>&#8216;. You will find a few templates under that category.</p>\n<p>There are 5 different blocks and pages available under COVID-19. For the purpose of this article, let\'s just focus on the &#8216;COVID-19 Landing Page\' template and click on &#8216;<strong>INSERT</strong>&#8216; icon to get started.</p>\n<p><a href=\"https://wpdeveloper.net/wp-content/uploads/2020/05/0M5nuKNHqJ.gif\"><img class=\"aligncenter wp-image-453202 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/05/0M5nuKNHqJ.gif\" alt=\"COVID-19 website Elementor\" width=\"1338\" height=\"544\" /></a></p>\n<h3><strong>Step 2. </strong>Customize The Template</h3>\n<p>After inserting the template, you will get full freedom to style the template any way you want. You can fill up the content with your own data, change the colors, typographies, and many more as per your requirements & leave your own personal touch.</p>\n<p><a href=\"https://wpdeveloper.net/wp-content/uploads/2020/05/screely-1589091643982.png\"><img class=\"aligncenter wp-image-457217 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/05/screely-1589091643982.png\" alt=\"COVID-19 website Elementor\" width=\"1352\" height=\"687\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/05/screely-1589091643982.png 1352w, https://wpdeveloper.net/wp-content/uploads/2020/05/screely-1589091643982-600x305.png 600w, https://wpdeveloper.net/wp-content/uploads/2020/05/screely-1589091643982-768x390.png 768w\" sizes=\"(max-width: 1352px) 100vw, 1352px\" /></a></p>\n<h3><strong>Step 3. Save Template On Cloud Storage</strong></h3>\n<p>Moreover, you will be able to <a href=\"https://docs.templately.com/home/save-templates-design-on-mycloud/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">save your work on <strong>&#8216;MyCloud\'</strong></a> space of Templately. It provides free cloud storage for your stunning templates. So, if you are an owner of multiple websites and use the COVID-19 template you have built anywhere else, you can do this with just couple of clicks. Sounds pretty awesome, right?</p>\n<p><a href=\"https://wpdeveloper.net/wp-content/uploads/2020/05/GsY9aWE04T.gif\"><img class=\"aligncenter wp-image-453210 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/05/GsY9aWE04T.gif\" alt=\"COVID-19 website Elementor\" width=\"1340\" height=\"577\" /></a></p>\n<h2>Final Outcome</h2>\n<p>By following all the above steps and modifying the content as per your needs, you can build your <strong>COVID-19 website</strong> absolutely for free with Templately premade template designs.</p>\n<p><a href=\"https://wpdeveloper.net/wp-content/uploads/2020/05/WuJqZXIaPI.gif\"><img class=\"aligncenter size-full wp-image-453208\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/05/WuJqZXIaPI.gif\" alt=\"Covid19 Website Elementor\" width=\"1342\" height=\"584\" /></a></p>\n<h2>Wrapping Up</h2>\n<p>If you are looking for a way to instantly create an eye-catchy<strong> COVID-19 website with Elementor</strong>, then Templately is just the right tool that you need. Get ready to spread awareness among your user-base and encourage people to fight together in this global pandemic by creating an informative COVID-19 website.</p>\n<p>So, what do you think of this article? And if you haven\'t tried <strong>Templately</strong> yet, <a href=\"https://wordpress.org/plugins/templately/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">sign up right away for FREE</a> and take your web building experience to the next level.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpdeveloper.net/covid-19-landing-page-elementor/\">[FREEBIE] How To Make COVID-19 Landing Page In WordPress With 1-Click Elementor Template</a> appeared first on <a rel=\"nofollow\" href=\"https://wpdeveloper.net\">WPDeveloper</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://wpdeveloper.net/covid-19-landing-page-elementor/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:91:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"Introducing WordPress Auto Social Sharing On Multi Social Profiles, Facebook Groups &amp; More\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wpdeveloper.net/wordpress-auto-social-sharing/\";s: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://wpdeveloper.net/wordpress-auto-social-sharing/#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, 07 May 2020 18:43: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:7:{i:0;a:5:{s:4:\"data\";s:18:\"WP Scheduled 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:\"\";}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:\"\";}i:2;a:5:{s:4:\"data\";s:16:\"Content Marketer\";s: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:17:\"content 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:4;a:5:{s:4:\"data\";s:25:\"Share Posts Automatically\";s: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:\"Social Sharing\";s: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:25:\"Social Sharing Automation\";s:7:\"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:33:\"https://wpdeveloper.net/?p=435640\";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:506:\"<p>WP Scheduled Posts Pro will automate your social sharing of your daily content on your Facebook, LinkedIn, Pinterest and Twitter with its exclusive features to make it more interactive for your visitors to engage more.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpdeveloper.net/wordpress-auto-social-sharing/\">Introducing WordPress Auto Social Sharing On Multi Social Profiles, Facebook Groups &#038; More</a> appeared first on <a rel=\"nofollow\" href=\"https://wpdeveloper.net\">WPDeveloper</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:\"Afrin\";s: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:14421:\"<p>If you have a blog and looking for a <a href=\"https://www.youtube.com/watch?v=gYHKrPiX5R4\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>WordPress Auto Social sharing</strong></a> solution, then you are in luck today! With the latest version of WP Scheduled Posts, now you can schedule and automatically share your blog posts on multiple social profiles including Facebook groups, Pages, Pinterest, LinkedIn, Twitter, etc.</p>\n<p><span id=\"more-435640\"></span><a href=\"https://wpdeveloper.net/wp-content/uploads/2020/04/Introducing-Multi-Social-Profiles-Facebook-Group-Share-More-In-WP-Scheduled-Posts.png\"><img class=\"aligncenter wp-image-437950 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/Introducing-Multi-Social-Profiles-Facebook-Group-Share-More-In-WP-Scheduled-Posts.png\" alt=\"Introducing WordPress Auto Social Sharing On Multi Social Profiles, Facebook Groups & More\" width=\"1280\" height=\"720\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/04/Introducing-Multi-Social-Profiles-Facebook-Group-Share-More-In-WP-Scheduled-Posts.png 1280w, https://wpdeveloper.net/wp-content/uploads/2020/04/Introducing-Multi-Social-Profiles-Facebook-Group-Share-More-In-WP-Scheduled-Posts-600x338.png 600w, https://wpdeveloper.net/wp-content/uploads/2020/04/Introducing-Multi-Social-Profiles-Facebook-Group-Share-More-In-WP-Scheduled-Posts-768x432.png 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" /></a></p>\n<p>Scheduling your posts for social sharing is one of the hectic but daily activities for anyone who is trying to boost engagement on social media. Content marketers always suffer from having the right tool that will automatically share their posts on multiple platforms. They have to share posts manually on <strong>social profiles, pages, or groups</strong> which seems difficult to maintain and time-consuming.</p>\n<p>To disappear your worries permanently,<span style=\"color: #3366ff;\"> <a style=\"color: #3366ff;\" href=\"https://wpdeveloper.net/docs/automatically-schedule-content/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><strong><span style=\"color: #333333;\">WP Scheduled Posts</span></strong></a><span style=\"color: #333333;\"> is got a makeover to facilitate you all who wanted to share your schedule content automatically on the multiple social profiles, pages, or groups. It has powerful seamless integration with <strong>Facebook, Twitter, Pinterest, and Linkedin </strong>to share your posts through an automated process without taking any manual workload. </span></span></p>\n<h2><strong>Why You Might Need Social Media Automation?<br />\n</strong></h2>\n<p>Every time creating separate posts manually for each social media platforms individual profiles, pages or groups is a tough task to accomplish accurately. It\'s an all-way lengthy work process which makes the simple work difficult. On the other hand, sharing your website content on multiple <a href=\"https://wpdeveloper.net/automatically-social-share-wordpress/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><strong>social media platforms automatically</strong></a> will increase work productivity, efficiency, and save a lot of valuable time.</p>\n<p>You don\'t have to post your <a href=\"https://wpdeveloper.net/docs/requirements-wp-scheduled-posts/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><strong>content manually</strong> </a>or to remember which posts you have to share or not. Once your post goes on air, the rest of the work will be done through automation. In some cases, you can do this with direct sharing from the editorial panel. This makes content marketer or bloggers work much easier than before which saves time, money, energy and removes hassles permanently.</p>\n<p>For instance, you are maintaining a blog site with multiple writers who used to create content on a daily basis. It does not sound efficient if they have to always check the schedule and then make it prepare for posting. Or you want to make it publish for separate pages or groups that you maintain will also be served by the <strong>automation </strong><strong>process</strong>.</p>\n<p>So to make your posts sharing work faster and effective, <a href=\"https://wordpress.org/plugins/wp-scheduled-posts/\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>WP Scheduled Posts Pro</strong></a> comes with its amazing updated automation features besides their content scheduling function. Now by using one tool, you can sync your both scheduling and posting content on the website with social sharing facilities. Before, you have to get a separate plugin for each which is a bit expensive and creates a hassle. This one in all perfect solution is affordable and efficient to serve your both purpose synchronically.</p>\n<h2><span style=\"color: #ff0000;\"><strong><span style=\"color: #333333;\">WP Scheduled Posts Amazing Functionalities To Streamline Social Sharing</span><br />\n</strong></span></h2>\n<p><a href=\"https://wpdeveloper.net/docs/features-included-appsumo-deal/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><strong>WP Scheduled Posts</strong></a> will automate your content scheduling process for Facebook, Pinterest, Twitter, and LinkedIn. It will manage your different social profiles, single pages, and groups. It will automatically appear on the sidebar of every blog on site. From there you can easily choose and maintain in which platform you want to showcase your blogs while you are writing.</p>\n<p><a href=\"https://wpdeveloper.net/wp-content/uploads/2020/04/s5xe6AlbA2.gif\"><img class=\"aligncenter size-full wp-image-437952\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/s5xe6AlbA2.gif\" alt=\"Social Sharing-WP Scheduled Posts\" width=\"1174\" height=\"504\" /></a></p>\n<p>After when your content goes live, it will then publish it on your social profiles in an automated process. You will be able to choose which groups or pages to publish. It will help you to customize your social sharing content with ease. You can add hashtags, banner images with extra spicing lines, links, and make it stand out for visitors to boost your post engagement. It also comes with direct social sharing features from the editorial panel if for any reason you need it.  Now let\'s check out how these <a href=\"https://wpdeveloper.net/social-share-button-elementor/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><strong>social media sites</strong></a> work with WP Scheduled Posts Pro.</p>\n<h2><strong>Get Started With Social Media Automation Process</strong></h2>\n<p>For each <strong>social media</strong>, you have to integrate your account to <a href=\"https://wpdeveloper.net/wp-scheduled-posts-3/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><strong>WP Scheduled Posts</strong></a> first and then you are ready to go and explore its amazing automated features and functions.</p>\n<h3><strong>WordPress Auto Social Sharing On Facebook Profiles, Pages & Groups </strong></h3>\n<p>You can choose which of your Facebook pages or groups, your content will be published on a daily basis or for a particular content too. It will make it publish on your social profile automatically when it goes live on your website. But for that, you have to configure your social account first to get started and to more about this you can check out this <a href=\"https://wpdeveloper.net/docs/share-scheduled-posts-facebook/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><strong>documentation</strong></a>.<a href=\"https://wpdeveloper.net/wp-content/uploads/2020/04/Screen-Capture-on-2020-04-19-at-21-14-46-min.gif\"><img class=\"aligncenter size-full wp-image-445577\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/Screen-Capture-on-2020-04-19-at-21-14-46-min.gif\" alt=\"Social Sharing WP Scheduled Posts \" width=\"1276\" height=\"710\" /></a></p>\n<p>Not only that, but you will also get this social sharing feature for your every post. You will be able to set any specific Facebook banner image instead of your posts featured image. You can directly share your posts from there too.</p>\n<p><a href=\"https://wpdeveloper.net/wp-content/uploads/2020/04/screely-1586678352368.png\"><img class=\"aligncenter size-full wp-image-438196\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/screely-1586678352368.png\" alt=\"Social Sharing WP Scheduled Posts\" width=\"1147\" height=\"541\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/04/screely-1586678352368.png 1147w, https://wpdeveloper.net/wp-content/uploads/2020/04/screely-1586678352368-600x283.png 600w, https://wpdeveloper.net/wp-content/uploads/2020/04/screely-1586678352368-768x362.png 768w\" sizes=\"(max-width: 1147px) 100vw, 1147px\" /></a></p>\n<p>On the other hand, You can also customize your template representation and the overall look. You can add tags, links, or metadata or any custom content for your social sharing.</p>\n<p><a href=\"https://wpdeveloper.net/wp-content/uploads/2020/04/screely-1587433699313.png\"><img class=\"aligncenter size-full wp-image-445582\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/screely-1587433699313.png\" alt=\"Social Sharing WP Scheduled Posts \" width=\"908\" height=\"755\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/04/screely-1587433699313.png 908w, https://wpdeveloper.net/wp-content/uploads/2020/04/screely-1587433699313-600x499.png 600w, https://wpdeveloper.net/wp-content/uploads/2020/04/screely-1587433699313-768x639.png 768w\" sizes=\"(max-width: 908px) 100vw, 908px\" /></a></p>\n<h3><strong>Automatically Tweet On Twitter </strong></h3>\n<p>Twitter account configuration is mostly similar to the Facebook account. You can check out this <a href=\"https://wpdeveloper.net/docs/automatically-tweet-wordpress-posts/\"><strong>documentation</strong> </a>to know more. You can customize your social sharing template content, add categories, and thumbnail image to it.</p>\n<p>On the other hand, you can add banner images for your Twiter posts and directly share them from the editorial panel at any time. Besides that, it will <a href=\"https://wpdeveloper.net/automatically-tweet-wordpress/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><strong>automatically be shared on the Twitter profile</strong> </a>when your content goes live on the website.</p>\n<p><a href=\"https://wpdeveloper.net/wp-content/uploads/2020/04/ezgif-3-c6dbaf3d3b68.gif\"><img class=\"aligncenter size-full wp-image-445584\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/ezgif-3-c6dbaf3d3b68.gif\" alt=\"Social Sharing WP Scheduled Posts \" width=\"1280\" height=\"712\" /></a></p>\n<h3><strong>Automatically Publish Your Posts On LinkedIn </strong></h3>\n<p>There is a bit different here to configure this <a href=\"https://wpdeveloper.net/docs/share-wordpress-posts-on-linkedin/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><strong>LinkedIn Account</strong></a>. You have to first integrate then you will be able to add your profile with WP Scheduled Posts. You can check out the blog to learn in detail. Once you have done, you are all ready to go. You can choose your social banner image as well as other <strong>social sites</strong>. You will be able to share your content tweet directly from the editorial panel.</p>\n<p><a href=\"https://wpdeveloper.net/wp-content/uploads/2020/04/Untitled-Project.gif\"><img class=\"aligncenter size-full wp-image-445585\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/Untitled-Project.gif\" alt=\"Social Sharing WP Scheduled Posts \" width=\"1280\" height=\"714\" /></a></p>\n<p>Besides that, you can customize your social sharing templates by setting up the content type, add categories, and customize the overall content to make it look more engaging for visitors.</p>\n<h3><strong>Pin Your Published Content Automatically On Pinterest Boards </strong></h3>\n<p>Like others, you have to configure your Pinterest account first to automate the social sharing exclusive feature for your content. For that, you have to create an app first and then you have to integrate your account. You can check out this <a href=\"https://wpdeveloper.net/docs/wordpress-posts-on-pinterest/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><strong>documentation</strong></a> to know more.</p>\n<p>You can choose your preferred social sharing banner image to make your post look more interactive. Not only that, but you will also be able to select your Pinterest board or can go with your default boar to showcase your content automatically on your Pinterest board. You can directly share the post from the editorial panel if you want.</p>\n<p><a href=\"https://wpdeveloper.net/wp-content/uploads/2020/04/screely-1580190263013.png\"><img class=\"aligncenter size-full wp-image-438208\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/screely-1580190263013.png\" alt=\"Social Sharing WP Scheduled Posts\" width=\"1407\" height=\"698\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/04/screely-1580190263013.png 1407w, https://wpdeveloper.net/wp-content/uploads/2020/04/screely-1580190263013-600x298.png 600w, https://wpdeveloper.net/wp-content/uploads/2020/04/screely-1580190263013-768x381.png 768w\" sizes=\"(max-width: 1407px) 100vw, 1407px\" /></a></p>\n<h3><strong>Wrapping Up</strong></h3>\n<p>It sounds amazing when you get the chance to share your daily posts on <strong>social media automatically</strong>. And if you get both scheduling and sharing content facility on one tool, then it will boost your work far more than before. WP Schedule Posts comes with these exact advanced features and functions to facilitate your content planning to marketing work effectively with full synchronization.</p>\n<p>If you find this blog helpful, then let us know by commenting below. And if you don\'t try <a href=\"https://wpdeveloper.net/plugins/wp-scheduled-posts/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><strong>WP Scheduled Posts</strong></a> yet, then try this now!</p>\n<p><iframe title=\"How to Share in Multiple Social Media with One Click by using WP Scheduled Posts\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/gYHKrPiX5R4?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe></p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpdeveloper.net/wordpress-auto-social-sharing/\">Introducing WordPress Auto Social Sharing On Multi Social Profiles, Facebook Groups &#038; More</a> appeared first on <a rel=\"nofollow\" href=\"https://wpdeveloper.net\">WPDeveloper</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://wpdeveloper.net/wordpress-auto-social-sharing/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:88:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"Easiest Way To Embed Wistia and Vimeo Videos In WordPress 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:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wpdeveloper.net/embed-wistia-and-vimeo-videos-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:72:\"https://wpdeveloper.net/embed-wistia-and-vimeo-videos-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, 06 May 2020 16:29:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:8:\"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:\"\";}i:1;a:5:{s:4:\"data\";s:30:\"Embed Videos in WordPress 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:18:\"Embed Vimeo Videos\";s: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:44:\"Embed Wistia & Vimeo Video In WordPress 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:4;a:5:{s:4:\"data\";s:19:\"Embed Wistia Videos\";s: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:\"EmbedPress\";s:7:\"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:33:\"https://wpdeveloper.net/?p=450419\";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:371:\"<p>Using EmbedPress you can embed Wistia and Vimeo Videos into your WordPress Site using only the Video URL. </p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpdeveloper.net/embed-wistia-and-vimeo-videos-wordpress/\">Easiest Way To Embed Wistia and Vimeo Videos In WordPress Site</a> appeared first on <a rel=\"nofollow\" href=\"https://wpdeveloper.net\">WPDeveloper</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:11339:\"<p><strong><a href=\"https://embedpress.com/\" target=\"_blank\" rel=\"noopener noreferrer\">EmbedPress</a> </strong>offers the easiest way to embed <a href=\"https://embedpress.com/docs/embed-wistia-videos-wordpress/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Wistia</a> and <a href=\"https://embedpress.com/docs/embed-vimeo-videos-wordpress/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">Vimeo</a> videos In WordPress site. After YouTube, other platforms such as Vimeo and Wistia offer unique features that help marketers make the best out of their video content. From offering more detailed insight into user activity to offering gated content, Vimeo and Wistia are super popular around the world.</p>\n<p><span id=\"more-450419\"></span></p>\n<p><a href=\"https://wpdeveloper.net/wp-content/uploads/2020/04/Easiest-Way-To-Embed-Wistia-and-Vimeo-Videos-In-WordPress-Site.png\"><img class=\"aligncenter size-full wp-image-454100\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/Easiest-Way-To-Embed-Wistia-and-Vimeo-Videos-In-WordPress-Site.png\" alt=\"Embed Wistia and Vimeo Videos\" width=\"1280\" height=\"720\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/04/Easiest-Way-To-Embed-Wistia-and-Vimeo-Videos-In-WordPress-Site.png 1280w, https://wpdeveloper.net/wp-content/uploads/2020/04/Easiest-Way-To-Embed-Wistia-and-Vimeo-Videos-In-WordPress-Site-600x338.png 600w, https://wpdeveloper.net/wp-content/uploads/2020/04/Easiest-Way-To-Embed-Wistia-and-Vimeo-Videos-In-WordPress-Site-768x432.png 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" /></a></p>\n<p>You might be well familiar with YouTube, it is undoubtedly the most popular video-sharing website out there. But there are other video sharing platforms that might be lesser-known but offer great services to users. You might not find viral videos on these platforms but they gold a huge market share.</p>\n<p>When talking about such platforms, Wistia and Vimeo are the top contenders for the number one spot for video sharing platforms. All of these three platforms offer video optimization for higher view count, support high video quality, offer a flexible player interface among others.</p>\n<p>Wistia is a number one pick for marketers. This platform beats YouTube, Vimeo, and other videos sharing platforms when it comes to metrics and analytics. Marketers can see at what point of the video a user paused, which geographical location they are from, where they click on the site, and so on. There is another reason why marketers like Wistia, it helps its users to <strong><a href=\"https://wpdeveloper.net/email-marketing-social-proof/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">grow their email list</a></strong> and generate lead.</p>\n<p>Marketers can place CTA pop-ups within the video. Moreover, Wistia also allows users to create gated content, where viewers will have to provide their email list to continue watching the video. YouTube has the same player interface for all videos and accounts, but Wistia lets you customize the color palette of your video player sot hat it resonates with your brand image.</p>\n<p>On the other hand, Vimeo is more of a video sharing platform for artists. It encourages high-quality video, and it places no limit on the length of your video and its resolution. Marketers have been using Vimeo for B2B campaigns. If you haven\'t used Vimeo before thinking of the platform this way, Viemo is LinkedIn and YouTube is more like Facebook.</p>\n<p>There is a major difference between Vimeo and YouTube. While Youtube earns a large chunk of its revenue from ad display, Vimeo relies on user subscriptions. This enables them to not having to display annoying ads in between the video.</p>\n<h2>Embed Wistia and Vimeo Videos In WordPress Site</h2>\n<p>If you are trying to embed Wistia and Vimeo within your WordPress site, you are in the right place. We will show you how you can embed videos from these two sites without having to look for the embed code, only the video URL is enough.</p>\n<p>But first, you need the plugin EmbedPress. This WordPress plugin lets you embed videos, images, posts, audio, maps, charts, Google Drive documents, and all other types of content into your WordPress site with one-click and showcase it beautifully for the visitors. Moreover, this plugin supports WordPress Classic Editor, Gutenberg Editor as well as Elementor Page Builder.</p>\n<p>Before we show you how you can use EmbedPress to embed videos let us take a look at one the last thing. Why would you want to embed videos inside WordPress posts? Well it is because <strong><a href=\"https://wpdeveloper.net/ea-sticky-video/\">videos make your blogs more engaging.</a></strong></p>\n<h3>Step #1. Install the EmbedPress plugin</h3>\n<p>You can search for EmbedPress from your WordPress dashboard or visit WordPress.org. to <strong><a href=\"https://wordpress.org/plugins/embedpress/\">download EmbedePress</a>. </strong>Then log in to your WordPress dashboard and navigate to <strong>Plugins&gt;&gt;Add new&gt;&gt;Upload&gt;&gt;</strong>Browse the zip downloaded from the previous step.</p>\n<p><img class=\"aligncenter wp-image-450433 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Install-EmbedPress.png\" alt=\"Embed Wistia and Vimeo Videos\" width=\"892\" height=\"607\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Install-EmbedPress.png 892w, https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Install-EmbedPress-600x408.png 600w, https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Install-EmbedPress-768x523.png 768w\" sizes=\"(max-width: 892px) 100vw, 892px\" /></p>\n<p>Then Install EmbedPress, hit the button “<strong>Install now</strong>” and wait until the installation is done. Then click “<strong>Active</strong>”, and that’s it. You now have EmbedPress installed on your site.</p>\n<p><img class=\"aligncenter wp-image-450434 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Install-EmbedPress-Upload-Zip.png\" alt=\"Embed Wistia and Vimeo Videos\" width=\"1352\" height=\"655\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Install-EmbedPress-Upload-Zip.png 1352w, https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Install-EmbedPress-Upload-Zip-600x291.png 600w, https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Install-EmbedPress-Upload-Zip-768x372.png 768w\" sizes=\"(max-width: 1352px) 100vw, 1352px\" /></p>\n<h3>Step #2 Copy URL of Wistia/Vimeo Videos</h3>\n<p>To copy the URL of Vimeo video follow the below steps:</p>\n<ul>\n<li>Login/Register to Vimeo.com (optional)</li>\n<li>Browse through the Video directory or use the search box to find your favorite video</li>\n<li>Click on the video you want to embed</li>\n<li>Copy the URL from the address bar on Video View Page<img class=\"aligncenter wp-image-450435 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Install-EmbedPress-Vimeo-Video-URL.png\" alt=\"Embed Wistia and Vimeo Videos\" width=\"1102\" height=\"636\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Install-EmbedPress-Vimeo-Video-URL.png 1102w, https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Install-EmbedPress-Vimeo-Video-URL-600x346.png 600w, https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Install-EmbedPress-Vimeo-Video-URL-768x443.png 768w\" sizes=\"(max-width: 1102px) 100vw, 1102px\" /></li>\n</ul>\n<p>To copy the URL of Wistia video follow the below steps:</p>\n<ul>\n<li>Go to your Wistia.com account.</li>\n<li>Find the video you want to embed, as in the image below:</li>\n</ul>\n<p><img class=\"aligncenter wp-image-450439 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Install-EmbedPress-Wistia.png\" alt=\"Embed Wistia and Vimeo Videos\" width=\"986\" height=\"683\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Install-EmbedPress-Wistia.png 986w, https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Install-EmbedPress-Wistia-600x416.png 600w, https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Install-EmbedPress-Wistia-768x532.png 768w\" sizes=\"(max-width: 986px) 100vw, 986px\" /></p>\n<ul>\n<li>Find the URL of the Wistia video, as in the image below.</li>\n</ul>\n<p>IMPORTANT: Please make sure that this video is viewable if you are not logged in to Wistia. Try opening another browser and visiting the URL. If your video is set to be “private”, then it can not be shared on your WordPress website.</p>\n<h3>Step #3 Embed Wistia/Vimeo Videos & Publish</h3>\n<p>After you have the Vimeo Video URL, you can add it to WordPress.</p>\n<ul>\n<li>Go to your WordPress site.</li>\n<li>Edit a post or page.</li>\n<li>Add your Vimeo Video URL into the content area, with the “Visual” tab enabled.</li>\n<li>You will see a purple background with a “Loading your embed …” message:</li>\n<li>Your URL will automatically be transformed into an embed of your Vimeo Video.</li>\n</ul>\n<p>After you have the Wistia video URL, you can add it to WordPress.</p>\n<ul>\n<li>Go to your WordPress site.</li>\n<li>Edit a post or page.</li>\n<li>Click the + icon to add a new block.</li>\n<li>Choose the “Wistia” icon in the “EmbedPress” area.</li>\n</ul>\n<p><img class=\"aligncenter wp-image-450441 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Install-EmbedPress-Wistia-Embed.png\" alt=\"Embed Wistia and Vimeo Videos\" width=\"1363\" height=\"653\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Install-EmbedPress-Wistia-Embed.png 1363w, https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Install-EmbedPress-Wistia-Embed-600x287.png 600w, https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Install-EmbedPress-Wistia-Embed-768x368.png 768w\" sizes=\"(max-width: 1363px) 100vw, 1363px\" /></p>\n<ul>\n<li>Your URL will automatically be transformed into an embed of your Wistia video:</li>\n</ul>\n<p><img class=\"aligncenter wp-image-450442 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Install-EmbedPress-Wistia-Embed-Paste-URL.png\" alt=\"Embed Wistia and Vimeo Videos\" width=\"582\" height=\"410\" /></p>\n<ul>\n<li>Publish your WordPress content, and your Wistia video will be embedded for visitors to see, as in the image below:</li>\n</ul>\n<h2>Final Words!</h2>\n<p>So there you go. You now know how to embed Wistia and Vimeo videos to your WordPress Website. Do let us know in the comments section below if you have any further queries.</p>\n<p>In the meantime did you know along with embedding videos from Wistia and Vimeo, EmbedPress can also be used to embed content from other sources. In fact, you can embed media from over <strong><a href=\"https://embedpress.com/sources/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">75 sites using EmbedPress.</a></strong> Starting from Google Maps, Docs, Forms, Sheets, Facebook posts, YouTube, Wistia, Vimeo or Twitch videos, Spotify, Soundcloud, and Mixcloud audio, Imgur, Giphy, and Deviantart images among others.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpdeveloper.net/embed-wistia-and-vimeo-videos-wordpress/\">Easiest Way To Embed Wistia and Vimeo Videos In WordPress Site</a> appeared first on <a rel=\"nofollow\" href=\"https://wpdeveloper.net\">WPDeveloper</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:69:\"https://wpdeveloper.net/embed-wistia-and-vimeo-videos-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:6;a:6:{s:4:\"data\";s:94:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"How To Stop Spam Comments on Your WordPress 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wpdeveloper.net/stop-spam-comments-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:61:\"https://wpdeveloper.net/stop-spam-comments-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:\"Mon, 04 May 2020 17:10: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:8:{i:0;a:5:{s:4:\"data\";s:8:\"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:\"\";}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:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"Akismet\";s: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:17:\"Akismet Anti-Spam\";s: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:30:\"Anti-Spam Plugin 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:\"\";}i:5;a:5:{s:4:\"data\";s:19:\"Remove Spam Comment\";s: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:17:\"wordpress comment\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:7;a:5:{s:4:\"data\";s:22:\"WordPress Spam Comment\";s:7:\"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:33:\"https://wpdeveloper.net/?p=447453\";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:354:\"<p>You can use the default WordPress features to stop spam comments or use the Akismet Anti-Spam WordPress Plugin.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpdeveloper.net/stop-spam-comments-wordpress/\">How To Stop Spam Comments on Your WordPress Website</a> appeared first on <a rel=\"nofollow\" href=\"https://wpdeveloper.net\">WPDeveloper</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:8152:\"<p>Before we answer how you can <strong>stop spam comments</strong> on your WordPress site, let\'s discuss a few basic questions. What do bloggers love to do? Writing fresh insightful content for their readers. What does every blogger hate? Seeing piles of spam comments on their website. Yes, if you are a blogger, we know how annoying it might be for you to see spam comments pile up on your website. But know that you are not the only one getting bombarded with spam comments. Every blogger faces the same, and there are solid solutions to fend against spam comments.</p>\n<h2><span id=\"more-447453\"></span></h2>\n<p><a href=\"https://wpdeveloper.net/wp-content/uploads/2020/04/How-To-Stop-Comment-Spam-on-Your-WordPress-Website.png\"><img class=\"aligncenter size-full wp-image-453233\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/How-To-Stop-Comment-Spam-on-Your-WordPress-Website.png\" alt=\"Stop Spam Comments\" width=\"1280\" height=\"720\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/04/How-To-Stop-Comment-Spam-on-Your-WordPress-Website.png 1280w, https://wpdeveloper.net/wp-content/uploads/2020/04/How-To-Stop-Comment-Spam-on-Your-WordPress-Website-600x338.png 600w, https://wpdeveloper.net/wp-content/uploads/2020/04/How-To-Stop-Comment-Spam-on-Your-WordPress-Website-768x432.png 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" /></a></p>\n<p>Your avid and passionate readers will not take your word at its face value. They will look to validate your statement. It is not that easy to impress these kinds of readers. But their opinion is what you should value the most. They will help you grow.</p>\n<p>Readers can leave a comment documenting their takeaway from your blog. Readers can leave a comment saying whether they liked or disliked it, and most importantly what are the area for improvement.</p>\n<h2>💬Comments Help The Writer Stay on the Grind</h2>\n<p>Back on forth communication via comment between the writer and the readers is a healthy practice. It encourages the flow of information as well as allows both parties to discuss and argue about the write-up freely.</p>\n<p>By freely sharing comments on a blog, a reader can point out the flaws and loopholes in a piece of writing. A reader can suggest better arguments than that of the writer as well as point out new data that can be used as a more solid reference point for the write-up. Who benefits from this the most you may ask? Of course the writer.</p>\n<p>A receptive writer will take time off daily to read what his/her readers have to say about his write-up. And by doing this he/she will get a chance to master the art of writing, level up his skills, and make his/her write-ups more appealing to readers.</p>\n<p>But it has a flip-side too.</p>\n<p>There are many readers out on the internet who would leave irrelevant comments on your blog. And when I say irrelevant I mean complete meaningless statements. Moreover, there are many users who would deploy a bot to leave spam comments. Sometimes they will try to gain from your domain juice by leaving a link back to their website.</p>\n<p>And this doesn\'t happen to you only. It happens to everyone who writes on the internet. Almost every WordPress Website, as well as other blogging platforms, receive its fair share of spam comments on a regular basis.</p>\n<h2>How to Stop Spam Comments on WordPress Website?</h2>\n<p>There are a couple of ways you can stop <a href=\"https://wpdeveloper.net/remove-spam-wordpress/\">Spam Comments</a> on your WordPress Website. You can use plugins or use WordPress default settings to stop spam comments. To access the default WordPress settings first open your <strong>WordPress Dashboard</strong> and navigate to <strong>Settings &gt;&gt; Discussion</strong>.</p>\n<p><img class=\"aligncenter wp-image-447489 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Spam-Comment-WP.png\" alt=\"Stop Spam Comments\" width=\"1350\" height=\"686\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Spam-Comment-WP.png 1350w, https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Spam-Comment-WP-600x305.png 600w, https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Spam-Comment-WP-768x390.png 768w\" sizes=\"(max-width: 1350px) 100vw, 1350px\" /></p>\n<ul>\n<li>From there you can enable some basic measures against comment spam.</li>\n<li>Comment author must fill out name and email.</li>\n<li>Users must be registered and logged in to comment.</li>\n<li>Automatically close comments on posts older than a certain number days, which is not a good practice, you want your readers to be able to leave a comment even after months of publishing the write-up.</li>\n<li>Show comments cookies opt-in checkbox, allowing comment author cookies to be set.</li>\n<li>Enable threaded (nested) comments levels deep. It depends on how engaged your readers are, so it is difficult to pick a definitive number.</li>\n<li>Break comments into pages with top-level comments per page and the page displayed by default.</li>\n</ul>\n<h3>Using a Plugin to Stop Spam Comments</h3>\n<p>You can defend yourself against spam comments using the default WordPress settings. Allowing only <strong><a href=\"https://wpdeveloper.net/wordpress-user-roles-explained/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">registered users</a> </strong>to leave a comment is a great measure, but sometimes it might also fall short. What happens when a bot figure out what\'s stopping it from spamming is registering an account on your website and nothing else. This is where plugins come into play.</p>\n<p>There is a popular anti-spam plugin for WordPress made and maintained by the same people behind WordPress- Automattic. The plugin goes by the name <strong><a href=\"https://wordpress.org/plugins/akismet/\" target=\"_blank\" rel=\"noopener noreferrer\">Akismet Anti-Spam.</a> </strong>How is Akismet better than other WordPress plugins for anti-spam? Well, it maintains a global database of spammers. Remember when we said you are not the only one who receives spam comments, every other blogger receives their fair share of spam comments every day.</p>\n<p><img class=\"aligncenter wp-image-447472 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Spam-Comment-WP-Akismet.jpg\" alt=\"Stop Spam Comments\" width=\"772\" height=\"250\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Spam-Comment-WP-Akismet.jpg 772w, https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Spam-Comment-WP-Akismet-600x194.jpg 600w, https://wpdeveloper.net/wp-content/uploads/2020/04/WPDeveloper-Spam-Comment-WP-Akismet-768x249.jpg 768w\" sizes=\"(max-width: 772px) 100vw, 772px\" /></p>\n<p>It makes all the more sense, doesn\'t it? No spammer will narrow their domain by targeting your website only. They will try to increase their reach. But little do they know this practice can be used against them. As they have a global database, every website that has Akismet Anti-pam on its website will be safe from the global spammers registered on its database.</p>\n<p>This plugin automatically checks all comments and filters out the ones that look suspicious. Moreover, it places a status history against each comment, you can see misleading links hidden with the comment, you can block the worst spammers using the outright discarding feature.</p>\n<h2>Final Words!</h2>\n<p>So now you know how important comments are for your blog. You also know how equally bad spam comments are for your blogs. They add no value to your website, rather they damage the image of your website. How do you stop spam Comments? You can use the default WordPress features by navigating to <strong>Settings&gt;&gt;Discussion</strong>. On the other hand, you can also use the Akismet Anti-Spam plugin to stop spam comments.</p>\n<p>Leave a comment below if you have any further questions, but please don\'t leave spam comments. Cheers!</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpdeveloper.net/stop-spam-comments-wordpress/\">How To Stop Spam Comments on Your WordPress Website</a> appeared first on <a rel=\"nofollow\" href=\"https://wpdeveloper.net\">WPDeveloper</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:58:\"https://wpdeveloper.net/stop-spam-comments-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:103:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"How to Auto Post WordPress Blog On Pinterest Accounts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wpdeveloper.net/auto-post-wordpress-blog-on-pinterest/\";s: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:70:\"https://wpdeveloper.net/auto-post-wordpress-blog-on-pinterest/#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, 04 May 2020 17: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:11:{i:0;a:5:{s:4:\"data\";s:8:\"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:\"\";}i:1;a:5:{s:4:\"data\";s:18:\"WP Scheduled 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:\"\";}i:2;a:5:{s:4:\"data\";s:9:\"auto post\";s: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:\"auto post Pinterest\";s: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:25:\"auto post WordPress blogs\";s: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:18:\"multi social share\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:9:\"Pinterest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:7;a:5:{s:4:\"data\";s:19:\"Pinterest 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:8;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:\"\";}i:9;a:5:{s:4:\"data\";s:17:\"WP Scheduled Post\";s: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:5:{s:4:\"data\";s:22:\"WP Scheduled Posts Pro\";s:7:\"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:33:\"https://wpdeveloper.net/?p=429473\";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:696:\"<p>WP Scheduled Posts Pro comes with an amazing multi-social share feature that will auto post your WordPress blogs on your multiple Pinterest accounts at a time when it goes live on your site. It also offers you the instant share facility to post your article directly from the Editorial. Besides, you will be able to share your content on other social media sites like Facebook, LinkedIn and Twitter multiple social profiles, pages, or groups.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpdeveloper.net/auto-post-wordpress-blog-on-pinterest/\">How to Auto Post WordPress Blog On Pinterest Accounts</a> appeared first on <a rel=\"nofollow\" href=\"https://wpdeveloper.net\">WPDeveloper</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:9034:\"<p>Do you want to automatically share your <strong>WordPress blog on Pinterest</strong>? That will help you to share your schedule content on WordPress site automatically on your multiple accounts or boards? <a href=\"https://wpdeveloper.net/plugins/wp-scheduled-posts/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><strong>WP Scheduled Posts Pro</strong></a> comes with this exact solution that will share your blog post on your multiple social media profiles including Pinterest in an automated process. Let\'s find out how auto-post sharing actually works and gets engaged to the blog till the last!</p>\n<p><span id=\"more-429473\"></span></p>\n<p><a href=\"https://wpdeveloper.net/wp-content/uploads/2020/05/How-to-Auto-Post-WordPress-Blog-To-Your-Pinterest-Account-Using-WP-Scheduled-Post.png\"><img class=\"aligncenter wp-image-458729 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/05/How-to-Auto-Post-WordPress-Blog-To-Your-Pinterest-Account-Using-WP-Scheduled-Post.png\" alt=\"How to Auto Post WordPress Blog On Pinterest Accounts\" width=\"1280\" height=\"720\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/05/How-to-Auto-Post-WordPress-Blog-To-Your-Pinterest-Account-Using-WP-Scheduled-Post.png 1280w, https://wpdeveloper.net/wp-content/uploads/2020/05/How-to-Auto-Post-WordPress-Blog-To-Your-Pinterest-Account-Using-WP-Scheduled-Post-600x338.png 600w, https://wpdeveloper.net/wp-content/uploads/2020/05/How-to-Auto-Post-WordPress-Blog-To-Your-Pinterest-Account-Using-WP-Scheduled-Post-768x432.png 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" /></a></p>\n<h2>Why You Might Have To Focus On Pinterest Sharing?</h2>\n<p>Increasing your <strong>website traffic and conversion</strong> is one of the difficult tasks to accomplish in content marketing. You have to apply innovative tactics that would help you to drive your site engagement and conversion rates simultaneously. Pinterest marketing will do that for you without giving any extra effort.</p>\n<p>For that, <strong>content marketers</strong> mostly focus on sharing their daily blogs on Pinterest to get more site visitors and exposure on the spot. This is mostly because the audience feels attracted more with the interactive content which represents content with amazing visual and text content. This makes it different from other social media sites to build huge social exposure and engagement quicker than others.</p>\n<h2><strong>Benefits of Sharing WordPress Blog on Pinterest</strong></h2>\n<p>Just think about the phase that you have to share your daily blogs manually for your separate <strong>Pinterest accounts</strong>, how would that be? It\'s time-consuming and kills productivity. That you might have to go through a long schedule and maintain it accordingly before publishing your content on your social site.</p>\n<p>For that reason, people feel the necessity of <a href=\"https://wpdeveloper.net/auto-schedule-posts-wordpress/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><strong>automation</strong></a>. It will help you to display your scheduled content at a time your posts being published on your website. You don\'t have to wait for any manual work nor you have to maintain any lists and other stuff. You just have to schedule your blog and it will share your blogs automatically on your multiple social profiles of Pinterest. Isn\'t it amazing? WP Scheduled Posts Pro comes with this amazing auto-sharing feature not only for Pinterest, but you will also be able to share your content at a time on <a href=\"https://wpdeveloper.net/wordpress-auto-social-sharing/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><strong>multi-social profiles</strong></a>, groups, or pages of Facebook, Twitter, and LinkedIn. Let\'s get to know the details!</p>\n<h2><span style=\"color: #003300;\">How To Share Your WordPress Blogs With WP Scheduled Posts</span></h2>\n<p>To share your <a href=\"https://wpdeveloper.net/schedule-articles-wp-scheduled-posts/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><strong>scheduled blogs automatically</strong></a> on your multiple Pinterest accounts, you have to integrate your account first with WP Scheduled Posts. After that, the rest of the work will be done with automation. You can choose your preferred boards to pin your every post separately. Then it will be auto-share your scheduled content on your selected boards.</p>\n<p>Besides, after completing any blogs, you will be able to do instant sharing with this amazing plugin directly from your WordPress editorial to your <strong>Pinterest multi-social profiles or boards</strong>.</p>\n<h2>Let\'s Get Started With WP Scheduled Posts</h2>\n<p>By following the step by step guideline, you will able to <a href=\"https://wpdeveloper.net/automatically-social-share-wordpress/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><strong>auto share your scheduled blogs</strong></a> for your multiple Pinterest accounts using WP Scheduled Posts. Let\'s check out the guide below:</p>\n<h3><strong>Step 1: Configure Social Share Settings</strong></h3>\n<p>First, configure your WP Scheduled Posts with your Pinterest account and if you need help, follow this <a href=\"https://wpdeveloper.net/docs/wordpress-posts-on-pinterest/\" target=\"_blank\" rel=\"noopener noreferrer\">step by step guideline to integrate Pinterest</a>.</p>\n<p>After completing all the setups, you can directly go to your editorial panel to configure the <strong>&#8216;Social Share Settings\' </strong>feature. You have to select Pinterest to auto-share from the WordPress blog. You will be able to choose the boards you want to pin your scheduled content from <strong>Custom Board</strong>.</p>\n<p>Besides, you can change and set a new featured image form <strong>Social Share Banner</strong>.  There, you are ready to go. Now when you scheduled content publishes on your website, it will auto-post your WordPress blogs on Pinterest boards.</p>\n<h3><strong>Step 2: Get Started With Instant Sharing</strong></h3>\n<p>You will be able to share your blog right away from the WordPress editorial by using the <strong>Share Now </strong>feature<strong>. </strong>So, you can rely on the auto post process or can share your content directly on your multi Pinterest account boards whenever you want<strong>.  </strong></p>\n<p><a href=\"https://wpdeveloper.net/wp-content/uploads/2020/05/screenshot.png\"><img class=\"aligncenter size-full wp-image-458816\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/05/screenshot.png\" alt=\"auto post WordPress blogs\" width=\"1408\" height=\"729\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/05/screenshot.png 1408w, https://wpdeveloper.net/wp-content/uploads/2020/05/screenshot-600x311.png 600w, https://wpdeveloper.net/wp-content/uploads/2020/05/screenshot-768x398.png 768w\" sizes=\"(max-width: 1408px) 100vw, 1408px\" /></a></p>\n<h2><strong>How It Will Look Like</strong></h2>\n<p>After successfully following all steps and configurations, you will be able to auto-post your scheduled WordPress blogs outstandingly with <a href=\"https://wordpress.org/plugins/wp-scheduled-posts/\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>WP Schedule Posts Pro</strong></a>.</p>\n<p><a href=\"https://wpdeveloper.net/wp-content/uploads/2020/05/screely-1580190263013.png\"><img class=\"aligncenter size-full wp-image-458709\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/05/screely-1580190263013.png\" alt=\"auto post WordPress blogs\" width=\"1407\" height=\"698\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/05/screely-1580190263013.png 1407w, https://wpdeveloper.net/wp-content/uploads/2020/05/screely-1580190263013-600x298.png 600w, https://wpdeveloper.net/wp-content/uploads/2020/05/screely-1580190263013-768x381.png 768w\" sizes=\"(max-width: 1407px) 100vw, 1407px\" /></a></p>\n<h2><strong>Final Thoughts</strong></h2>\n<p>Automation makes work easier to do even if it\'s huge. For content marketers who are running multiple blogs and social channels, this amazing automation process gives them the freedom. They don\'t have to worry about post their content by the manual process or at a specific time. <strong><a href=\"https://wpdeveloper.net/plugins/wp-scheduled-posts/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">WP Scheduled Posts</a> </strong>will automatically publish their schedule blogs on Pinterest including other social media profiles, pages, or groups instantly when it goes live.</p>\n<p>If you find this blog helpful, let us know by sharing your comment!</p>\n<p><iframe title=\"How to Share in Multiple Social Media with One Click by using WP Scheduled Posts\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/gYHKrPiX5R4?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe></p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpdeveloper.net/auto-post-wordpress-blog-on-pinterest/\">How to Auto Post WordPress Blog On Pinterest Accounts</a> appeared first on <a rel=\"nofollow\" href=\"https://wpdeveloper.net\">WPDeveloper</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:67:\"https://wpdeveloper.net/auto-post-wordpress-blog-on-pinterest/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:94:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"How To Provide Instant Answer In WordPress &amp; Improve User Experience Using BetterDocs\";s:7:\"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://wpdeveloper.net/instant-answer-knowledge-base/\";s: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://wpdeveloper.net/instant-answer-knowledge-base/#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, 28 Apr 2020 16:39: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:8:{i:0;a:5:{s:4:\"data\";s:8:\"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:\"\";}i:1;a:5:{s:4:\"data\";s:10:\"BetterDocs\";s: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: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:\"\";}i:3;a:5:{s:4:\"data\";s:25:\"BetterDocs Instant Answer\";s: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:29:\"Instant Answer Knowledge Base\";s: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:22:\"Instant Answer Support\";s: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:28:\"Knowledge Base Documentation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:7;a:5:{s:4:\"data\";s:31:\"WordPress Documentation 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:33:\"https://wpdeveloper.net/?p=378106\";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:564:\"<p>The customer wants Instant Answer to their query even if they are using Knowledge Base to give their feedback or to know more. BetterDocs comes with this Instant Answering feature to accelerate your Knowledge Base performance, add credibility and boost site traffic on an instance.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpdeveloper.net/instant-answer-knowledge-base/\">How To Provide Instant Answer In WordPress &#038; Improve User Experience Using BetterDocs</a> appeared first on <a rel=\"nofollow\" href=\"https://wpdeveloper.net\">WPDeveloper</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:\"Afrin\";s: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:13448:\"<p><a href=\"https://betterdocs.co/docs/configure-instant-answer-betterdocs/\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>Instant Answer</strong></a> helps you to get the reply right away just by searching it. In any Knowledge Base page, this instant support works like a booster to guide the audience. They don\'t have to roam around everywhere to find a perfect solution. It will provide the proper documentation support to your visitors right away. Your visitors would be able to give their valuable opinion through this form. And this will surely help you to raise the quality of your documentation and make you encouraged to do better in the future.</p>\n<p>Are you curious to know about this special feature of <a href=\"https://betterdocs.co/\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>BetterDocs</strong></a>? Then let\'s find out more about it below!</p>\n<p><span id=\"more-378106\"></span></p>\n<p><a href=\"https://wpdeveloper.net/wp-content/uploads/2019/12/How-To-Provide-Instant-Answer-And-Delight-Customers-Using-Knowledge-Base.png\"><img class=\"aligncenter size-full wp-image-388541\" src=\"https://wpdeveloper.net/wp-content/uploads/2019/12/How-To-Provide-Instant-Answer-And-Delight-Customers-Using-Knowledge-Base.png\" alt=\"Instant Answer BetterDocs\" width=\"1280\" height=\"720\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2019/12/How-To-Provide-Instant-Answer-And-Delight-Customers-Using-Knowledge-Base.png 1280w, https://wpdeveloper.net/wp-content/uploads/2019/12/How-To-Provide-Instant-Answer-And-Delight-Customers-Using-Knowledge-Base-600x338.png 600w, https://wpdeveloper.net/wp-content/uploads/2019/12/How-To-Provide-Instant-Answer-And-Delight-Customers-Using-Knowledge-Base-768x432.png 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" /></a></p>\n<h2>What Do People Want From a Customer Support System?</h2>\n<p>In today\'s fast-paced world, you need<strong> instant solutions</strong> to solve your problem. That\'s why people feel the necessity to get help from customer support. They can either call or generate a support ticket to create real-time communication. And customer wants to get a solution without continuing a long conversation. In that sense, clients want active and dedicated support from the helpdesk<strong>.</strong> So for that reason, self-servicing support can be taken as one of the best 24/7 customer service systems to help your huge user base straight away.</p>\n<p>Not only that, but people also want to get instant solutions to solve their problems without taking anyone\'s help. Because it\'s saves a lot of time and increases productivity. Your new user base can get help from self-servicing documentation which will <a href=\"https://wpdeveloper.net/support-tickets-knowledge-base/\" target=\"_blank\" rel=\"noopener noreferrer\">automatically reduce your support pressure</a>. <span style=\"color: #ff0000;\"><span style=\"color: #333333;\">That\'s why business owners feel the need for <strong>Instant Answer support</strong> with Knowledge Base.</span> </span>And make the online documentation page more efficient to serve the valuable customers.</p>\n<h2>How Instant Answer Works In Knowledge Base</h2>\n<p>Instant Answer provides <strong>automated documentation support</strong> to the customers when they make a query on it. Your visitor will get their exact solution instantly and become satisfied. Because its work process is more flexible and time worthy. Anytime if the user feels the necessity to communicate with or leave feedback, they can easily do that with this support too. Because some advanced answering solution comes with this facility too.</p>\n<h3>Reduce Support Pressure</h3>\n<p>Now you must be wondering, how Instant Answer will <strong>reduce support pressure</strong>? Suppose you make a call on the helpdesk or create a ticket to reach out to them with your problem. What will happen next? In both cases, you have to suffer to get the right answer at the right time. This will kill your time, energy and productivity because of not getting the solution at the exact time. You will suffer from as customers, also where you bound to deliver your work timely.</p>\n<p><span style=\"color: #333333;\"><a href=\"https://wpdeveloper.net/knowledge-base-documentation-customer-support/\" target=\"_blank\" rel=\"noopener noreferrer\">Knowledge Base</a> will help to </span>remove that dependency from the support desk. And Instant Answer system makes its workflow more reliable and flexible immediately. As a result, users can get instant solutions without taking now one\'s help. If they want any further assistance to solve any technical problem or supporting documentation is needed, customers can now easily get by this automation support desk.</p>\n<h3>Encourage Self-Servicing</h3>\n<p>Continuing long conversation for the immediate problem is not at all a productive work to do. So, <span style=\"color: #993366;\"><span style=\"color: #333333;\">educate customers with</span> <a style=\"color: #993366;\" href=\"https://wpdeveloper.net/display-toc-wordpress/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><strong>self-servicing</strong></a> </span>is another creative approach to save both ends time and energy. You will get more happy customers with Knowledge Base with Instant Answer system. In one organized place, you will get your ultimate support and increase your productivity.</p>\n<h3>Faster Decision Making Process</h3>\n<p>As you already know, the main purpose of documentation is to educate your <a href=\"https://betterdocs.co/blog/betterdocs-wordpress-documentation/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><strong>customers or potential buyers</strong> </a>about your product\'s exclusive features, functions, usage and a lot more. So Knowledge Base with Instant support will help to accelerate this work process more accurately by saving time with 24/7 content help. Customers can take their right decision to purchase and solve their technical problems on an instance with Instant Answer support.</p>\n<h3>Get Instant Feedback From Customer</h3>\n<p>What about your customers want to communicate with you to give<strong> feedback?</strong> What will be the solution? Instant Answer of Knowledge Base documentation comes with this exclusive feature. By using this, your customers can instantly give feedback or make direct communication on the spot. Documentation will provide them all the instant support to build a strong relationship and make your product and services more credible.</p>\n<p><a href=\"https://wpdeveloper.net/wp-content/uploads/2019/12/ChatBot.gif\"><img class=\"aligncenter size-full wp-image-401485\" src=\"https://wpdeveloper.net/wp-content/uploads/2019/12/ChatBot.gif\" alt=\"Instant Answer BetterDocs\" width=\"1091\" height=\"623\" /></a></p>\n<h2>Introducing BetterDocs Instant Answer</h2>\n<p>After knowing <strong>Instant Answer all benefits</strong>, now you are convinced to get the best Knowledge Base solution of WordPress that comes with all these advanced features, right? <span style=\"color: #333333;\">Then your search will be ending with <strong><a href=\"http://betterdocs.co\">BetterDocs</a></strong>.</span> It <span style=\"color: #333333;\">comes to help you</span> out with its all advanced features and functions to support with Instant Answer system. You can build, design, analyze customer performance to instant documentation support with an automated process and more. Now let\'s find out how Instant Answer functions on your online documentation site!</p>\n<p><a href=\"https://wpdeveloper.net/wp-content/uploads/2019/12/screely-1576038057818.png\"><img class=\"aligncenter size-full wp-image-381976\" src=\"https://wpdeveloper.net/wp-content/uploads/2019/12/screely-1576038057818.png\" alt=\"Instant Answer BetterDocs\" width=\"1024\" height=\"412\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2019/12/screely-1576038057818.png 1024w, https://wpdeveloper.net/wp-content/uploads/2019/12/screely-1576038057818-600x241.png 600w, https://wpdeveloper.net/wp-content/uploads/2019/12/screely-1576038057818-768x309.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a></p>\n<p>Instant Answer will provide your audience with <a href=\"https://wpdeveloper.net/support-tickets-knowledge-base/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><strong>instant support</strong> </a>whenever they want. You can make it visible for all of your Knowledge Base pages. You will be able to change the Appearance and set it the way you want. You will get the full authority over how it will visualize on your site.</p>\n<p><a href=\"https://wpdeveloper.net/wp-content/uploads/2019/12/screely-1576038099254.png\"><img class=\"aligncenter size-full wp-image-381977\" src=\"https://wpdeveloper.net/wp-content/uploads/2019/12/screely-1576038099254.png\" alt=\"Instant Answer BetterDocs\" width=\"1024\" height=\"501\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2019/12/screely-1576038099254.png 1024w, https://wpdeveloper.net/wp-content/uploads/2019/12/screely-1576038099254-600x294.png 600w, https://wpdeveloper.net/wp-content/uploads/2019/12/screely-1576038099254-768x376.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></a></p>\n<p>You can see all the real-time changes of your Instant Answer System if you enable the Live Preview feature of <a href=\"https://wpdeveloper.net/betterdocs-wordpress-knowledge-base/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><strong>BetterDocs</strong></a>. You can change the Appearance and Colors Settings to style the Instant Answer form as your wish and can at a glace check what changes are taking place. It will help you to give an amazing look by enabling this section.</p>\n<p><a href=\"https://wpdeveloper.net/wp-content/uploads/2019/12/screely-1580118654188.png\"><img class=\"aligncenter size-full wp-image-401498\" src=\"https://wpdeveloper.net/wp-content/uploads/2019/12/screely-1580118654188.png\" alt=\"Instant Answer BetterDocs\" width=\"1202\" height=\"613\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2019/12/screely-1580118654188.png 1202w, https://wpdeveloper.net/wp-content/uploads/2019/12/screely-1580118654188-600x306.png 600w, https://wpdeveloper.net/wp-content/uploads/2019/12/screely-1580118654188-768x392.png 768w\" sizes=\"(max-width: 1202px) 100vw, 1202px\" /></a></p>\n<p>It also comes with the <strong>FeedBack form feature</strong> to make this more flexible for your users to use. They can give their opinion about particular content, overall document or ask anything directly from the Chat Bar of Instant Answer.</p>\n<p><a href=\"https://wpdeveloper.net/wp-content/uploads/2019/12/insta-answerj.gif\"><img class=\"aligncenter size-full wp-image-381972\" src=\"https://wpdeveloper.net/wp-content/uploads/2019/12/insta-answerj.gif\" alt=\"Instant Answer BetterDocs\" width=\"1282\" height=\"626\" /></a></p>\n<p><span style=\"color: #333333;\">On the other hand, you can also use the Instant Answer tool in non-WordPress websites. For that, y</span>ou just have to use the amazing feature <strong>Cross-Domain</strong> to enable this Instant Support System on any website. If you want to know more about it, then you can check the <a href=\"https://betterdocs.co/docs/betterdocs-non-wordpress/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">FAQ Doc</a> on this specific topic. <span style=\"color: #ff0000;\"><br />\n</span></p>\n<p><a href=\"https://wpdeveloper.net/wp-content/uploads/2019/12/Cross-Domain-Integration-Snippet-1.png\"><img class=\"aligncenter size-full wp-image-393383\" src=\"https://wpdeveloper.net/wp-content/uploads/2019/12/Cross-Domain-Integration-Snippet-1.png\" alt=\"Instant Answer BetterDocs\" width=\"1138\" height=\"608\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2019/12/Cross-Domain-Integration-Snippet-1.png 1138w, https://wpdeveloper.net/wp-content/uploads/2019/12/Cross-Domain-Integration-Snippet-1-600x321.png 600w, https://wpdeveloper.net/wp-content/uploads/2019/12/Cross-Domain-Integration-Snippet-1-768x410.png 768w\" sizes=\"(max-width: 1138px) 100vw, 1138px\" /></a></p>\n<h2>Making The Last Call</h2>\n<p><a href=\"https://wpdeveloper.net/best-wordpress-documentation-plugins/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><strong>Online Knowledge Base Site</strong></a> can help your visitors to get instant support to get their problem solution instantly. But how you can make it more flexible and usable for users that\'s the real challenge. <span style=\"color: #333333;\">With the introduction of BetterDocs now you can easily implement this facility on your Online documentation site. And it comes with the Instant Answer Tool to help both WordPress and non-WordPress users sites as we earlier mentioned. </span></p>\n<p>If you find this blog helpful, then let us share your experience by commenting below. And if you don\'t use <a href=\"https://wpdeveloper.net/plugins/betterdocs/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\"><strong>BetterDocs</strong></a> yet, then you can give a try and have a blast!</p>\n<p><iframe title=\"How to Get Started with BetterDocs Instant Answers\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/Txv05sb3b1M?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe></p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpdeveloper.net/instant-answer-knowledge-base/\">How To Provide Instant Answer In WordPress &#038; Improve User Experience Using BetterDocs</a> appeared first on <a rel=\"nofollow\" href=\"https://wpdeveloper.net\">WPDeveloper</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://wpdeveloper.net/instant-answer-knowledge-base/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:82:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"How To Automatically Publish WordPress Post To LinkedIn &amp; Increase 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:73:\"https://wpdeveloper.net/automatically-publish-wordpress-post-to-linkedin/\";s: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:81:\"https://wpdeveloper.net/automatically-publish-wordpress-post-to-linkedin/#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, 23 Apr 2020 18:34: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:4:{i:0;a:5:{s:4:\"data\";s:18:\"WP Scheduled 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:\"\";}i:1;a:5:{s:4:\"data\";s:24:\"Sharing Post To LinkedIn\";s: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: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:\"\";}i:3;a:5:{s:4:\"data\";s:17:\"WP Scheduled Post\";s:7:\"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:33:\"https://wpdeveloper.net/?p=430344\";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:376:\"<p>Using WP Scheduled Post you can automatically publish WordPress post to LinkedIn. </p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpdeveloper.net/automatically-publish-wordpress-post-to-linkedin/\">How To Automatically Publish WordPress Post To LinkedIn &#038; Increase Engagement</a> appeared first on <a rel=\"nofollow\" href=\"https://wpdeveloper.net\">WPDeveloper</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:\"Akash\";s: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:7186:\"<p>LinkedIn is a great platform to share insightful content to reach professionals. Be it blogs or case study, you can count on LinkedIn to reach right audience and gain engagement. Using <a href=\"https://wpdeveloper.net/plugins/wp-scheduled-posts/\" target=\"_blank\" rel=\"noopener noreferrer\">WP Scheduled Posts</a>, you can automatically publish <strong>WordPress post To LinkedIn </strong>account.</p>\n<p><span id=\"more-430344\"></span></p>\n<h2><img class=\"aligncenter wp-image-431935 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/03/How-to-Automatically-Publish-WordPress-Post-To-LinkedIn-Using-WP-Scheduled-Post.png\" alt=\"Automatically Publish WordPress Post To LinkedIn, Publish WordPress Post To LinkedIn, WPDeveloper, WP Scheduled Post\" width=\"1280\" height=\"720\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/03/How-to-Automatically-Publish-WordPress-Post-To-LinkedIn-Using-WP-Scheduled-Post.png 1280w, https://wpdeveloper.net/wp-content/uploads/2020/03/How-to-Automatically-Publish-WordPress-Post-To-LinkedIn-Using-WP-Scheduled-Post-600x338.png 600w, https://wpdeveloper.net/wp-content/uploads/2020/03/How-to-Automatically-Publish-WordPress-Post-To-LinkedIn-Using-WP-Scheduled-Post-768x432.png 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" /></h2>\n<p>LinkedIn users are professionals, they are always on the lookout for new big ideas and insightful content. So make sure your content offers something new or something of real value, otherwise, you might end up creating a negative image among the global professionals.</p>\n<p>However, LinkedIn is quite different from the other social networking platforms as it puts focus on professionals only. Back in 2011, there were around 640 million professionals worldwide, and at that time LinkedIn had over <strong><a href=\"https://99firms.com/blog/linkedin-statistics/#gref\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">135 million users. </a></strong></p>\n<p>Despite focused on professionals, it offers features that are common in other Social Media platforms. You can post updates, comment on content, react to posts and send connection requests to other people like you would do on Facebook. Your profile on LinkedIn works as a digital resume for you. It displays your work experience, your education, achievement, accomplishments, and recommendations.</p>\n<p>Professionals know what to look for in a product, they don\'t keep irrational expectations and most importantly they are willing to spend money. LinkedIn users are more likely on the lookout for new breakthroughs, new productivity hacks, new big ideas. If you do marketing the right way you can reach and even create a completely new user-base.</p>\n<h3>Business Growth With LinkedIn</h3>\n<p>LinkedIn is a great place to attract other businesses as we already mentioned. You can initiate B2B links via sharing what your company is doing, what are your future plans and in that process create links for collaboration. LinkedIn is known as the most popular social networking site for professionals. In fact, <em>46% percent</em> of the social media traffic to B2B company sites is from LinkedIn. If you are thinking whether or not you should start sharing content on LinkedIn, know that 3 million LinkedIn users share content every week on the platform.</p>\n<h2>Should I Share WordPress Posts to LinkedIn?</h2>\n<p>Now there are multiple benefits of sharing your WordPress posts to LinkedIn. The first benefit is readers can easily land on your WordPress Website using the link that comes with the shared post. Every post you share on your LinkedIn profile will give your users a link to land on the posting page on your WordPress Website. Once they are there, they can easily navigate back and forth between your other Website pages.</p>\n<p><img class=\"aligncenter wp-image-431937 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/03/WPDeveloper-LinkedIn-WordPress-Post.png\" alt=\"Automatically Publish WordPress Post To LinkedIn, Publish WordPress Post To LinkedIn, WPDeveloper, WP Scheduled Post\" width=\"1295\" height=\"817\" srcset=\"https://wpdeveloper.net/wp-content/uploads/2020/03/WPDeveloper-LinkedIn-WordPress-Post.png 1295w, https://wpdeveloper.net/wp-content/uploads/2020/03/WPDeveloper-LinkedIn-WordPress-Post-600x379.png 600w, https://wpdeveloper.net/wp-content/uploads/2020/03/WPDeveloper-LinkedIn-WordPress-Post-768x485.png 768w\" sizes=\"(max-width: 1295px) 100vw, 1295px\" /></p>\n<p>The second benefit of sharing your WordPress posts to LinkedIn is your users can react to your post. However, the reaction emojis on LinkedIn is different than Facebook\'s. It offers five reaction options- Like, Celebrate, Love, Insightful and Curious. Moreover, LinkedIn users can also share your shred posts with other LinkedIn users without having to leave the platform. Most importantly, it also gives the option of following interactions on a LinkedIn post. Once your users follow a post, they will receive a notification every time anyone leaves a react and comment.</p>\n<h2>Final Words</h2>\n<p>Now that you know how important it is to share your blog posts on LinkedIn and its benefits you need a tool that will help you do that. But before that, you should know when you should schedule your LinkedIn posts, by when I mean at what point of your editorial task should you accommodate schedule your posts for LinkedIn. The standard practice is scheduling for social share at the time of setting a publishing time for your WordPress post. And like we said in the introduction if you are using <strong><a href=\"https://wordpress.org/plugins/wp-scheduled-posts/\" target=\"_blank\" rel=\"noopener noreferrer\">WP Scheduled Post</a> </strong>you can schedule social share for Linked as well as other social media platforms i.e. Facebook, Twitter, and Pinterest.</p>\n<h3>How to Automatically Publish WordPress Posts To LinkedIn</h3>\n<p>After you have installed and activated <a href=\"https://wpdeveloper.net/plugins/wp-scheduled-posts/\"><strong>WP Schedules Posts</strong></a> on your WordPress Website you can configure the LinkedIn Template Settings and place around content parameters the way you want the shared post to appear. You can show your tags and categories as<strong> ‘Hashtags\'</strong> from here.</p>\n<p><img class=\"aligncenter wp-image-431934 size-full\" src=\"https://wpdeveloper.net/wp-content/uploads/2020/03/WPDeveloper-LinkedIn-Template.gif\" alt=\"Automatically Publish WordPress Post To LinkedIn, Publish WordPress Post To LinkedIn, WPDeveloper, WP Scheduled Post\" width=\"1176\" height=\"592\" /></p>\n<p>We have thorough documentation on how you can <strong><a href=\"https://wpdeveloper.net/docs/share-wordpress-posts-on-linkedin/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">share your WordPress posts on LinkedIn.</a> </strong>Do make sure to check it out and get started sharing your WordPress posts to LinkedIn today.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://wpdeveloper.net/automatically-publish-wordpress-post-to-linkedin/\">How To Automatically Publish WordPress Post To LinkedIn &#038; Increase Engagement</a> appeared first on <a rel=\"nofollow\" href=\"https://wpdeveloper.net\">WPDeveloper</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:78:\"https://wpdeveloper.net/automatically-publish-wordpress-post-to-linkedin/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:29:\"https://wpdeveloper.net/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:21:\"nginx/1.14.0 (Ubuntu)\";s:4:\"date\";s:29:\"Tue, 26 May 2020 09:33:47 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:13:\"last-modified\";s:29:\"Sun, 24 May 2020 14:05:33 GMT\";s:4:\"etag\";s:34:\"\"62fe3abffd846f1a0980511df02726a9\"\";s:10:\"set-cookie\";s:291:\"edd_user_history=%5B%7B%22url%22%3A%22https%3A%5C%2F%5C%2Fwpdeveloper.net%5C%2Ffeed%5C%2F%22%2C%22time%22%3A1590485627%7D%2C%7B%22url%22%3A%22https%3A%5C%2F%5C%2Fwpdeveloper.net%5C%2Ffeed%5C%2F%22%2C%22time%22%3A1590485627%7D%5D; expires=Tue, 02-Jun-2020 09:33:47 GMT; Max-Age=604800; path=/\";s:4:\"link\";s:60:\"<https://wpdeveloper.net/wp-json/>; rel=\"https://api.w.org/\"\";s:3:\"via\";s:10:\"1.1 google\";s:7:\"alt-svc\";s:5:\"clear\";}}s:5:\"build\";s:14:\"20200520081220\";}", "no");
INSERT INTO `lt_options` VALUES("2993", "_transient_timeout_feed_mod_9437e8e02ec5af9028df4e5061705e72", "1590528828", "no");
INSERT INTO `lt_options` VALUES("2994", "_transient_feed_mod_9437e8e02ec5af9028df4e5061705e72", "1590485628", "no");
INSERT INTO `lt_options` VALUES("2995", "_transient_timeout_wc_report_sales_by_date", "1590572028", "no");
INSERT INTO `lt_options` VALUES("2996", "_transient_wc_report_sales_by_date", "a:8:{s:32:\"f850308e92b4aabceab02ad7bfe152bb\";a:0:{}s:32:\"32a24c5951eb2d186d93a2c849727926\";a:0:{}s:32:\"d64bc22857ad4e3d09cd252b2f47a28a\";a:0:{}s:32:\"01bf102287dbba3bf69cbf83f5b7865a\";N;s:32:\"fb56a2cb5e773721fc8052cdb6427b79\";a:0:{}s:32:\"e8f04b5b5febf8c4aede86159af37530\";a:0:{}s:32:\"57bf20f364154cb883227b84af6f83cd\";a:0:{}s:32:\"c5e5137a3115fe0a1b1cd7407264c024\";a:0:{}}", "no");
INSERT INTO `lt_options` VALUES("2997", "_transient_timeout_wc_admin_report", "1590572028", "no");
INSERT INTO `lt_options` VALUES("2998", "_transient_wc_admin_report", "a:1:{s:32:\"bf3e4d47de53e6012b8cfdeac976bccc\";a:0:{}}", "no");
INSERT INTO `lt_options` VALUES("2999", "_site_transient_timeout_community-events-9cd9fbf36c6021d2cde768a9446d7a02", "1590528834", "no");
INSERT INTO `lt_options` VALUES("3000", "_site_transient_community-events-9cd9fbf36c6021d2cde768a9446d7a02", "a:3:{s:9:\"sandboxed\";b:0;s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"182.0.245.0\";}s:6:\"events\";a:1:{i:0;a:8:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:20:\"WordCamp Kent Online\";s:3:\"url\";s:30:\"https://2020.kent.wordcamp.org\";s:6:\"meetup\";N;s:10:\"meetup_url\";N;s:4:\"date\";s:19:\"2020-05-30 12:30:00\";s:8:\"end_date\";s:19:\"2020-05-31 00:00:00\";s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:41.153667400000003;s:9:\"longitude\";d:-81.357885899999999;}}}}", "no");
INSERT INTO `lt_options` VALUES("3001", "_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3", "1590528835", "no");
INSERT INTO `lt_options` VALUES("3002", "_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3", "a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s: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:27:\"News –  – 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:\"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, 13 May 2020 11:05: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:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=5.5-alpha-47854\";s:7:\"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			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"The Month in WordPress: April 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2020/05/the-month-in-wordpress-april-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 04 May 2020 09:31: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: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=8571\";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:364:\"April continued to be a challenging time for the WordPress community, with many under stay-at-home recommendations. However, it was also an exciting month in which we created new ways to connect with and inspire each other! This month, amazing contributors moved more WordCamps online and shipped new releases for WordPress and Gutenberg. For the latest, [&#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:10:\"Angela Jin\";s: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:8195:\"\n<p>April continued to be a challenging time for the WordPress community, with many under stay-at-home recommendations. However, it was also an exciting month in which we created new ways to connect with and inspire each other! This month, amazing contributors moved more WordCamps online and shipped new releases for WordPress and Gutenberg. For the latest, read on. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.4.1 released</h2>\n\n\n\n<p>On April 24th,&nbsp; <a href=\"https://make.wordpress.org/core/2020/04/24/wordpress-5-4-1-rc1/\">WordPress 5.4.1 Release Candidate 1</a> (RC1) was released for testing, quickly followed by the official <a href=\"https://wordpress.org/news/2020/04/wordpress-5-4-1/\">release of WordPress 5.4.1</a> on April 29th. This security release features 17 bug fixes and seven security fixes, so we recommend updating your sites immediately. To download WordPress 5.4.1, visit your Dashboard, click on Updates, then Update Now, or download the latest version directly from WordPress.org. For more information, visit <a href=\"https://wordpress.org/news/2020/04/wordpress-5-4-1/\">this post</a>, review the <a href=\"https://core.trac.wordpress.org/query?milestone=5.4.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;order=priority\">full list of changes on Trac</a>, or check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-4-1/\">version 5.4.1 HelpHub documentation page</a>.</p>\n\n\n\n<p>Want to get involved in building 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 7.9 and 8.0 released</h2>\n\n\n\n<p>It was another exciting month for Gutenberg, with the release of <a href=\"https://make.wordpress.org/core/2020/04/15/whats-new-in-gutenberg-15-april/\">7.9</a> and <a href=\"https://make.wordpress.org/core/2020/04/29/whats-new-in-gutenberg-29-april/\">8.0</a>! Version 7.9 brought new block design tools, three new patterns, and improved block markup. Gutenberg 8.0 continued to refine the new block patterns feature, with additional options for inline formatting, and extending the functionality of the Code Editor. In addition to these new features, both releases included new enhancements and APIs, along with a number of bug fixes, performance improvements, some experiments, and more! You can read all the details about the latest Gutenberg releases in the announcement posts for <a href=\"https://make.wordpress.org/core/2020/04/15/whats-new-in-gutenberg-15-april/\">7.9</a> and <a href=\"https://make.wordpress.org/core/2020/04/29/whats-new-in-gutenberg-29-april/\">8.0</a>.&nbsp;</p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the #core-editor channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>BuddyPress 6.0.0</h2>\n\n\n\n<p><a href=\"https://buddypress.org/2020/04/buddypress-6-0-0-beta2/\">BuddyPress 6.0.0-beta2</a> was released for testing in mid-April, leading to the <a href=\"https://buddypress.org/2020/04/buddypress-6-0-0-release-candidate/\">BuddyPress 6.0.0 Release Candidate</a>, announced on April 29. This is an important step before&nbsp; the final release of BuddyPress 6.0.0, which is slated for Thursday, May 14. Changes and new features in this release include moving the profile photo and user cover image under the BP Members component, and a new BP Rest API. Additionally, this release will introduce the first round of BuddyPress Blocks! Last, but not least, BuddyPress 6.0.0 will require at least PHP 5.6 and WordPress 4.8.&nbsp;</p>\n\n\n\n<p>Want to get involved? <a href=\"https://buddypress.org/2020/04/buddypress-6-0-0-release-candidate/\">Test the 6.0.0-RC here</a>! You can also help by <a href=\"https://translate.wordpress.org/projects/wp-plugins/buddypress/dev/\">translating BuddyPress into another language</a>, or let the team know of any issues you find, either in <a href=\"https://buddypress.org/support\">the support forums</a> and/or in their <a href=\"https://buddypress.trac.wordpress.org/\">development tracker</a>.&nbsp;</p>\n\n\n\n<h2>WordCamp US goes online, apply to speak!</h2>\n\n\n\n<p>WordCamp US will <a href=\"https://2020.us.wordcamp.org/2020/04/30/wordcamp-us-will-be-virtually-awesome/\">take place online due to the COVID-19 pandemic</a>. The event still runs from October 27-29, 2020, and will be free to anyone who wishes to attend. The team plans to offer&nbsp; what WCUS has historically brought to the community in person: sessions and workshops, Contributor Day, a hallway track, and of course, State of the Word.&nbsp;</p>\n\n\n\n<p>Interested in speaking at WCUS? The <a href=\"https://2020.us.wordcamp.org/2020/03/16/call-for-speakers-is-now-open/\">Call for Speakers</a> is still open! You can apply to speak on the <a href=\"https://2020.wcus-speakers.org/\">speaker application site</a> until May 31, 2020 at 11:59 pm CDT (UTC-5).&nbsp;</p>\n\n\n\n<p>Additionally, the <a href=\"https://2020.us.wordcamp.org/2020/03/23/call-for-cities-for-wcus-2021-2022/\">Call for Cities is also open</a>. If your community is interested in hosting WordCamp US in 2021 &amp; 2022, please <a href=\"https://wordcampcentral.survey.fm/wcus-2021-2022\">fill out this application</a>.&nbsp;</p>\n\n\n\n<p>For the latest information about WordCamp US, sign up for updates on the <a href=\"https://2020.us.wordcamp.org/\">website</a>, or follow <a href=\"https://www.facebook.com/WordCampUSA/\">Facebook</a>, <a href=\"https://twitter.com/WordCampUS\">Twitter</a>, or <a href=\"https://www.instagram.com/wordcampus/?hl=en\">Instagram</a>.&nbsp;</p>\n\n\n\n<h2>WordCamp Europe 2020 goes virtual&nbsp;</h2>\n\n\n\n<p>Last month, WordCamp Europe decided to postpone its Porto event to 2021. This April, the WCEU organizing team announced that the <a href=\"https://2020.europe.wordcamp.org/2020/04/06/wordcamp-europe-2020-is-moving-online/\">2020 WordCamp will be online</a>! WordCamp Europe 2020 Online will take place from June 4-6, 2020, and tickets will be free. There will be a <a href=\"https://make.wordpress.org/updates/2020/04/15/wordcamp-europe-2020-contributor-day-update/\">virtual Contributor Day</a> on June 4, and then two half days of live-streamed talks and workshops. To participate, get your free ticket <a href=\"https://2020.europe.wordcamp.org/tickets/\">here</a>.&nbsp;</p>\n\n\n\n<p>To get the latest news for WordCamp Europe 2020 Online, follow on <a href=\"https://www.facebook.com/WCEurope/\">Facebook</a>, <a href=\"https://twitter.com/wceurope?lang=en\">Twitter</a>, <a href=\"https://www.linkedin.com/company/wordcampeurope/\">LinkedIn</a>, or on <a href=\"https://www.instagram.com/wceurope/?hl=en\">Instagram</a>.&nbsp;</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading</h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2020/04/08/wordpress-5-5-call-for-tickets/\">The WordPress 5.5 release cycle has officially been kicked off with a Call for Tickets</a>.</li><li><a href=\"https://make.wordpress.org/themes/2020/04/03/proposal-github-theme-review/\">Read the proposal for a new GitHub Theme review process.</a>.</li><li><a href=\"https://wordpress.tv/event/wpblocktalk-april-2020/\">Did you miss WPBlockTalk, or want to watch that really interesting session again? All talks are available on WordPress.tv!</a></li><li><a href=\"https://make.wordpress.org/core/2020/04/01/feature-plugin-proposal-wp-consent-api/\">The Core team has introduced a proposal for a new Consent API as a feature plugin</a>.</li><li><a href=\"https://make.wordpress.org/updates/2020/04/30/quarterly-updates-q1-2020/\">All WordPress contribution teams have reported on their recent work in the first quarterly update of 2020</a>.</li></ul>\n\n\n\n<p><em>Have a story that we should include 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:\"8571\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"WordPress 5.4.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2020/04/wordpress-5-4-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Apr 2020 19:56: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: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=8553\";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:363:\"WordPress 5.4.1 is now available! This security and maintenance release features 17 bug fixes in addition to 7 security fixes. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated. WordPress 5.4.1 is a short-cycle security and maintenance release. The next [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jake Spurlock\";s: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:7029:\"\n<p>WordPress 5.4.1 is now available!</p>\n\n\n\n<p>This security and maintenance release features 17 <a href=\"https://core.trac.wordpress.org/query?milestone=5.4.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;order=priorityhttps://core.trac.wordpress.org/query?milestone=5.4.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;order=priority\">bug fixes</a> in addition to 7 security fixes. Because this is a <strong>security release</strong>, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated.</p>\n\n\n\n<p>WordPress 5.4.1 is a short-cycle security and maintenance release. The next major release will be version 5.5.</p>\n\n\n\n<p>You can download WordPress 5.4.1 by downloading from WordPress.org, or visit your Dashboard → Updates and click Update Now.</p>\n\n\n\n<p>If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<h3>Security Updates</h3>\n\n\n\n<p>Seven security issues affect WordPress versions 5.4 and earlier. If you haven’t yet updated to 5.4, all WordPress versions since 3.7 have also been updated to fix the following security issues:</p>\n\n\n\n<ul><li>Props to <a href=\"https://hackerone.com/hijibiji\">Muaz Bin Abdus Sattar</a> and <a href=\"https://hackerone.com/dyennez\">Jannes</a> who both independently reported an issue where password reset tokens were not properly invalidated.</li><li>Props to <a href=\"https://github.com/ka1n4t\">ka1n4t</a> for finding an issue where certain private posts can be viewed unauthenticated.</li><li>Props to <a href=\"https://evanricafort.com/\">Evan Ricafort</a> for discovering an XSS issue in the Customizer</li><li>Props to Ben Bidner from the WordPress Security Team who discovered an XSS issue in the search block.</li><li>Props to Nick Daugherty from <a href=\"https://wpvip.com\">WordPress VIP</a> / WordPress Security Team who discovered an XSS issue in <code>wp-object-cache</code>.</li><li>Props to Ronnie Goodrich (<a href=\"https://hackerone.com/kahoots\">Kahoots</a>) and <a href=\"http://pentestusa.com/\">Jason Medeiros</a> who independently reported an XSS issue in file uploads.</li><li>Props to <a href=\"https://weston.ruter.net/\">Weston Ruter</a> for fixing a stored XSS vulnerability in the WordPress customizer.</li><li>Additionally, an authenticated XSS issue in the block editor was discovered by Nguyen The Duc (<a href=\"https://twitter.com/ducnt_\">ducnt</a>) in WordPress 5.4 RC1 and RC2. It was fixed in 5.4 RC5. We wanted to be sure to give credit and thank them for all of their work in making WordPress more secure.</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>. This gave the security team time to fix the vulnerabilities before WordPress sites could be attacked.</p>\n\n\n\n<p>For more information, browse the <a href=\"https://core.trac.wordpress.org/query?milestone=5.4.1&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;order=priority\">full list of changes</a> on Trac, or check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-4-1/\">version 5.4.1 HelpHub documentation page</a>.</p>\n\n\n\n<p>In addition to the security researchers mentioned above, thank you to everyone who helped make WordPress 5.4.1 happen:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/aduth/\">Andrew Duthie</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a>, <a href=\"https://profiles.wordpress.org/arnaudbroes/\">arnaudbroes</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/dhrrob/\">DhrRob</a>, <a href=\"https://profiles.wordpress.org/dono12/\">Dono12</a>, <a href=\"https://profiles.wordpress.org/dudo/\">dudo</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">Ehtisham Siddiqui</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</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/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/markrh/\">MarkRH</a>, <a href=\"https://profiles.wordpress.org/mattyrob/\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/batmoo/\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/nickdaugherty/\">Nick Daugherty</a>, <a href=\"https://profiles.wordpress.org/noahtallen/\">noahtallen</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/westi/\">Peter Westwood</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pikamander2/\">pikamander2</a>, <a href=\"https://profiles.wordpress.org/r-a-y/\">r-a-y</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sorenbronsted/\">Søren Brønsted</a>, <a href=\"https://profiles.wordpress.org/sstoqnov/\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">tellthemachines</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/treecutter/\">treecutter</a>, and <a href=\"https://profiles.wordpress.org/yohannp/\">yohannp</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:\"8553\";s: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:76:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"People of WordPress: Mario Peshev\";s:7:\"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/2020/04/people-of-wordpress-mario-peshev/\";s: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://wordpress.org/news/2020/04/people-of-wordpress-mario-peshev/#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, 08 Apr 2020 00:57:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"heropress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=8536\";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:158:\"In the April edition of our \"People of WordPress\" series, you\'ll find out how Mario Peshev went from self-taught developer to teaching basic digital literacy.\";s: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:\"Yvette Sonneveld\";s: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:12069:\"\n<p><em>You’ve probably heard that WordPress is open source software, and may know that it’s created and run by volunteers. Enthusiasts share many examples of how WordPress has changed people’s lives for the better. In this monthly series, we share some of those lesser-known, amazing stories.</em></p>\n\n\n\n<h2><strong>Computer science in the nineties</strong></h2>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" src=\"https://i2.wp.com/wordpress.org/news/files/2020/04/25de575216d3743f80181b2dca2cd7d9.jpeg?w=632&#038;ssl=1\" alt=\"\" class=\"wp-image-8539\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2020/04/25de575216d3743f80181b2dca2cd7d9.jpeg?w=200&amp;ssl=1 200w, https://i2.wp.com/wordpress.org/news/files/2020/04/25de575216d3743f80181b2dca2cd7d9.jpeg?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 200px) 100vw, 200px\" data-recalc-dims=\"1\" /><figcaption>Mario Peshev</figcaption></figure></div>\n\n\n\n<p>Mario has been hooked on computers ever since he&nbsp;got his first one in 1996. He started with digging into MS-DOS and Windows 3.1 first and learned tons by trial and error. Following that adventure, Mario built his first HTML site in 1999. He found development so exciting that he spent day and night learning QBasic and started working at the local PC game club. Mario got involved with several other things related to website administration (translating security bulletins, setting up simple sites, etc) and soon found the technology field was full of activities he really enjoyed.</p>\n\n\n\n<h2><strong>The Corporate Lifestyle</strong></h2>\n\n\n\n<p>Mario started studying programming including an intensive high-level course for C#, Java development, and software engineering, and eventually got a job in a corporate environment. He soon became a team lead there, managing all the planning and paperwork for their projects.</p>\n\n\n\n<p>But he continued freelancing on the side. He grew his own network of technical experts through attending, volunteering at, and organizing conferences. He also ran a technical forum and regularly spoke at universities and enterprise companies.</p>\n\n\n\n<h2><strong>Remote Working and Business Opportunity</strong></h2>\n\n\n\n<p>The combination of a high workload and a daily three-hour-long commute made Mario’s life difficult. Many of his friends were still studying, traveling or unemployed. The blissful and calm lives they lived seemed like a fairy tale to him. And even while both his managers and his clients were abroad, he was unable to obtain permission to work remotely.&nbsp;</p>\n\n\n\n<p>So Mario decided to leave his job and start freelancing full time. But he found he faced a massive challenge.&nbsp;</p>\n\n\n\n<p>He discovered Java projects were pretty large and required an established team of people working together in an office. All job opportunities were on-site, and some even required relocation abroad. Certified Java programmers weren’t being hired on a remote basis.&nbsp;</p>\n\n\n\n<p>As Mario had some PHP experience from previous jobs, he used this to start his freelance career. For his projects, he used both plain PHP and PHP frameworks like CakePHP and CodeIgniter.&nbsp;</p>\n\n\n\n<p>For a while, Mario accepted work using commonly known platforms including Joomla, Drupal, and WordPress. In addition, he worked on PHP, Java, Python and some C# projects for a couple of years, after which he decided to switch to WordPress completely.</p>\n\n\n\n<h2><strong>Building products</strong></h2>\n\n\n\n<p>One of his projects involved a technically challenging charity backed by several international organizations. Unexpected shortages in the team put him in the technical lead position. As a result, Mario found himself planning the next phases, meeting with the client regularly, and renegotiating the terms. The team completed the project successfully, and after the launch, a TV campaign led millions of visitors to the website.</p>\n\n\n\n<p>As a result of the successful launch, this client invited Mario to participate in more WordPress projects, including building a custom framework.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>“I wasn’t that acquainted with WordPress back then. For me, a conventional person trained in architectural design patterns and best practices, WordPress seemed like an eccentric young hipster somewhere on the line between insane and genius at the same time. I had to spend a couple of months learning WordPress from the inside out.”</em></p><cite>Mario Peshev</cite></blockquote>\n\n\n\n<p>As his interest in WordPress grew, Mario stopped delivering other custom platforms, and converted clients to WordPress.&nbsp;</p>\n\n\n\n<h2><strong>European Community</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" src=\"https://i2.wp.com/wordpress.org/news/files/2020/04/20191001_144227-scaled.jpg?fit=632%2C356&amp;ssl=1\" alt=\"Mario presenting to an audience\" class=\"wp-image-8546\" srcset=\"https://i2.wp.com/wordpress.org/news/files/2020/04/20191001_144227-scaled.jpg?w=2560&amp;ssl=1 2560w, https://i2.wp.com/wordpress.org/news/files/2020/04/20191001_144227-scaled.jpg?resize=300%2C169&amp;ssl=1 300w, https://i2.wp.com/wordpress.org/news/files/2020/04/20191001_144227-scaled.jpg?resize=1024%2C576&amp;ssl=1 1024w, https://i2.wp.com/wordpress.org/news/files/2020/04/20191001_144227-scaled.jpg?resize=768%2C432&amp;ssl=1 768w, https://i2.wp.com/wordpress.org/news/files/2020/04/20191001_144227-scaled.jpg?resize=1536%2C864&amp;ssl=1 1536w, https://i2.wp.com/wordpress.org/news/files/2020/04/20191001_144227-scaled.jpg?resize=2048%2C1152&amp;ssl=1 2048w, https://i2.wp.com/wordpress.org/news/files/2020/04/20191001_144227-scaled.jpg?w=1264&amp;ssl=1 1264w, https://i2.wp.com/wordpress.org/news/files/2020/04/20191001_144227-scaled.jpg?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" /><figcaption>Mario presenting at a WordCamp</figcaption></figure>\n\n\n\n<p>For Mario, one of the key selling points of WordPress was the international openness. He had previously been involved with other open source communities, some of which were US-focused. He felt they were more reliant on meeting people in person. With events only taking place in the US, this made building relationships much harder for people living in other countries.</p>\n\n\n\n<p>While the WordPress project started out in the US, the WordPress community quickly globalized. Dozens of WordCamps and hundreds of Meetup events take place around the globe every year.&nbsp; All of these events bring a wide variety of people sharing their enthusiasm for WordPress together.</p>\n\n\n\n<p>For Mario, the birth of WordCamp Europe was something magical. The fact that hundreds, and later on thousands, of people from all over the world gathered around the topic of WordPress speaks for itself. Mario has been involved with organizing WordCamp Europe twice (in 2014 and 2015).&nbsp;</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>“There’s nothing like meeting WordPress enthusiasts and professionals from more than 50 countries brainstorming and working together at a WordCamp. You simply have to be there to understand how powerful it all is.”</em></p><cite>Mario Peshev</cite></blockquote>\n\n\n\n<h2><strong>Growing businesses and teams</strong></h2>\n\n\n\n<p>A key WordPress benefit is its popularity – an ever growing project currently powering <a href=\"https://w3techs.com/technologies/details/cm-wordpress\">more than 35% of the Internet [2020].</a> It’s popular enough to be a de facto standard for websites, platforms, e-commerce and blogs.&nbsp;</p>\n\n\n\n<p>WordPress has a low barrier to entry. You can achieve a lot without being an expert, meaning most people can start gaining experience without having to spend years learning how to code. That also makes it easier to build businesses and teams.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>“Being able to use a tool that is user-friendly, not overly complicated and easily extensible makes introducing it to team members faster and easier. It requires less time for adjustment, and as a result makes a team stronger and faster. The fact that this tool is cost-effective also allows more startups to enter the market. It requires&nbsp; less time and investments to launch an MVP. This boosts the entire ecosystem.”</em></p><cite>Mario Peshev</cite></blockquote>\n\n\n\n<h2><strong>Helping Others</strong></h2>\n\n\n\n<p>Mario also introduced WordPress to children and young people. He taught them how to use WordPress as a tool for homework and class assignments. By using WordPress, they were able to learn the basics of designing themes, developing plugins, marketing statistics, social media, copywriting, and so much more. This approachable introduction to the software meant technical skills were not needed.</p>\n\n\n\n<p>He was also part of a team of volunteers who helped a group of young people living at a foster home struggling to provide for themselves. The team taught the basic digital literacy skills necessary in the modern workplace and potentially pay for their rent and basic needs. This included working with Microsoft Word, Excel and WordPress, as well as some basic design and marketing skills. </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>“When you look at that from another perspective, a platform that could save lives &#8211; literally &#8211; and change the world for better is worth contributing to, in any possible manner.”</em></p><cite>Mario Peshev</cite></blockquote>\n\n\n\n<h2><strong>Contributing to the WordPress community</strong></h2>\n\n\n\n<p>From the core team to supporting and organizing WordCamps, Mario has long been an active contributor to the global WordPress project. He is passionate about the connections fostered by people who are involved in building both the WordPress software and the community around it.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>“The WordPress community consists of people of all race and color, living all around the world, working as teachers, developers, bloggers, designers, business owners. Let’s work together to help each other. Let’s stick together and show&nbsp; the world WordPress can help make it a better place.”</em></p><cite>Mario Peshev</cite></blockquote>\n\n\n\n<h2><strong>Contributors</strong></h2>\n\n\n\n<p>Thanks to Alison Rothwell (<a href=\'https://profiles.wordpress.org/wpfiddlybits/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>wpfiddlybits</a>), Yvette Sonneveld (<a href=\'https://profiles.wordpress.org/yvettesonneveld/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>yvettesonneveld</a>), Abha Thakor (<a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>), Josepha Haden (<a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a>) and Topher DeRosia (<a href=\'https://profiles.wordpress.org/topher1kenobe/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>topher1kenobe</a>). Thank you to Mario Peshev (<a href=\'https://profiles.wordpress.org/nofearinc/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>nofearinc</a>) for sharing his #ContributorStory.</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"alignleft size-large\"><img loading=\"lazy\" src=\"https://i1.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?w=632&#038;ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p><em>This post is based on </em><a href=\"https://heropress.com/essays/wordpress-gave-perfect-identity/\"><em>an article originally published on HeroPress.com</em></a><em>, a community initiative created by </em><a href=\"https://profiles.wordpress.org/topher1kenobe/\"><em>Topher DeRosia</em></a><em>. HeroPress highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.</em></p>\n\n\n\n<p><em>Meet more WordPress community members over at </em><a href=\"https://heropress.com/\"><em>HeroPress.com</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wordpress.org/news/2020/04/people-of-wordpress-mario-peshev/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:\"12\";s: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:\"8536\";s: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:57:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"The Month in WordPress: March 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2020/04/the-month-in-wordpress-march-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 03 Apr 2020 12:01:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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=8532\";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:363:\"The month of March was both a tough and exciting time for the WordPress open-source project. With COVID-19 declared a pandemic, in-person events have had to adapt quickly &#8211; a challenge for any community. March culminated with the release of WordPress 5.4, an exhilarating milestone only made possible by dedicated contributors. For all the latest, [&#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:8588:\"\n<p>The month of March was both a tough and exciting time for the WordPress open-source project. With COVID-19 declared a pandemic, in-person events have had to adapt quickly &#8211; a challenge for any community. March culminated with the release of WordPress 5.4, an exhilarating milestone only made possible by dedicated contributors. For all the latest, read on.&nbsp;</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.4 “Adderley”</h2>\n\n\n\n<p>WordPress 5.4 “Adderley” <a href=\"https://wordpress.org/news/2020/03/adderley/\">was released on March 31</a> and includes a robust list of new blocks, enhancements, and new features for both users and developers. The primary focus areas of this release included the block editor, privacy, accessibility, and developer improvements, with the full list of enhancements covered in <a href=\"https://make.wordpress.org/core/2020/03/03/wordpress-5-4-field-guide/\">the 5.4 field guide</a>.</p>\n\n\n\n<p>Want to get involved in building 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>Releases of Gutenberg 7.7 and 7.8</h2>\n\n\n\n<p>It’s been another busy month for Gutenberg, this time with the release of Gutenberg <a href=\"https://make.wordpress.org/core/2020/03/11/whats-new-in-gutenberg-11-march/\">7.7</a> and <a href=\"https://make.wordpress.org/core/2020/03/26/whats-new-in-gutenberg-25-march/\">7.8</a>. Gutenberg 7.7 introduced block patterns &#8211; predefined block layouts that are ready to use and tweak. This is an important step towards Full Site Editing, which is currently targeted for inclusion in WordPress 5.6. As a first iteration, you can pick and insert patterns from the Block Patterns UI, which has been added as a sidebar plugin.</p>\n\n\n\n<p>Gutenberg 7.7 also includes a refresh of the Block UI, which better responds to the ways users interact with the editor. For more information on the User UI and Block Patterns, read <a href=\"https://make.wordpress.org/themes/2020/03/18/block-based-themes-meeting-notes/\">this summary of the most recent Block-Based Themes meeting</a>. Gutenberg 7.8, introduced on March 25, further enhanced this Block UI redesign. Both releases also included a suite of improvements, bug fixes, new APIs, documentation, and more!</p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the #core-editor channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>WordCamp cancellations and shift to online events</h2>\n\n\n\n<p>In early March, the Community team issued <a href=\"https://make.wordpress.org/community/2020/03/11/new-recommendations-for-event-organizers-in-light-of-covid-19/\">new recommendations for event organizers</a> in light of growing concerns around COVID-19. Following this guidance, and with COVID-19 declared a pandemic, WordPress community organizers reluctantly but responsibly <a href=\"https://make.wordpress.org/community/2020/03/12/latest-updates-on-changes-to-wordcamps/\">postponed or canceled their upcoming WordCamps</a> and meetups.</p>\n\n\n\n<p>As community events are an important part of the WordPress open-source project, the Community team made suggestions for <a href=\"https://make.wordpress.org/community/2020/03/20/taking-charity-hackathons-online/\">taking charity hackathons online</a>, <a href=\"https://make.wordpress.org/community/2020/03/24/community-events-in-the-time-of-covid-19/\">proposed interim adjustments</a> to existing community event guidelines, and provided <a href=\"https://make.wordpress.org/community/2020/03/13/online-conference-organizer-training/\">training for online conference organizing</a> with Crowdcast. The team is currently working on building a <a href=\"https://make.wordpress.org/community/handbook/virtual-events/\">Virtual Events Handbook</a> that will continue to support WordPress community organizers at this time.&nbsp;</p>\n\n\n\n<p>Want to get involved with the WordPress Community team, host your own virtual WordPress event, or help improve the documentation for all of this? Follow <a href=\"https://make.wordpress.org/community/\">the Community team blog</a>, learn more about <a href=\"https://make.wordpress.org/community/handbook/virtual-events/\">virtual events</a>, and join the #community-events channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Link your GitHub profile to WordPress.org</h2>\n\n\n\n<p>Last month, <a href=\"https://make.wordpress.org/core/2020/02/21/working-on-trac-tickets-using-github-pull-requests/\">an experimental feature</a> was added to Trac, WordPress Core’s bug-tracking system, to improve collaboration between Trac and GitHub. This month, to help make tracking contributions to the WordPress project across multiple locations easier, there is <a href=\"https://make.wordpress.org/core/2020/03/19/associating-github-accounts-with-wordpress-org-profiles/\">a new option</a> to connect your GitHub account to your WordPress.org profile. This connection allows for more accurate acknowledgement and recognition of contributors. You can connect your GitHub account to your WordPress.org account by editing your WordPress.org profile.</p>\n\n\n\n<p>For more information and instructions on how to connect your accounts, <a href=\"https://make.wordpress.org/core/2020/03/19/associating-github-accounts-with-wordpress-org-profiles/\">read the announcement post</a>.</p>\n\n\n\n<h2>Modernizing WordPress coding standards</h2>\n\n\n\n<p>Defined coding standards is an important step in creating the consistent codebase needed to prepare for requiring PHP 7.x for WordPress Core. As such, <a href=\"https://make.wordpress.org/core/2020/03/20/updating-the-coding-standards-for-modern-php/\">coding standards have been proposed</a> for implementation in WordPress Coding Standards 3.0.0. This includes new proposed standards for namespace declarations, import use statements, fully qualified names in inline code, traits and interfaces, type declarations, declare statements/strict typing, the ::class constant, operators, and more.&nbsp;</p>\n\n\n\n<p>Want to get involved or view the full list of currently proposed new coding standards? Visit and add your feedback to the post on <a href=\"https://make.wordpress.org/core/2020/03/20/updating-the-coding-standards-for-modern-php/\">updating the Coding standards for modern PHP</a> and follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</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>On March 16, <a href=\"https://make.wordpress.org/core/2020/03/18/auto-updates-feature-meeting-summary-march-17th-2020/\">Version 0.3 of the auto-updates feature was released</a>, including fixes to a number of issues and the introduction of email notifications.&nbsp;</li><li>WordCamp US announced that <a href=\"https://2020.us.wordcamp.org/2020/03/26/wcus-is-happening/\">the 2020 event will happen</a>, one way or another. But the team need your help to make sure that it’s another fantastic event. <a href=\"https://2020.us.wordcamp.org/2020/03/16/call-for-speakers-is-now-open/\">Consider applying to be a speaker</a>!</li><li>Speaking of WordCamp US, <a href=\"https://2020.us.wordcamp.org/2020/03/23/call-for-cities-for-wcus-2021-2022/\">the Call for Cities for WCUS 2021/2022</a> is now open. If your community is interested in being a future WCUS host, <a href=\"https://wordcampcentral.survey.fm/wcus-2021-2022\">apply today</a>!</li><li>With COVID-19 preventing in-person community events, the Diverse Speaker Training (#wpdiversity) Group encourages you to <a href=\"https://make.wordpress.org/community/2020/03/17/covid-19-and-the-diverse-speaker-training-wpdiversity-group/\">host a virtual Diverse Speaker Workshop</a> to prepare speakers for when we are able to meet in person again. To get started, <a href=\"https://tiny.cc/wpdiversity\">visit this page</a>.&nbsp;</li><li>An <a href=\"https://make.wordpress.org/updates/2020/03/06/update-progress-on-goals/\">update for progress on 2020 goals</a> has been posted, sharing some more defined targets and schedule.</li></ul>\n\n\n\n<p><em>Have a story that we should include 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:\"8532\";s: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:58:\"\n		\n		\n		\n		\n		\n				\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"WordPress 5.4 “Adderley”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"https://wordpress.org/news/2020/03/adderley/\";s: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, 31 Mar 2020 19:04: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: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=8455\";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:255:\"Version 5.4 \"Adderley\" of WordPress is available for download or update in your WordPress dashboard. This version brings you more ways to make content come alive with your best images and helps make your vision real by putting blocks in the perfect place.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:45:\"https://s.w.org/images/core/5.4/textcolor.mp4\";s:6:\"length\";s:6:\"440616\";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:52946:\"\n<p class=\"has-text-color has-very-dark-gray-color\">Here it is! Named “Adderley” in honor of Nat Adderley, the latest and greatest version of WordPress is available for&nbsp;<a href=\"https://wordpress.org/download/\">download</a>&nbsp;or update in your dashboard.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/03/5-4_album-cover.png?resize=632%2C632&#038;ssl=1\" alt=\"\" class=\"wp-image-8484\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2020/03/5-4_album-cover.png?resize=1024%2C1024&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2020/03/5-4_album-cover.png?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2020/03/5-4_album-cover.png?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/wordpress.org/news/files/2020/03/5-4_album-cover.png?resize=768%2C768&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2020/03/5-4_album-cover.png?resize=1536%2C1536&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2020/03/5-4_album-cover.png?resize=2048%2C2048&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2020/03/5-4_album-cover.png?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2020/03/5-4_album-cover.png?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<div class=\"wp-block-cover has-background-dim\" style=\"background-color:#0400e0\"><div class=\"wp-block-cover__inner-container\">\n<p style=\"font-size:32px\" class=\"has-text-align-center\"><strong>Say hello to more and better.</strong></p>\n\n\n\n<p class=\"has-text-align-center has-medium-font-size\">More ways to make your pages come alive. With easier ways to get it all done and looking better than ever—and boosts in speed you can feel.</p>\n</div></div>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"has-text-align-left\"><strong>Welcome to WordPress 5.4</strong></h2>\n\n\n\n<p style=\"font-size:15px\" class=\"has-text-align-left\"><strong>Every major release adds more to the block editor.</strong></p>\n\n\n\n<p style=\"font-size:18px\">More ways to make posts and pages come alive with your best images. More ways to bring your visitors in, and keep them engaged, with the richness of embedded media from the web’s top services.</p>\n\n\n\n<p style=\"font-size:18px\">More ways to make your vision real, and put blocks in the perfect place—even if a particular kind of block is new to you. More efficient processes.</p>\n\n\n\n<p style=\"font-size:18px\">And more speed everywhere, so as you build sections or galleries, or just type in a line of prose, you can feel how much faster your work flows.</p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" src=\"https://i1.wp.com/wordpress.org/news/files/2020/03/Squares.jpg?resize=632%2C316&#038;ssl=1\" alt=\"\" class=\"wp-image-8480\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2020/03/Squares.jpg?resize=1024%2C512&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2020/03/Squares.jpg?resize=300%2C150&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2020/03/Squares.jpg?resize=768%2C384&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2020/03/Squares.jpg?resize=1536%2C768&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2020/03/Squares.jpg?w=2000&amp;ssl=1 2000w, https://i1.wp.com/wordpress.org/news/files/2020/03/Squares.jpg?w=1264&amp;ssl=1 1264w, https://i1.wp.com/wordpress.org/news/files/2020/03/Squares.jpg?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<h3>Two new blocks. And better blocks overall.</h3>\n\n\n\n<ul><li>Two brand-new blocks: Social Icons and Buttons make adding interactive features fast and easy.</li><li>New ways with color: Gradients in the Buttons and Cover block, toolbar access to color options in Rich Text blocks, and for the first time, color options in the Group and Columns blocks.</li><li>Guess a whole lot less! Version 5.4 streamlines the whole process for placing and replacing multimedia in every block. Now it works the same way in almost every block!</li><li>And if you’ve ever thought your image in the Media+Text block should link to something else—perhaps a picture of a brochure should download that brochure as a document? Well, now it can.</li></ul>\n\n\n\n<figure class=\"wp-block-video\"><video controls src=\"https://s.w.org/images/core/5.4/textcolor.mp4\"></video></figure>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h3>Cleaner UI, clearer navigation—and easier tabbing!</h3>\n\n\n\n<ul><li>Clearer block navigation with block breadcrumbs. And easier selection once you get there.</li><li>For when you need to navigate with the keyboard, better tabbing and focus. Plus, you can tab over to the sidebar of nearly any block.</li><li>Speed! 14% faster loading of the editor, 51% faster time-to-type!</li><li>Tips are gone. In their place, a Welcome Guide window you can bring up when you need it—and only when you need it—again and again.</li><li>Know at a glance whether you’re in a block’s Edit or Navigation mode. Or, if you have restricted vision, your screen reader will tell you which mode you’re in.</li></ul>\n\n\n\n<p style=\"background-color:#f8f8f9\" class=\"has-background\">Of course, if you want to work with the very latest tools and features, <strong><a href=\"https://wordpress.org/plugins/gutenberg/\">install the Gutenberg plugin</a></strong>. You’ll get to be the first to use new and exciting features in the block editor before anyone else has seen them!</p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/03/Rectangles-and-circles.jpg?resize=632%2C316&#038;ssl=1\" alt=\"\" class=\"wp-image-8481\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2020/03/Rectangles-and-circles.jpg?resize=1024%2C512&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2020/03/Rectangles-and-circles.jpg?resize=300%2C150&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2020/03/Rectangles-and-circles.jpg?resize=768%2C384&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2020/03/Rectangles-and-circles.jpg?resize=1536%2C768&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2020/03/Rectangles-and-circles.jpg?w=2000&amp;ssl=1 2000w, https://i0.wp.com/wordpress.org/news/files/2020/03/Rectangles-and-circles.jpg?w=1264&amp;ssl=1 1264w, https://i0.wp.com/wordpress.org/news/files/2020/03/Rectangles-and-circles.jpg?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<h3>Your fundamental right: privacy</h3>\n\n\n\n<p>5.4 helps with a variety of privacy issues around the world. So when users and stakeholders ask about regulatory compliance, or how your team handles user data, the answers should be a lot easier to get right.</p>\n\n\n\n<p>Take a look:</p>\n\n\n\n<ul><li>Now personal data exports include users session information and users location data from the community events widget. Plus, a table of contents!</li><li>See progress as you process export and erasure requests through the privacy tools.</li><li>Plus, little enhancements throughout give the privacy tools a little cleaner look. Your eyes will thank you!</li></ul>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" src=\"https://i1.wp.com/wordpress.org/news/files/2020/03/Mixed.jpg?resize=632%2C316&#038;ssl=1\" alt=\"\" class=\"wp-image-8482\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2020/03/Mixed.jpg?resize=1024%2C512&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2020/03/Mixed.jpg?resize=300%2C150&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2020/03/Mixed.jpg?resize=768%2C384&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2020/03/Mixed.jpg?resize=1536%2C768&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2020/03/Mixed.jpg?w=2000&amp;ssl=1 2000w, https://i1.wp.com/wordpress.org/news/files/2020/03/Mixed.jpg?w=1264&amp;ssl=1 1264w, https://i1.wp.com/wordpress.org/news/files/2020/03/Mixed.jpg?w=1896&amp;ssl=1 1896w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<h2><strong>Just for developers</strong></h2>\n\n\n\n<h3>Add custom fields to menu items—natively</h3>\n\n\n\n<p>Two new actions let you add custom fields to menu items—without a plugin and without writing custom walkers.</p>\n\n\n\n<p>On the Menus admin screen, <code>wp_nav_menu_item_custom_fields</code> fires just before the move buttons of a nav menu item in the menu editor.</p>\n\n\n\n<p>In the Customizer, <code>wp_nav_menu_item_custom_fields_customize_template</code> fires at the end of the menu-items form-fields template.</p>\n\n\n\n<p>Check your code and see where these new actions can replace your custom code, and if you’re concerned about duplication, add a check for the WordPress version.</p>\n\n\n\n<h3>Blocks! Simpler styling, new APIs and embeds</h3>\n\n\n\n<ul><li>Radically simpler block styling. Negative margins and default padding are gone! Now you can style blocks the way you need them. And, a refactor got rid of four redundant wrapper divs.</li><li>If you build plugins, now you can register collections of your blocks by namespace across categories—a great way to get more brand visibility.</li><li>Let users do more with two new APIs: block variations and gradients.</li><li>In embeds, now the block editor supports TikTok—and CollegeHumor is gone.</li></ul>\n\n\n\n<p style=\"background-color:#f8f8f9\" class=\"has-background\">There’s lots more for developers to love in WordPress 5.4. To discover more and learn how to make these changes shine on your sites, themes, plugins and more, check the <strong><a href=\"https://make.wordpress.org/core/2020/03/03/wordpress-5-4-field-guide/\">WordPress 5.4 Field Guide</a></strong>.</p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2><strong>The Squad</strong></h2>\n\n\n\n<p>This release was led by&nbsp;<a href=\"http://ma.tt/\">Matt Mullenweg</a>,&nbsp;<a href=\"https://profiles.wordpress.org/francina\">Francesca Marano</a>, and&nbsp;<a href=\"https://dream-encode.com/blog/\">David Baumwald</a>. They were enthusiastically supported by a release squad:</p>\n\n\n\n<ul><li><strong>Editor Tech</strong>: Jorge Filipe Costa (<strong><a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">@jorgefelipecosta</a></strong>)</li><li><strong>Editor Design</strong>: Mark Uraine (<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https://profiles.wordpress.org/mapk/\"><strong>@mapk</strong></a>)</li><li><strong>Core Tech</strong>: Sergey Biryukov (<a href=\"https://profiles.wordpress.org/sergeybiryukov/\"><strong>@sergeybiryukov</strong></a>)</li><li><strong>Design</strong>: Tammie Lister (<strong><a href=\"https://profiles.wordpress.org/karmatosed/\">@karmatosed</a></strong>)</li><li><strong>Docs Coordinator</strong>:&nbsp;JB Audras (<a href=\"https://profiles.wordpress.org/audrasjb/\"><strong>@audrasjb</strong></a>)</li><li><strong>Docs &amp; Comms Wrangler</strong>: Mary Baum (<strong><a href=\"https://profiles.wordpress.org/marybaum/\">@marybaum</a></strong>)</li></ul>\n\n\n\n<p>The squad was joined throughout the release cycle by <strong>552 generous volunteer contributors</strong> who collectively worked on <strong><a href=\"https://core.trac.wordpress.org/milestone/5.4\">361</a> tickets on Trac</strong> and <strong>1226 pull requests on GitHub</strong>.</p>\n\n\n\n<p>Put on a Nat Adderley playlist, click that update button (or&nbsp;<a href=\"https://wordpress.org/download/\">download it directly</a>), and check the profiles of the fine folks that helped:</p>\n\n\n<a href=\"https://profiles.wordpress.org/0v3rth3d4wn/\">0v3rth3d4wn</a>, <a href=\"https://profiles.wordpress.org/123host/\">123host</a>, <a href=\"https://profiles.wordpress.org/1naveengiri/\">1naveengiri</a>, <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abhijitrakas/\">Abhijit Rakas</a>, <a href=\"https://profiles.wordpress.org/abrightclearweb/\">abrightclearweb</a>, <a href=\"https://profiles.wordpress.org/acosmin/\">acosmin</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/adamboro/\">adamboro</a>, <a href=\"https://profiles.wordpress.org/addiestavlo/\">Addie</a>, <a href=\"https://profiles.wordpress.org/adnanlimdi/\">adnan.limdi</a>, <a href=\"https://profiles.wordpress.org/shaikhaezaz80/\">Aezaz Shaikh</a>, <a href=\"https://profiles.wordpress.org/aftabmuni/\">Aftab Ali Muni</a>, <a href=\"https://profiles.wordpress.org/akibjorklund/\">Aki Bj&#246;rklund</a>, <a href=\"https://profiles.wordpress.org/smallprogrammers/\">Akib</a>, <a href=\"https://profiles.wordpress.org/atachibana/\">Akira Tachibana</a>, <a href=\"https://profiles.wordpress.org/akshayar/\">akshayar</a>, <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/aljullu/\">Albert Juh&#233; Lluveras</a>, <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/viper007bond/\">Alex Mills</a>, <a href=\"https://profiles.wordpress.org/alexholsgrove/\">AlexHolsgrove</a>, <a href=\"https://profiles.wordpress.org/alexischenal/\">alexischenal</a>, <a href=\"https://profiles.wordpress.org/alextran/\">alextran</a>, <a href=\"https://profiles.wordpress.org/alishankhan/\">alishankhan</a>, <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a>, <a href=\"https://profiles.wordpress.org/allendav/\">Allen Snook</a>, <a href=\"https://profiles.wordpress.org/alpipego/\">alpipego</a>, <a href=\"https://profiles.wordpress.org/amirs17/\">Amir Seljubac</a>, <a href=\"https://profiles.wordpress.org/wpamitkumar/\">Amit Dudhat</a>, <a href=\"https://profiles.wordpress.org/amolv/\">Amol Vhankalas</a>, <a href=\"https://profiles.wordpress.org/agawish/\">Amr Gawish</a>, <a href=\"https://profiles.wordpress.org/amykamala/\">Amy Kamala</a>, <a href=\"https://profiles.wordpress.org/anantajitjg/\">Anantajit JG</a>, <a href=\"https://profiles.wordpress.org/anlino/\">Anders Nor&#233;n</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/dontdream/\">Andrea Tarantini</a>, <a href=\"https://profiles.wordpress.org/andreaitm/\">andreaitm</a>, <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a>, <a href=\"https://profiles.wordpress.org/aandrewdixon/\">Andrew Dixon</a>, <a href=\"https://profiles.wordpress.org/aduth/\">Andrew Duthie</a>, <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a>, <a href=\"https://profiles.wordpress.org/eatingrules/\">Andrew Wilder</a>, <a href=\"https://profiles.wordpress.org/rarst/\">Andrey Savchenko</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/andizer/\">Andy Meerwaldt</a>, <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a>, <a href=\"https://profiles.wordpress.org/la-geek/\">Angelika Reisiger</a>, <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a>, <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a>, <a href=\"https://profiles.wordpress.org/paranoia1906/\">Anthony Ledesma</a>, <a href=\"https://profiles.wordpress.org/apedog/\">apedog</a>, <a href=\"https://profiles.wordpress.org/apermo/\">Apermo</a>, <a href=\"https://profiles.wordpress.org/apieschel/\">apieschel</a>, <a href=\"https://profiles.wordpress.org/aravindajith/\">Aravind Ajith</a>, <a href=\"https://profiles.wordpress.org/archon810/\">archon810</a>, <a href=\"https://profiles.wordpress.org/arenddeboer/\">arenddeboer</a>, <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a>, <a href=\"https://profiles.wordpress.org/arnaudbroes/\">arnaudbroes</a>, <a href=\"https://profiles.wordpress.org/passoniate/\">Arslan Ahmed</a>, <a href=\"https://profiles.wordpress.org/ashokrd2013/\">ashokrd2013</a>, <a href=\"https://profiles.wordpress.org/ataurr/\">Ataur R</a>, <a href=\"https://profiles.wordpress.org/ate-up-with-motor/\">Ate Up With Motor</a>, <a href=\"https://profiles.wordpress.org/autotutorial/\">autotutorial</a>, <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a>, <a href=\"https://profiles.wordpress.org/backups/\">BackuPs</a>, <a href=\"https://profiles.wordpress.org/bahia0019/\">bahia0019</a>, <a href=\"https://profiles.wordpress.org/b-07/\">Bappi</a>, <a href=\"https://profiles.wordpress.org/bartczyz/\">Bart Czyz</a>, <a href=\"https://profiles.wordpress.org/bengreeley/\">ben.greeley</a>, <a href=\"https://profiles.wordpress.org/benedictsinger/\">benedictsinger</a>, <a href=\"https://profiles.wordpress.org/bfintal/\">Benjamin Intal</a>, <a href=\"https://profiles.wordpress.org/bibliofille/\">bibliofille</a>, <a href=\"https://profiles.wordpress.org/bilgilabs/\">bilgilabs</a>, <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/skypressatx/\">BMO</a>, <a href=\"https://profiles.wordpress.org/boga86/\">Boga86</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a>, <a href=\"https://profiles.wordpress.org/bwmarkle/\">Brad Markle</a>, <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/brentswisher/\">Brent Swisher</a>, <a href=\"https://profiles.wordpress.org/cvoell/\">Cameron Voell</a>, <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a>, <a href=\"https://profiles.wordpress.org/ceyhun0/\">ceyhun0</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/ketuchetan/\">Chetan Satasiya</a>, <a href=\"https://profiles.wordpress.org/chinteshprajapati/\">Chintesh Prajapati</a>, <a href=\"https://profiles.wordpress.org/chipsnyder/\">Chip Snyder</a>, <a href=\"https://profiles.wordpress.org/cklosows/\">Chris Klosowski</a>, <a href=\"https://profiles.wordpress.org/eclare/\">Chris Trynkiewicz (Sukces Strony)</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/pixelverbieger/\">Christian Sabo</a>, <a href=\"https://profiles.wordpress.org/christianamohr/\">Christiana Mohr</a>, <a href=\"https://profiles.wordpress.org/clayisland/\">clayisland</a>, <a href=\"https://profiles.wordpress.org/copons/\">Copons</a>, <a href=\"https://profiles.wordpress.org/coreymckrill/\">Corey McKrill</a>, <a href=\"https://profiles.wordpress.org/crdunst/\">crdunst</a>, <a href=\"https://profiles.wordpress.org/littlebigthing/\">Csaba (LittleBigThings)</a>, <a href=\"https://profiles.wordpress.org/xendo/\">Dademaru</a>, <a href=\"https://profiles.wordpress.org/retrofox/\">Damián Suárez</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a>, <a href=\"https://profiles.wordpress.org/danieltj/\">Daniel James</a>, <a href=\"https://profiles.wordpress.org/diddledan/\">Daniel Llewellyn</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/daniloercoli/\">daniloercoli</a>, <a href=\"https://profiles.wordpress.org/nerrad/\">Darren Ethier (nerrad)</a>, <a href=\"https://profiles.wordpress.org/darrenlambert/\">darrenlambert</a>, <a href=\"https://profiles.wordpress.org/davidshq/\">Dave Mackey</a>, <a href=\"https://profiles.wordpress.org/get_dave/\">Dave Smith</a>, <a href=\"https://profiles.wordpress.org/daveslaughter/\">daveslaughter</a>, <a href=\"https://profiles.wordpress.org/davewp196/\">DaveWP196</a>, <a href=\"https://profiles.wordpress.org/dartiss/\">David Artiss</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/dryanpress/\">David Ryan</a>, <a href=\"https://profiles.wordpress.org/dshanske/\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/superdav42/\">David Stone</a>, <a href=\"https://profiles.wordpress.org/dkarfa/\">Debabrata Karfa</a>, <a href=\"https://profiles.wordpress.org/dekervit/\">dekervit</a>, <a href=\"https://profiles.wordpress.org/delowardev/\">Delowar Hossain</a>, <a href=\"https://profiles.wordpress.org/denisco/\">Denis Yanchevskiy</a>, <a href=\"https://profiles.wordpress.org/dhavalkasvala/\">Dhaval kasavala</a>, <a href=\"https://profiles.wordpress.org/dhurlburtusa/\">dhurlburtusa</a>, <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a>, <a href=\"https://profiles.wordpress.org/dingo_d/\">dingo-d</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dipeshkakadiya/\">dipeshkakadiya</a>, <a href=\"https://profiles.wordpress.org/djp424/\">djp424</a>, <a href=\"https://profiles.wordpress.org/dominic_ks/\">dominic_ks</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/dono12/\">Dono12</a>, <a href=\"https://profiles.wordpress.org/dotancohen/\">Dotan Cohen</a>, <a href=\"https://profiles.wordpress.org/dphiffer/\">dphiffer</a>, <a href=\"https://profiles.wordpress.org/dragosh635/\">dragosh635</a>, <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/dudo/\">dudo</a>, <a href=\"https://profiles.wordpress.org/eclev91/\">eclev91</a>, <a href=\"https://profiles.wordpress.org/seedsca/\">ecotechie</a>, <a href=\"https://profiles.wordpress.org/eden159/\">eden159</a>, <a href=\"https://profiles.wordpress.org/ediamin/\">Edi Amin</a>, <a href=\"https://profiles.wordpress.org/disillusia/\">edmundcwm</a>, <a href=\"https://profiles.wordpress.org/etoledom/\">Eduardo Toledo</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">ehtis</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/elmastudio/\">Ellen Bauer</a>, <a href=\"https://profiles.wordpress.org/aliveic/\">Emil E</a>, <a href=\"https://profiles.wordpress.org/epiqueras/\">Enrique Piqueras</a>, <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique Sánchez</a>, <a href=\"https://profiles.wordpress.org/equin0x80/\">equin0x80</a>, <a href=\"https://profiles.wordpress.org/erikkroes/\">erikkroes</a>, <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a>, <a href=\"https://profiles.wordpress.org/fabifott/\">Fabian</a>, <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian K&#228;gy</a>, <a href=\"https://profiles.wordpress.org/fahimmurshed/\">Fahim Murshed</a>, <a href=\"https://profiles.wordpress.org/faisal03/\">Faisal Alvi</a>, <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a>, <a href=\"https://profiles.wordpress.org/felipeloureirosantos/\">Felipe Santos</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/fernandovbsouza/\">Fernando Souza</a>, <a href=\"https://profiles.wordpress.org/fervillz/\">fervillz</a>, <a href=\"https://profiles.wordpress.org/fgiannar/\">fgiannar</a>, <a href=\"https://profiles.wordpress.org/flaviozavan/\">flaviozavan</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/fotisps/\">Fotis Pastrakis</a>, <a href=\"https://profiles.wordpress.org/efarem/\">Frank Martin</a>, <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/guddu1315/\">Gaurang Dabhi</a>, <a href=\"https://profiles.wordpress.org/georgestephanis/\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/geriux/\">geriux</a>, <a href=\"https://profiles.wordpress.org/girishpanchal/\">Girish Panchal</a>, <a href=\"https://profiles.wordpress.org/glebkema/\">Gleb Kemarsky</a>, <a href=\"https://profiles.wordpress.org/hometowntrailers/\">Glenn</a>, <a href=\"https://profiles.wordpress.org/gh640/\">Goto Hayato</a>, <a href=\"https://profiles.wordpress.org/grafruessel/\">grafruessel</a>, <a href=\"https://profiles.wordpress.org/gregrickaby/\">Greg Rickaby</a>, <a href=\"https://profiles.wordpress.org/gziolo/\">Grzegorz Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/grzegorzjanoszka/\">Grzegorz.Janoszka</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/hamedmoodi/\">hamedmoodi</a>, <a href=\"https://profiles.wordpress.org/hampzter/\">hAmpzter</a>, <a href=\"https://profiles.wordpress.org/happiryu/\">happiryu</a>, <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh Pillai</a>, <a href=\"https://profiles.wordpress.org/harry-milatz/\">Harry Milatz</a>, <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a>, <a href=\"https://profiles.wordpress.org/helgatheviking/\">helgatheviking</a>, <a href=\"https://profiles.wordpress.org/henryholtgeerts/\">Henry Holtgeerts</a>, <a href=\"https://profiles.wordpress.org/imani3011/\">Himani Lotia</a>, <a href=\"https://profiles.wordpress.org/krynes/\">Hubert Kubiak</a>, <a href=\"https://profiles.wordpress.org/i3anaan/\">i3anaan</a>, <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a>, <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianatkins/\">ianatkins</a>, <a href=\"https://profiles.wordpress.org/ianmjones/\">ianmjones</a>, <a href=\"https://profiles.wordpress.org/ideaboxcreations/\">IdeaBox Creations</a>, <a href=\"https://profiles.wordpress.org/shaampk1/\">Ihtisham Zahoor</a>, <a href=\"https://profiles.wordpress.org/intimez/\">intimez</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/ispreview/\">ispreview</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jbinda/\">Jakub Binda</a>, <a href=\"https://profiles.wordpress.org/macmanx/\">James Huff</a>, <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a>, <a href=\"https://profiles.wordpress.org/jnylen0/\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jameslnewell/\">jameslnewell</a>, <a href=\"https://profiles.wordpress.org/jankimoradiya/\">Janki Moradiya</a>, <a href=\"https://profiles.wordpress.org/jarretc/\">Jarret</a>, <a href=\"https://profiles.wordpress.org/studiotwee/\">Jasper van der Meer</a>, <a href=\"https://profiles.wordpress.org/jaydeep23290/\">jaydeep23290</a>, <a href=\"https://profiles.wordpress.org/jdy68/\">jdy68</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a>, <a href=\"https://profiles.wordpress.org/jean-david/\">Jean-David Daviet</a>, <a href=\"https://profiles.wordpress.org/jblz/\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a>, <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/phpbits/\">Jeffrey Carandang</a>, <a href=\"https://profiles.wordpress.org/jeichorn/\">jeichorn</a>, <a href=\"https://profiles.wordpress.org/jenilk/\">Jenil Kanani</a>, <a href=\"https://profiles.wordpress.org/miss_jwo/\">Jenny Wong</a>, <a href=\"https://profiles.wordpress.org/jepperask/\">jepperask</a>, <a href=\"https://profiles.wordpress.org/jeremyclarke/\">Jer Clarke</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a>, <a href=\"https://profiles.wordpress.org/jeroenrotty/\">Jeroen Rotty</a>, <a href=\"https://profiles.wordpress.org/jeryj/\">Jerry Jones</a>, <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a>, <a href=\"https://profiles.wordpress.org/jipmoors/\">Jip Moors</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/joen/\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/johnwatkins0/\">John Watkins</a>, <a href=\"https://profiles.wordpress.org/jon81/\">Jon</a>, <a href=\"https://profiles.wordpress.org/itsjonq/\">Jon Quach</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/jg-visual/\">Jonathan Goldford</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonoaldersonwp/\">Jono Alderson</a>, <a href=\"https://profiles.wordpress.org/joonasvanhatapio/\">Joonas Vanhatapio</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/chanthaboune/\">Josepha Haden</a>, <a href=\"https://profiles.wordpress.org/joshuawold/\">JoshuaWold</a>, <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a>, <a href=\"https://profiles.wordpress.org/jqz/\">jqz</a>, <a href=\"https://profiles.wordpress.org/jsnajdr/\">jsnajdr</a>, <a href=\"https://profiles.wordpress.org/juanfra/\">Juanfra Aldasoro</a>, <a href=\"https://profiles.wordpress.org/derweili/\">Julian Weiland</a>, <a href=\"https://profiles.wordpress.org/juliankimmig/\">julian.kimmig</a>, <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a>, <a href=\"https://profiles.wordpress.org/juliobox/\">Julio Potier</a>, <a href=\"https://profiles.wordpress.org/nukaga/\">Junko Nukaga</a>, <a href=\"https://profiles.wordpress.org/jurgen/\">jurgen</a>, <a href=\"https://profiles.wordpress.org/justdaiv/\">justdaiv</a>, <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a>, <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a>, <a href=\"https://profiles.wordpress.org/kaggdesign/\">kaggdesign</a>, <a href=\"https://profiles.wordpress.org/kalpshit/\">KalpShit Akabari</a>, <a href=\"https://profiles.wordpress.org/leprincenoir/\">Kantari Samy</a>, <a href=\"https://profiles.wordpress.org/kasparsd/\">Kaspars</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/kennithnichol/\">Kennith Nichol</a>, <a href=\"https://profiles.wordpress.org/khag7/\">Kevin Hagerty</a>, <a href=\"https://profiles.wordpress.org/kharisblank/\">Kharis Sulistiyono</a>, <a href=\"https://profiles.wordpress.org/khushbu19/\">Khushbu Modi</a>, <a href=\"https://profiles.wordpress.org/killerbishop/\">killerbishop</a>, <a href=\"https://profiles.wordpress.org/kinjaldalwadi/\">kinjaldalwadi</a>, <a href=\"https://profiles.wordpress.org/kitchin/\">kitchin</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/kkarpieszuk/\">kkarpieszuk</a>, <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/kokkieh/\">KokkieH</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/klopez8/\">Krystyna</a>, <a href=\"https://profiles.wordpress.org/kubiq/\">kubiq</a>, <a href=\"https://profiles.wordpress.org/wpkuf/\">kuflievskiy</a>, <a href=\"https://profiles.wordpress.org/sainthkh/\">Kukhyeon Heo</a>, <a href=\"https://profiles.wordpress.org/kyliesabra/\">kyliesabra</a>, <a href=\"https://profiles.wordpress.org/lakenh/\">Laken Hafner</a>, <a href=\"https://profiles.wordpress.org/leandroalonso/\">leandroalonso</a>, <a href=\"https://profiles.wordpress.org/leogermani/\">leogermani</a>, <a href=\"https://profiles.wordpress.org/lgrev01/\">lgrev01</a>, <a href=\"https://profiles.wordpress.org/linuxologos/\">linuxologos</a>, <a href=\"https://profiles.wordpress.org/lisota/\">lisota</a>, <a href=\"https://profiles.wordpress.org/lorenzof/\">Lorenzo Fracassi</a>, <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a>, <a href=\"https://profiles.wordpress.org/luisrivera/\">luisrivera</a>, <a href=\"https://profiles.wordpress.org/lukaswaudentio/\">lukaswaudentio</a>, <a href=\"https://profiles.wordpress.org/ljasinskipl/\">Lukasz Jasinski</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/wodarekly/\">Lydia Wodarek</a>, <a href=\"https://profiles.wordpress.org/vinoth06/\">M A Vinoth Kumar</a>, <a href=\"https://profiles.wordpress.org/maciejmackowiak/\">maciejmackowiak</a>, <a href=\"https://profiles.wordpress.org/mahesh901122/\">Mahesh Waghmare</a>, <a href=\"https://profiles.wordpress.org/manzoorwanijk/\">Manzoor Wani</a>, <a href=\"https://profiles.wordpress.org/marcelo2605/\">marcelo2605</a>, <a href=\"https://profiles.wordpress.org/marcio-zebedeu/\">Marcio Zebedeu</a>, <a href=\"https://profiles.wordpress.org/marcoz/\">MarcoZ</a>, <a href=\"https://profiles.wordpress.org/mkaz/\">Marcus Kazmierczak</a>, <a href=\"https://profiles.wordpress.org/marekdedic/\">Marek Dědič</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius Jensen</a>, <a href=\"https://profiles.wordpress.org/marius84/\">Marius84</a>, <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/mmarzeotti/\">Mark Marzeotti</a>, <a href=\"https://profiles.wordpress.org/mapk/\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/markrh/\">MarkRH</a>, <a href=\"https://profiles.wordpress.org/hinjiriyo/\">Martin Stehle</a>, <a href=\"https://profiles.wordpress.org/m-e-h/\">Marty Helmick</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a>, <a href=\"https://profiles.wordpress.org/matstars/\">Mat Gargano</a>, <a href=\"https://profiles.wordpress.org/mat-lipe/\">Mat Lipe</a>, <a href=\"https://profiles.wordpress.org/imath/\">Mathieu Viet</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a>, <a href=\"https://profiles.wordpress.org/mattkeys/\">Matt Keys</a>, <a href=\"https://profiles.wordpress.org/veraxus/\">Matt van Andel</a>, <a href=\"https://profiles.wordpress.org/mattchowning/\">mattchowning</a>, <a href=\"https://profiles.wordpress.org/mattnyeus/\">mattcursor</a>, <a href=\"https://profiles.wordpress.org/snapfractalpop/\">Matthew Kevins</a>, <a href=\"https://profiles.wordpress.org/mattyrob/\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/maxme/\">maxme</a>, <a href=\"https://profiles.wordpress.org/mayanksonawat/\">mayanksonawat</a>, <a href=\"https://profiles.wordpress.org/mbrailer/\">mbrailer</a>, <a href=\"https://profiles.wordpress.org/mehidi258/\">Mehidi Hassan</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/mensmaximus/\">mensmaximus</a>, <a href=\"https://profiles.wordpress.org/michael-arestad/\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michaelecklund/\">Michael Ecklund</a>, <a href=\"https://profiles.wordpress.org/donmhico/\">Michael Panaga</a>, <a href=\"https://profiles.wordpress.org/marktimemedia/\">Michelle Schulp</a>, <a href=\"https://profiles.wordpress.org/mickaelperrin/\">mickaelperrin</a>, <a href=\"https://profiles.wordpress.org/miette49/\">miette49</a>, <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/mmtr86/\">Miguel Torres</a>, <a href=\"https://profiles.wordpress.org/mihdan/\">mihdan</a>, <a href=\"https://profiles.wordpress.org/miinasikk/\">Miina Sikk</a>, <a href=\"https://profiles.wordpress.org/simison/\">Mikael Korpela</a>, <a href=\"https://profiles.wordpress.org/mauteri/\">Mike Auteri</a>, <a href=\"https://profiles.wordpress.org/mikehansenme/\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mikeschinkel/\">Mike Schinkel [WPLib Box project lead]</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikejdent/\">mikejdent</a>, <a href=\"https://profiles.wordpress.org/msaari/\">Mikko Saari</a>, <a href=\"https://profiles.wordpress.org/iihglobal/\">Milan Patel</a>, <a href=\"https://profiles.wordpress.org/gdragon/\">Milan Petrovic</a>, <a href=\"https://profiles.wordpress.org/mimitips/\">mimi</a>, <a href=\"https://profiles.wordpress.org/mircoraffinetti/\">mircoraffinetti</a>, <a href=\"https://profiles.wordpress.org/mjnewman/\">mjnewman</a>, <a href=\"https://profiles.wordpress.org/mlbrgl/\">mlbrgl</a>, <a href=\"https://profiles.wordpress.org/batmoo/\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/morganestes/\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/man4toman/\">Morteza Geransayeh</a>, <a href=\"https://profiles.wordpress.org/mppfeiffer/\">mppfeiffer</a>, <a href=\"https://profiles.wordpress.org/mryoga/\">mryoga</a>, <a href=\"https://profiles.wordpress.org/musamamasood/\">Muhammad Usama Masood</a>, <a href=\"https://profiles.wordpress.org/mujuonly/\">mujuonly</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/assassinateur/\">Nadir Seghir</a>, <a href=\"https://profiles.wordpress.org/nagoke/\">nagoke</a>, <a href=\"https://profiles.wordpress.org/nfmohit/\">Nahid Ferdous Mohit</a>, <a href=\"https://profiles.wordpress.org/finchps/\">Nate Finch</a>, <a href=\"https://profiles.wordpress.org/mukto90/\">Nazmul Ahsan</a>, <a href=\"https://profiles.wordpress.org/nekomajin/\">nekomajin</a>, <a href=\"https://profiles.wordpress.org/nextscripts/\">NextScripts</a>, <a href=\"https://profiles.wordpress.org/nickdaugherty/\">Nick Daugherty</a>, <a href=\"https://profiles.wordpress.org/celloexpressions/\">Nick Halsey</a>, <a href=\"https://profiles.wordpress.org/nsundberg/\">Nicklas Sundberg</a>, <a href=\"https://profiles.wordpress.org/nickylimjj/\">Nicky Lim</a>, <a href=\"https://profiles.wordpress.org/vadimnicolai/\">nicolad</a>, <a href=\"https://profiles.wordpress.org/rahe/\">Nicolas Juen</a>, <a href=\"https://profiles.wordpress.org/nicole2292/\">nicole2292</a>, <a href=\"https://profiles.wordpress.org/nielslange/\">Niels Lange</a>, <a href=\"https://profiles.wordpress.org/nikhilgupte/\">nikhilgupte</a>, <a href=\"https://profiles.wordpress.org/nilamacharya/\">nilamacharya</a>, <a href=\"https://profiles.wordpress.org/noahtallen/\">noahtallen</a>, <a href=\"https://profiles.wordpress.org/noyle/\">noyle</a>, <a href=\"https://profiles.wordpress.org/nsubugak/\">nsubugak</a>, <a href=\"https://profiles.wordpress.org/oakesjosh/\">oakesjosh</a>, <a href=\"https://profiles.wordpress.org/oldenburg/\">oldenburg</a>, <a href=\"https://profiles.wordpress.org/alshakero/\">Omar Alshaker</a>, <a href=\"https://profiles.wordpress.org/ottok/\">Otto Kek&#228;l&#228;inen</a>, <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a>, <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a>, <a href=\"https://profiles.wordpress.org/iaaxpage/\">page-carbajal</a>, <a href=\"https://profiles.wordpress.org/pagewidth/\">pagewidth</a>, <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Paragon Initiative Enterprises</a>, <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/casiepa/\">Pascal Casier</a>, <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/rixeo/\">Paul Kevin</a>, <a href=\"https://profiles.wordpress.org/paulschreiber/\">Paul Schreiber</a>, <a href=\"https://profiles.wordpress.org/pcarvalho/\">pcarvalho</a>, <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendon&#231;a</a>, <a href=\"https://profiles.wordpress.org/perrywagle/\">perrywagle</a>, <a href=\"https://profiles.wordpress.org/westi/\">Peter Westwood</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/philipmjackson/\">Philip Jackson</a>, <a href=\"https://profiles.wordpress.org/pierlo/\">Pierre Gordon</a>, <a href=\"https://profiles.wordpress.org/pierrelannoy/\">Pierre Lannoy</a>, <a href=\"https://profiles.wordpress.org/pikamander2/\">pikamander2</a>, <a href=\"https://profiles.wordpress.org/prashantvatsh/\">Prashant Singh</a>, <a href=\"https://profiles.wordpress.org/pratik-jain/\">Pratik Jain</a>, <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/priyankabehera155/\">Priyanka Behera</a>, <a href=\"https://profiles.wordpress.org/r-a-y/\">r-a-y</a>, <a href=\"https://profiles.wordpress.org/raamdev/\">Raam Dev</a>, <a href=\"https://profiles.wordpress.org/bamadesigner/\">Rachel Cherry</a>, <a href=\"https://profiles.wordpress.org/larrach/\">Rachel Peter</a>, <a href=\"https://profiles.wordpress.org/ragnarokatz/\">ragnarokatz</a>, <a href=\"https://profiles.wordpress.org/ramiy/\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/raoulunger/\">raoulunger</a>, <a href=\"https://profiles.wordpress.org/razamalik/\">razamalik</a>, <a href=\"https://profiles.wordpress.org/remcotolsma/\">Remco Tolsma</a>, <a href=\"https://profiles.wordpress.org/rephotsirch/\">rephotsirch</a>, <a href=\"https://profiles.wordpress.org/rheinardkorf/\">rheinardkorf</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/quicoto/\">Ricard Torres</a>, <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, <a href=\"https://profiles.wordpress.org/rimadoshi/\">rimadoshi</a>, <a href=\"https://profiles.wordpress.org/rinkuyadav999/\">Rinku Y</a>, <a href=\"https://profiles.wordpress.org/rcutmore/\">Rob Cutmore</a>, <a href=\"https://profiles.wordpress.org/dhrrob/\">Rob Migchels</a>, <a href=\"https://profiles.wordpress.org/rob006/\">rob006</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/rconde/\">Roi Conde</a>, <a href=\"https://profiles.wordpress.org/murgroland/\">Roland Murg</a>, <a href=\"https://profiles.wordpress.org/costasovo/\">Rostislav Woln&#253;</a>, <a href=\"https://profiles.wordpress.org/roytanck/\">Roy Tanck</a>, <a href=\"https://profiles.wordpress.org/kingkool68/\">Russell Heimlich</a>, <a href=\"https://profiles.wordpress.org/rryyaanndd/\">Ryan</a>, <a href=\"https://profiles.wordpress.org/bookdude13/\">Ryan Fredlund</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/looswebstudio/\">Ryo</a>, <a href=\"https://profiles.wordpress.org/sebastienserre/\">S&#233;bastien SERRE</a>, <a href=\"https://profiles.wordpress.org/sorenbronsted/\">S&#248;ren Br&#248;nsted</a>, <a href=\"https://profiles.wordpress.org/sablednah/\">sablednah</a>, <a href=\"https://profiles.wordpress.org/viralsampat/\">Sampat Viral</a>, <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/samuelfernandez/\">SamuelFernandez</a>, <a href=\"https://profiles.wordpress.org/zanderz/\">Sander</a>, <a href=\"https://profiles.wordpress.org/santilinwp/\">santilinwp</a>, <a href=\"https://profiles.wordpress.org/sathyapulse/\">Sathiyamoorthy V</a>, <a href=\"https://profiles.wordpress.org/tivus/\">Schuhwerk</a>, <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/scruffian/\">scruffian</a>, <a href=\"https://profiles.wordpress.org/scvleon/\">scvleon</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula/\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sgr33n/\">Sergio de Falco</a>, <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">sergiomdgomes</a>, <a href=\"https://profiles.wordpress.org/sgastard/\">sgastard</a>, <a href=\"https://profiles.wordpress.org/sgoen/\">sgoen</a>, <a href=\"https://profiles.wordpress.org/shahariaazam/\">Shaharia Azam</a>, <a href=\"https://profiles.wordpress.org/cafenoirdesign/\">Shannon Smith</a>, <a href=\"https://profiles.wordpress.org/shariqkhan2012/\">shariqkhan2012</a>, <a href=\"https://profiles.wordpress.org/sncoker/\">Shawntelle Coker</a>, <a href=\"https://profiles.wordpress.org/sheparddw/\">sheparddw</a>, <a href=\"https://profiles.wordpress.org/shital-patel/\">Shital Marakana</a>, <a href=\"https://profiles.wordpress.org/shizumi/\">Shizumi Yoshiaki</a>, <a href=\"https://profiles.wordpress.org/simonjanin/\">simonjanin</a>, <a href=\"https://profiles.wordpress.org/sinatrateam/\">sinatrateam</a>, <a href=\"https://profiles.wordpress.org/sirreal/\">sirreal</a>, <a href=\"https://profiles.wordpress.org/skorasaurus/\">skorasaurus</a>, <a href=\"https://profiles.wordpress.org/smerriman/\">smerriman</a>, <a href=\"https://profiles.wordpress.org/socalchristina/\">socalchristina</a>, <a href=\"https://profiles.wordpress.org/soean/\">Soren Wrede</a>, <a href=\"https://profiles.wordpress.org/spenserhale/\">spenserhale</a>, <a href=\"https://profiles.wordpress.org/sproutchris/\">sproutchris</a>, <a href=\"https://profiles.wordpress.org/squarecandy/\">squarecandy</a>, <a href=\"https://profiles.wordpress.org/sstoqnov/\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/starvoters1/\">starvoters1</a>, <a href=\"https://profiles.wordpress.org/steelwagstaff/\">SteelWagstaff</a>, <a href=\"https://profiles.wordpress.org/steevithak/\">steevithak</a>, <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a>, <a href=\"https://profiles.wordpress.org/hypest/\">Stefanos Togoulidis</a>, <a href=\"https://profiles.wordpress.org/steffanhalv/\">steffanhalv</a>, <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/dufresnesteven/\">Steve Dufresne</a>, <a href=\"https://profiles.wordpress.org/stevegrunwell/\">Steve Grunwell</a>, <a href=\"https://profiles.wordpress.org/stevenlinx/\">stevenlinx</a>, <a href=\"https://profiles.wordpress.org/stiofansisland/\">Stiofan</a>, <a href=\"https://profiles.wordpress.org/matthias-reuter/\">straightvisions GmbH</a>, <a href=\"https://profiles.wordpress.org/stroona/\">stroona.com</a>, <a href=\"https://profiles.wordpress.org/subratamal/\">Subrata Mal</a>, <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a>, <a href=\"https://profiles.wordpress.org/manikmist09/\">Sultan Nasir Uddin</a>, <a href=\"https://profiles.wordpress.org/swapnild/\">swapnild</a>, <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a>, <a href=\"https://profiles.wordpress.org/sergioestevao/\">Sérgio Estêvão</a>, <a href=\"https://profiles.wordpress.org/miyauchi/\">Takayuki Miyauchi</a>, <a href=\"https://profiles.wordpress.org/takeshifurusato/\">Takeshi Furusato</a>, <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tanvirul/\">Tanvirul Haque</a>, <a href=\"https://profiles.wordpress.org/tbschen/\">TBschen</a>, <a href=\"https://profiles.wordpress.org/tdlewis77/\">tdlewis77</a>, <a href=\"https://profiles.wordpress.org/tellyworth/\">Tellyworth</a>, <a href=\"https://profiles.wordpress.org/thamaraiselvam/\">Thamaraiselvam</a>, <a href=\"https://profiles.wordpress.org/thefarlilacfield/\">thefarlilacfield</a>, <a href=\"https://profiles.wordpress.org/themezee/\">ThemeZee</a>, <a href=\"https://profiles.wordpress.org/timhavinga/\">Tim Havinga</a>, <a href=\"https://profiles.wordpress.org/hedgefield/\">Tim Hengeveld</a>, <a href=\"https://profiles.wordpress.org/timon33/\">timon33</a>, <a href=\"https://profiles.wordpress.org/spaceshipone/\">Timoth&#233;e Brosille</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/tkama/\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tmanoilov/\">tmanoilov</a>, <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a>, <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a>, <a href=\"https://profiles.wordpress.org/tomgreer/\">Tom Greer</a>, <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a>, <a href=\"https://profiles.wordpress.org/tommix/\">tommix</a>, <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemer&#246;</a>, <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/torres126/\">torres126</a>, <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul Islam</a>, <a href=\"https://profiles.wordpress.org/treecutter/\">treecutter</a>, <a href=\"https://profiles.wordpress.org/tristangemus/\">tristangemus</a>, <a href=\"https://profiles.wordpress.org/tristanleboss/\">tristanleboss</a>, <a href=\"https://profiles.wordpress.org/tsuyoring/\">tsuyoring</a>, <a href=\"https://profiles.wordpress.org/dinhtungdu/\">Tung Du</a>, <a href=\"https://profiles.wordpress.org/desaiuditd/\">Udit Desai</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich/\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/upadalavipul/\">upadalavipul</a>, <a href=\"https://profiles.wordpress.org/utsav72640/\">Utsav tilava</a>, <a href=\"https://profiles.wordpress.org/vaishalipanchal/\">Vaishali Panchal</a>, <a href=\"https://profiles.wordpress.org/valentinbora/\">Valentin Bora</a>, <a href=\"https://profiles.wordpress.org/varunshanbhag/\">Varun Shanbhag</a>, <a href=\"https://profiles.wordpress.org/veminom/\">Veminom</a>, <a href=\"https://profiles.wordpress.org/vinita29/\">Vinita Tandulkar</a>, <a href=\"https://profiles.wordpress.org/virgodesign/\">virgodesign</a>, <a href=\"https://profiles.wordpress.org/vsamoletov/\">Vlad. S.</a>, <a href=\"https://profiles.wordpress.org/vortfu/\">vortfu</a>, <a href=\"https://profiles.wordpress.org/waleedt93/\">waleedt93</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/\">William Patton</a>, <a href=\"https://profiles.wordpress.org/wpgurudev/\">wpgurudev</a>, <a href=\"https://profiles.wordpress.org/alexandreb3/\">WPMarmite</a>, <a href=\"https://profiles.wordpress.org/wptoolsdev/\">wptoolsdev</a>, <a href=\"https://profiles.wordpress.org/xedinunknown-1/\">xedinunknown-1</a>, <a href=\"https://profiles.wordpress.org/yale01/\">yale01</a>, <a href=\"https://profiles.wordpress.org/collet/\">Yannicki</a>, <a href=\"https://profiles.wordpress.org/yohannp/\">yohannp</a>, <a href=\"https://profiles.wordpress.org/yordansoares/\">Yordan Soares</a>, <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a>, <a href=\"https://profiles.wordpress.org/zachflauaus/\">zachflauaus</a>, <a href=\"https://profiles.wordpress.org/tollmanz/\">Zack Tollman</a>, <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a>, <a href=\"https://profiles.wordpress.org/zaffarn/\">Zee</a>, and <a href=\"https://profiles.wordpress.org/zsusag/\">zsusag</a>.\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<p>Many thanks to all of the community volunteers who contribute in the&nbsp;<a href=\"https://wordpress.org/support/\">support forums</a>. They answer questions from people across the world, whether they are using WordPress for the first time or since the first release. These releases are more successful for their efforts!</p>\n\n\n\n<p>Finally, thanks to all the community translators who worked on WordPress 5.4. Their efforts bring WordPress fully translated to&nbsp;46 languages at release time, with more on the way.</p>\n\n\n\n<p>If you want to learn more about volunteering with WordPress, check out&nbsp;<a href=\"https://make.wordpress.org/\">Make WordPress</a>&nbsp;or the&nbsp;<a href=\"https://make.wordpress.org/core/\">core development 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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"8455\";s: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:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress 5.4 RC5\";s:7:\"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/2020/03/wordpress-5-4-rc5/\";s: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, 28 Mar 2020 00:47: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=8451\";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:379:\"The fifth release candidate for WordPress 5.4 is live! WordPress 5.4 is currently scheduled to land on&#160;March 31 2020, and we need&#160;your&#160;help to get there—if you haven’t tried 5.4 yet, now is the time! You can test the WordPress 5.4 release candidate in two ways: Try the WordPress Beta Tester plugin (choose the “bleeding edge nightlies” option) [&#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:\"David Baumwald\";s: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:2181:\"\n<p><br>The fifth release candidate for WordPress 5.4 is live!</p>\n\n\n\n<p>WordPress 5.4 is currently scheduled to land on&nbsp;<strong><a href=\"https://make.wordpress.org/core/5-4/\">March 31 2020</a></strong>, and we need&nbsp;<em>your</em>&nbsp;help to get there—if you haven’t tried 5.4 yet, now is the time!</p>\n\n\n\n<p>You can test the WordPress 5.4 release candidate in two ways:</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (choose the “bleeding edge nightlies” option)</li><li>Or <a href=\"https://wordpress.org/wordpress-5.4-RC5.zip\">download the release candidate here</a> (zip).</li></ul>\n\n\n\n<p>For details about what to expect in WordPress 5.4, please see the&nbsp;<a href=\"https://wordpress.org/news/2020/03/wordpress-5-4-release-candidate/\">first release candidate post</a>.</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.4 and update the&nbsp;<em>Tested up to</em>&nbsp;version in the readme to 5.4. The priority in testing is compatibility. If you find issues, please be sure to post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>&nbsp;so we can figure them out before the final release.</p>\n\n\n\n<p>The&nbsp;<a href=\"https://make.wordpress.org/core/2020/03/03/wordpress-5-4-field-guide/\">WordPress 5.4 Field Guide</a>&nbsp;is also out! It’s your source for details on all the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language besides English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, 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>.</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:\"8451\";s: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:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress 5.4 RC4\";s:7:\"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/2020/03/wordpress-5-4-rc4/\";s: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, 24 Mar 2020 22:00:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=8444\";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 fourth release candidate for WordPress 5.4 is live! WordPress 5.4 is currently scheduled to land on&#160;March 31 2020, and we need&#160;your&#160;help to get there—if you haven’t tried 5.4 yet, now is the time! You can test the WordPress 5.4 release candidate in two ways: Try the&#160;WordPress Beta Tester&#160;plugin (choose the “bleeding edge nightlies” option) [&#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:\"Francesca Marano\";s: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:2395:\"\n<p>The fourth release candidate for WordPress 5.4 is live!</p>\n\n\n\n<p>WordPress 5.4 is currently scheduled to land on&nbsp;<strong><a href=\"https://make.wordpress.org/core/5-4/\">March 31 2020</a></strong>, and we need&nbsp;<em>your</em>&nbsp;help to get there—if you haven’t tried 5.4 yet, now is the time!</p>\n\n\n\n<p>You can test the WordPress 5.4 release candidate in two ways:</p>\n\n\n\n<ul><li>Try the&nbsp;<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin (choose the “bleeding edge nightlies” option)</li><li>Or&nbsp;<a href=\"https://wordpress.org/wordpress-5.4-RC4.zip\">download the release candidate here</a>&nbsp;(zip).</li></ul>\n\n\n\n<p>For details about what to expect in WordPress 5.4, please see the&nbsp;<a href=\"https://wordpress.org/news/2020/03/wordpress-5-4-release-candidate/\">first release candidate post</a>.</p>\n\n\n\n<p>RC4 commits the new <a href=\"https://core.trac.wordpress.org/ticket/49295\">About page</a> and&nbsp;<a href=\"https://core.trac.wordpress.org/ticket/49688\">updates the editor packages</a>.</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.4 and update the&nbsp;<em>Tested up to</em>&nbsp;version in the readme to 5.4. The priority in testing is compatibility. If you find issues, please be sure to post to the&nbsp;<a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>&nbsp;so we can figure them out before the final release.</p>\n\n\n\n<p>The&nbsp;<a href=\"https://make.wordpress.org/core/2020/03/03/wordpress-5-4-field-guide/\">WordPress 5.4 Field Guide</a>&nbsp;is also out! It&#8217;s your source for details on all the major changes.</p>\n\n\n\n<h2>How to Help</h2>\n\n\n\n<p>Do you speak a language besides English?&nbsp;<a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, 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>.</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:\"8444\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress 5.4 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/2020/03/wordpress-5-4-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, 17 Mar 2020 21:24:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=8432\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:384:\"The third release candidate for WordPress 5.4 is now available! WordPress 5.4 is currently scheduled to be released on&#160;March 31 2020, and we need&#160;your&#160;help to get there—if you haven’t tried 5.4 yet, now is the time! There are two ways to test the WordPress 5.4 release candidate: Try the&#160;WordPress Beta Tester&#160;plugin (choose the “bleeding edge [&#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:\"David Baumwald\";s: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:4104:\"\n<p>The third release candidate for WordPress 5.4 is now available!</p>\n\n\n\n<p>WordPress 5.4 is currently scheduled to be released on&nbsp;<strong><a href=\"https://make.wordpress.org/core/5-4/\">March 31 2020</a></strong>, and we need&nbsp;<em>your</em>&nbsp;help to get there—if you haven’t tried 5.4 yet, now is the time!</p>\n\n\n\n<p>There are two ways to test the WordPress 5.4 release candidate:</p>\n\n\n\n<ul><li>Try the&nbsp;<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin (choose the “bleeding edge nightlies” option)</li><li>Or&nbsp;<a href=\"https://wordpress.org/wordpress-5.4-RC3.zip\">download the release candidate here</a>&nbsp;(zip).</li></ul>\n\n\n\n<p>For details about what to expect in WordPress 5.4, please see the&nbsp;<a href=\"https://wordpress.org/news/2020/03/wordpress-5-4-release-candidate/\">first release candidate post</a>.</p>\n\n\n\n<p>RC3 addresses improvements to the new About page and&nbsp;<a href=\"https://core.trac.wordpress.org/query?id=49657%2C49621%2C48164%2C49577%2C47053%2C48303%2C49374%2C49619&amp;milestone=5.4&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;order=priority\">8 fixes</a>&nbsp;for the following bugs and regressions:</p>\n\n\n\n<ul><li><a href=\"https://core.trac.wordpress.org/ticket/49657\"></a><a href=\"https://core.trac.wordpress.org/ticket/49657\">49657</a> &#8211; <a href=\"https://core.trac.wordpress.org/ticket/49657\">Block Editor: Update WordPress Packages WordPress 5.4 RC 3</a></li><li><a href=\"https://core.trac.wordpress.org/ticket/49621\"></a><a href=\"https://core.trac.wordpress.org/ticket/49621\">49621</a> &#8211; <a href=\"https://core.trac.wordpress.org/ticket/49621\">Travis: Download Chromium for E2E Tests Only</a></li><li><a href=\"https://core.trac.wordpress.org/ticket/49164\"></a><a href=\"https://core.trac.wordpress.org/ticket/48164\">48164</a> &#8211; <a href=\"https://core.trac.wordpress.org/ticket/48164\">media_sideload_image Should Store Original URL and Optionally Check for Dupes</a></li><li><a href=\"https://core.trac.wordpress.org/ticket/49577\">49577 &#8211; Site Health Status Dashboard Provides Incorrect Items Count on Initial Load</a></li><li><a href=\"https://core.trac.wordpress.org/ticket/47053\">47053 &#8211; Accessibility: Need to set proper &#8216;tabindex&#8217; in &#8216;Skip To Toolbar&#8217; HTML</a></li><li><a href=\"https://core.trac.wordpress.org/ticket/48303\">48303 &#8211; Docblock Improvements for 5.4</a></li><li><a href=\"https://core.trac.wordpress.org/ticket/49374\">49374 &#8211; Use get_post_states to Denote Special Pages on the Added Menu Item Accordions</a></li><li><a href=\"https://core.trac.wordpress.org/ticket/49619\">49619 &#8211; Use &lt;hr /&gt; Instead of Margin on Freedoms Page</a></li></ul>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.4 and update the&nbsp;<em>Tested up to</em>&nbsp;version in the readme to 5.4. 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.</p>\n\n\n\n<p>The&nbsp;<a href=\"https://make.wordpress.org/core/2020/03/03/wordpress-5-4-field-guide/\">WordPress 5.4 Field Guide</a>&nbsp;has also been published, which details the major changes.</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></p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, 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>.</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:\"8432\";s: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:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress 5.4 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/2020/03/wordpress-5-4-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:\"Tue, 10 Mar 2020 21:40:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=8422\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:385:\"The second release candidate for WordPress 5.4 is now available! WordPress 5.4 is currently scheduled to be released on&#160;March 31 2020, and we need&#160;your&#160;help to get there—if you haven’t tried 5.4 yet, now is the time! There are two ways to test the WordPress 5.4 release candidate: Try the&#160;WordPress Beta Tester&#160;plugin (choose the “bleeding edge [&#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:\"Francesca Marano\";s: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:3311:\"\n<p>The second release candidate for WordPress 5.4 is now available!</p>\n\n\n\n<p>WordPress 5.4 is currently scheduled to be released on&nbsp;<strong><a href=\"https://make.wordpress.org/core/5-4/\">March 31 2020</a></strong>, and we need&nbsp;<em>your</em>&nbsp;help to get there—if you haven’t tried 5.4 yet, now is the time!</p>\n\n\n\n<p>There are two ways to test the WordPress 5.4 release candidate:</p>\n\n\n\n<ul><li>Try the&nbsp;<a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a>&nbsp;plugin (choose the “bleeding edge nightlies” option)</li><li>Or&nbsp;<a href=\"https://wordpress.org/wordpress-5.4-RC2.zip\">download the release candidate here</a>&nbsp;(zip).</li></ul>\n\n\n\n<p>For details about what to expect in WordPress 5.4, please see the&nbsp;<a href=\"https://wordpress.org/news/2020/03/wordpress-5-4-release-candidate/\">first release candidate post</a>.</p>\n\n\n\n<p>RC2 addresses improvements to the new About page and <a href=\"https://core.trac.wordpress.org/query?id=49611%2C49318%2C49295%2C49585%2C49568%2C49549&amp;milestone=5.4&amp;group=component&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=status&amp;col=priority&amp;order=priority\">5 fixes</a> for the following bugs and regressions:</p>\n\n\n\n<ul><li><a href=\"https://core.trac.wordpress.org/ticket/49611\">49611</a> &#8211; Block Editor: Update WordPress Packages WordPress 5.4 RC 2</li><li><a href=\"https://core.trac.wordpress.org/ticket/49318\">49318</a> &#8211; Bundled Themes: Twenty Twenty content font CSS selector is too important</li><li><a href=\"https://core.trac.wordpress.org/ticket/49585\">49585</a> &#8211; REST API: Fix typo in disable-custom-gradients theme feature description</li><li><a href=\"https://core.trac.wordpress.org/ticket/49568\">49568</a> &#8211; Block Editor: Fix visual regression in editor&#8217;s color picker</li><li><a href=\"https://core.trac.wordpress.org/ticket/49549\">49549</a> &#8211; Bundled Themes: Calendar widget CSS fixes on various Bundled themes</li></ul>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against WordPress 5.4 and update the&nbsp;<em>Tested up to</em>&nbsp;version in the readme to 5.4. 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.</p>\n\n\n\n<p>The&nbsp;<a href=\"https://make.wordpress.org/core/2020/03/03/wordpress-5-4-field-guide/\">WordPress 5.4 Field Guide</a>&nbsp;has also been published, which details the major changes.</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></p>\n\n\n\n<p><em><strong>If you think you’ve found a bug</strong>, 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>.</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:\"8422\";s: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:79:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"People of WordPress: Mary Job\";s:7:\"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://wordpress.org/news/2020/03/people-of-wordpress-mary-job/\";s: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://wordpress.org/news/2020/03/people-of-wordpress-mary-job/#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:\"Fri, 06 Mar 2020 16:30: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:3:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"heropress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=8406\";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:189:\"In the March edition of our \"People of WordPress\" series, you\'ll find out how Mary Job grew from a timid, curious cat into a public speaker and organizer of WordPress Meetups and WordCamps.\";s: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:\"Yvette Sonneveld\";s: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:9720:\"\n<p><em>You’ve probably heard that WordPress is open-source software, and may know that it’s created and run by volunteers. WordPress enthusiasts share many examples of how WordPress changed people’s lives for the better. This monthly series shares some of those lesser-known, amazing stories.&nbsp;</em></p>\n\n\n\n<h2>How it all began</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" src=\"https://i1.wp.com/wordpress.org/news/files/2020/02/At-WordCamp-Kampala-2020.jpeg?resize=632%2C844&#038;ssl=1\" alt=\"Mary Job at WordCamp Kampala 2020\" class=\"wp-image-8410\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2020/02/At-WordCamp-Kampala-2020.jpeg?resize=767%2C1024&amp;ssl=1 767w, https://i1.wp.com/wordpress.org/news/files/2020/02/At-WordCamp-Kampala-2020.jpeg?resize=225%2C300&amp;ssl=1 225w, https://i1.wp.com/wordpress.org/news/files/2020/02/At-WordCamp-Kampala-2020.jpeg?resize=768%2C1025&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2020/02/At-WordCamp-Kampala-2020.jpeg?w=809&amp;ssl=1 809w\" sizes=\"(max-width: 632px) 100vw, 632px\" data-recalc-dims=\"1\" /><figcaption>Mary Job at WordCamp Kampala 2020</figcaption></figure>\n\n\n\n<p>Mary remembers when cybercafés started trending in Nigeria. She had just finished high school and was awaiting her results for admission to university. She spent all of her time (10 hours a day) and all of her pocket money buying bulk time online at cafes. All the way through university that was true, until in 2008 she graduated with a degree in philosophy and bought her own computer and modem.</p>\n\n\n\n<p>She started blogging in 2009. Initially, she tried out Blogger, Hubpages, and WordPress—but found WordPress too complicated.&nbsp;</p>\n\n\n\n<h2>Growing up as a timid but curious cat</h2>\n\n\n\n<p>Mary is one of four kids, and the only girl among her siblings. Throughout her childhood she felt shy, even though others didn’t always see her that way. </p>\n\n\n\n<p>When she first started her personal blog, it was mostly an opportunity for her to speak her mind where she was comfortable. Blogging gave her a medium to express her thoughts and with every new post she became a better writer.</p>\n\n\n\n<h2>Rediscovering WordPress</h2>\n\n\n\n<p>After completing a postgraduate diploma in mass communication, Mary started a Masters degree in Information Management. This required a three month internship. She decided to volunteer in Ghana in 2015 at the headquarters of the Salesians of Don Bosco in West Africa (SDBAFW<strong>)</strong> where her uncle was based.</p>\n\n\n\n<p>While she was there, her uncle asked Mary why she was not blogging on WordPress, which also happened to be the software the organisation used. She explained how difficult and complicated it was so he shared a group of beginner-level tutorial videos with her.</p>\n\n\n\n<p>After two weeks of watching those videos, she started to realize she could have a full-time career doing this. So she immediately joined a number of online training groups so she could learn everything.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>I saw a lot of people earning an income from things I knew and did for the fun of it. I found myself asking why I had not turned my passion into a business.</em></p><cite>Mary Job</cite></blockquote>\n\n\n\n<p>Not long after that, she was contacted by a website editor who was impressed by her blog. With the information available online for WordPress, she was able to learn everything she needed to improve and redesign a site for what turned into her first client.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" src=\"https://i1.wp.com/wordpress.org/news/files/2020/03/my-home-office-in-2016.jpeg?w=632&#038;ssl=1\" alt=\"\" class=\"wp-image-8412\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2020/03/my-home-office-in-2016.jpeg?w=512&amp;ssl=1 512w, https://i1.wp.com/wordpress.org/news/files/2020/03/my-home-office-in-2016.jpeg?resize=300%2C169&amp;ssl=1 300w\" sizes=\"(max-width: 512px) 100vw, 512px\" data-recalc-dims=\"1\" /><figcaption>Mary&#8217;s home office in 2016</figcaption></figure>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>I visited the <a href=\"https://wordpress.org/showcase/\">WordPress.org showcase</a> and was wowed with all the good things I could do with WordPress.</em></p><cite>Mary Job</cite></blockquote>\n\n\n\n<p>In 2016 after a year of deep WordPress learning, she had fallen in love with the CMS and wanted to give back to the <a href=\"https://make.wordpress.org/\">WordPress open source project</a>.&nbsp;</p>\n\n\n\n<p>She volunteered to help the Community team. And when she moved to Lagos later that year, she discovered there was an active WordPress Meetup community. This started her journey toward becoming a WordPress Meetup Co-organizer and a Global Community Team Deputy.</p>\n\n\n\n<p>Today the Nigerian WordPress community continues to grow, as has the <a href=\"https://www.meetup.com/Lagos-WordPress-Meetup-Group\">Lagos WordPress Meetup</a> group. The first Nigerian WordCamp took place in Lagos in 2018 and a <a href=\"https://2020.lagos.wordcamp.org/\">2020 event is being planned</a>. A local WordPress community also developed in Mary’s hometown in Ijebu.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>I have made great friends and met co-organizers in the community who are dedicated to building and sharing their WordPress knowledge with the community like I am.</em></p><cite>Mary Job</cite></blockquote>\n\n\n\n<h2>What did Mary gain from using and contributing to WordPress?</h2>\n\n\n\n<ul><li>She <strong>overcame her stage fright</strong> by getting up in front of an audience at her local Meetup to introduce speakers and to talk about the WordPress community.&nbsp;</li><li>She <strong>attended her first of many African WordCamps </strong>in Cape Town, South Africa. Coincidentally this was also her first time outside West Africa. Before that, she had not been in an aircraft for more than one hour.</li><li>She <strong>earned money</strong> from WordPress web design projects to sustain her during her learning period. Mary continues to use WordPress in her work and says she is still learning every day!</li><li>She got to <strong>jump off</strong> Signal Hill in Cape Town when visiting a WordCamp!&nbsp;</li></ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" src=\"https://i1.wp.com/wordpress.org/news/files/2020/03/Moderating-a-Panel-at-WCLOS2019.jpg?fit=632%2C422&amp;ssl=1\" alt=\"\" class=\"wp-image-8413\" srcset=\"https://i1.wp.com/wordpress.org/news/files/2020/03/Moderating-a-Panel-at-WCLOS2019.jpg?w=1683&amp;ssl=1 1683w, https://i1.wp.com/wordpress.org/news/files/2020/03/Moderating-a-Panel-at-WCLOS2019.jpg?resize=300%2C200&amp;ssl=1 300w, https://i1.wp.com/wordpress.org/news/files/2020/03/Moderating-a-Panel-at-WCLOS2019.jpg?resize=1024%2C683&amp;ssl=1 1024w, https://i1.wp.com/wordpress.org/news/files/2020/03/Moderating-a-Panel-at-WCLOS2019.jpg?resize=768%2C512&amp;ssl=1 768w, https://i1.wp.com/wordpress.org/news/files/2020/03/Moderating-a-Panel-at-WCLOS2019.jpg?resize=1536%2C1024&amp;ssl=1 1536w, https://i1.wp.com/wordpress.org/news/files/2020/03/Moderating-a-Panel-at-WCLOS2019.jpg?w=1264&amp;ssl=1 1264w\" sizes=\"(max-width: 632px) 100vw, 632px\" /><figcaption>Mary moderating a panel at WordCamp Lagos in 2019</figcaption></figure>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>Essentially, the community has taught me to be a better communicator, and a better person. I’ve made friends across the world that have become like a family to me.</em></p><cite>Mary Job</cite></blockquote>\n\n\n\n<p>She now runs a village hub in Ijebu,&nbsp; where she teaches girls digital skills and WordPress as a way of giving back to her town.</p>\n\n\n\n<p>Since she started on this journey, Mary has gotten a fulltime job supporting a WordPress plugin. She’s also become a Community Team Rep and continues to build and foster communities.</p>\n\n\n\n<h2>Mary’s advice to others</h2>\n\n\n\n<blockquote class=\"wp-block-quote\"><p><em>Always seek to understand the basics of whatever knowledge you seek. Never jump in too fast, wanting to spiral to the top while ignoring the learning curve. You will likely crash down effortlessly if you do so, and would have learned nothing.</em></p><cite>Mary Job</cite></blockquote>\n\n\n\n<h2>Contributors</h2>\n\n\n\n<p>Thanks to Alison Rothwell (<a href=\"https://profiles.wordpress.org/wpfiddlybits/\">@wpfiddlybits</a>), Yvette Sonneveld (<a href=\"https://profiles.wordpress.org/yvettesonneveld/\">@yvettesonneveld</a>), Abha Thakor (<a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a>), Josepha Haden (<a href=\"https://profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>), Topher DeRosia (<a href=\"https://profiles.wordpress.org/topher1kenobe/\">@topher1kenobe</a>). Thank you to Mary Job (<a href=\"https://profiles.wordpress.org/mariaojob/\">@maryojob</a>) for sharing her #ContributorStory.</p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"alignleft size-large\"><img loading=\"lazy\" src=\"https://i1.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?w=632&#038;ssl=1\" alt=\"\" class=\"wp-image-8409\" data-recalc-dims=\"1\" /></figure></div>\n\n\n\n<p><em>This post is based on </em><a href=\"https://heropress.com/essays/wordpress-gave-perfect-identity/\"><em>an article originally published on HeroPress.com</em></a><em>, a community initiative created by </em><a href=\"https://profiles.wordpress.org/topher1kenobe/\"><em>Topher DeRosia</em></a><em>. HeroPress highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.</em></p>\n\n\n\n<p><em>Meet more WordPress community members over at </em><a href=\"https://heropress.com/\"><em>HeroPress.com</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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2020/03/people-of-wordpress-mary-job/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:\"18\";s: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:\"8406\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 26 May 2020 09:33:54 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, 13 May 2020 11:05:48 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 1\";}}s:5:\"build\";s:14:\"20200520081220\";}", "no");
INSERT INTO `lt_options` VALUES("3003", "_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3", "1590528835", "no");
INSERT INTO `lt_options` VALUES("3004", "_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3", "1590485635", "no");
INSERT INTO `lt_options` VALUES("3005", "_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9", "1590528840", "no");
INSERT INTO `lt_options` VALUES("3006", "_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:68:\"WPTavern: Shinobi Blocks WordPress Plugin Adds How-To and FAQ Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=100011\";s:7:\"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:181:\"https://wptavern.com/shinobi-blocks-wordpress-plugin-adds-how-to-and-faq-blocks?utm_source=rss&utm_medium=rss&utm_campaign=shinobi-blocks-wordpress-plugin-adds-how-to-and-faq-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4929:\"<p class=\"has-drop-cap\">Shinobi Works, a web development and illustration company based in Japan, released <a href=\"https://wordpress.org/plugins/shinobi-blocks\">Shinobi Blocks</a> last week. It is the second plugin the team has added to the WordPress plugin directory. The plugin is a block collection that currently has two blocks for creating how-to and FAQ sections on a site.</p>\n\n\n\n<p>Overall, the blocks work well. The developers also make sure to only load any scripts or styles on the front end when the blocks are in use, so it should not add any weight to page speed across the site.</p>\n\n\n\n<p>The largest downside of the plugin is that neither of its blocks has wide or full alignment options. This is one feature that I am hoping more block developers begin to add support for. It takes <a href=\"https://developer.wordpress.org/block-editor/developers/block-api/block-registration/#supports-optional\">minimal code</a> and would make blocks more flexible for end-users. The workaround is to wrap the blocks in a core Group block and add alignment to it.</p>\n\n\n\n<p>As a user, I would like to see the How-To block split into its own, single-purpose block. It would be a nice addition to the official WordPress <a href=\"https://wordpress.org/plugins/browse/block\">block directory</a> as a standalone solution for users.</p>\n\n\n\n<p>Right now, there seems to be a bit of a mad race toward who can build the biggest block collection plugins. It is unclear what the future of Shinobi Blocks holds. Given that it is early in its life as a plugin, I would urge the plugin authors to consider building single-use blocks. This way, users can install only the blocks they need on their sites.</p>\n\n\n\n<p>In this particular case, the How-To block would make a good option as a single block plugin. As for the FAQ block, users can find such blocks in several other plugins with more options.</p>\n\n\n\n<h2>How-To Block</h2>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><img />Adding a how-to item.</li><li class=\"blocks-gallery-item\"><img />How-to second step.</li></ul>Adding step-by-step instructions via the How-To block.\n\n\n\n<p class=\"has-drop-cap\">The plugin&rsquo;s How-To block is what drew me in. Its purpose is to allow end-users to provide step-by-step instructions with both a text block and an image for each step. It is a pattern that is common on sites such as wikiHow and other tutorial websites.</p>\n\n\n\n<p>The design of the block is well thought out and easy to use. For more complex tutorials, users can split their how-to into multiple sections, each with their own steps. In tests against several themes, I ran into no issues inputting custom content in the editor and it appearing correctly on the front end.</p>\n\n\n\n<p>The plugin provides an option to change the <em>dot type</em>, which is the number for each step. Users can choose between displaying numbers or using an icon for individual steps. The available icons are from the core WordPress Dashicons set. The color of the dot type can also be customized. By default, it displays a gradient, but the user can select a solid color if preferred.</p>\n\n\n\n<p>The downside of the available color options is the block does not make use of the active theme&rsquo;s color palette if registered. Using this would help the block better blend into the user&rsquo;s current site design.</p>\n\n\n\n<p>One option that I would add is to allow the user to input optional, additional text below the image while using the main text as a sort of headline. This would provide more flexibility for how-to instructions that need more information. However, it would also add an extra layer of complexity that may not be desired.</p>\n\n\n\n<h2>FAQ Block</h2>\n\n\n\n<img />FAQ block accordion on the front end.\n\n\n\n<p class=\"has-drop-cap\">The FAQ block almost feels like an afterthought. It does not have the level of detail that was put into the How-To block. There are no color or other options for changing the design. It is basically a bare-bones tabbed accordion. The block works well enough for what it needs to do. Nevertheless, it still feels like a letdown after tinkering with the plugin&rsquo;s first block.</p>\n\n\n\n<p>Inputting content on the admin side is simple. Both the question and answer inputs are rich text fields, which allow the same formatting as a standard Paragraph block.</p>\n\n\n\n<p>Each inner block for the FAQ block offers a single option that allows users to choose whether to display the tab in an open state. One issue I ran into with disabling this option is that it closes the tab in the editor, which essentially disabled editing the answer&rsquo;s content for the item, at least until I re-ticked the checkbox.</p>\n\n\n\n<p>It is not a poorly-designed block. For the most part, I would rather see the How-To and FAQ blocks split into separate, standalone block plugins. They serve two different purposes and would allow users to install just the pieces that they need.</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, 25 May 2020 20:34: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:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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: Local Brings Back Support for Apache and Site Cloning\";s:7:\"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=99924\";s:7:\"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:171:\"https://wptavern.com/local-brings-back-support-for-apache-and-site-cloning?utm_source=rss&utm_medium=rss&utm_campaign=local-brings-back-support-for-apache-and-site-cloning\";s: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:2899:\"<p>Flywheel&rsquo;s <a href=\"https://localwp.com/\">Local development app</a> has received several major updates during the past month. The most recent release brings back support for Apache as a web server choice (version 5.5.1), in response to user feedback. This was the <a href=\"https://feedback.localwp.com/feature-requests/p/apache-web-server-option\">most highly requested feature</a> on the app&rsquo;s community voting board. </p>\n\n\n\n<p>Although nginx is the leader in <a href=\"https://www.similartech.com/compare/apache-vs-nginx\">web server market share</a> for the top 10k, top 100k, and top 1M sites, Apache is still used by more of the web. Lack of support for Apache was a deal breaker for many Local users who support clients on shared hosting, which often runs Apache and MySQL. It was also a blocker for potential new users switching from MAMP. Having the option to choose the web server on a per-site basis makes Local much more flexible.</p>\n\n\n\n<img />\n\n\n\n<p>Site cloning is another highly requested feature that was brought back in <a href=\"https://localwp.com/community/t/local-5-3-3/19132\">version 5.3.3</a> at the end of April. Users can now right-click on a site in Local&rsquo;s sites sidebar and click on &ldquo;Clone Site.&rdquo; This feature is useful for using one site as a jumping off point or even for setting up a &ldquo;blueprint&rdquo; for future sites to use. </p>\n\n\n\n<p>Flywheel is gradually adding back a list of features after rebuilding Local&rsquo;s core architecture in 2019. The <a href=\"https://wptavern.com/local-lightning-now-in-public-beta-with-major-performance-improvements\">&ldquo;Local Lightning&rdquo; update</a> moved the app away from virtualization in favor of native, system-level software for running WordPress locally.</p>\n\n\n\n<p>&ldquo;Feature parity with Local Classic is the top item for us in our Q2 roadmap,&rdquo; Local creator Clay Griffiths said. So far his team has already brought back 64-bit PHP binaries for Windows, site cloning, and Apache support as part of this process.</p>\n\n\n\n<p>The app has become an indispensable development tool for many WordPress developers. In February, WP Engine <a href=\"https://wptavern.com/after-the-acquisition-flywheel-in-the-new-year\">reported</a> that Local is used by more than 50,000 developers. The company has a long-term roadmap that aims to make it easier for users to customize their development environments. </p>\n\n\n\n<p>Local has a fairly transparent development process with community feature requests highly prioritized. The app&rsquo;s <a href=\"https://feedback.localwp.com/\">community feedback site</a> gives users an overview of all the features that are currently planned, in progress, and complete. Updates currently in progress include a setting for a default browser and improvements to the Live Link feature. The team is also exploring a Local CLI as part of the Q2 roadmap.</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, 22 May 2020 22:21: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: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:66:\"WPTavern: Should WordPress Provide an API for Third-Party Editors?\";s:7:\"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=99970\";s:7:\"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:175:\"https://wptavern.com/should-wordpress-provide-an-api-for-third-party-editors?utm_source=rss&utm_medium=rss&utm_campaign=should-wordpress-provide-an-api-for-third-party-editors\";s: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:6858:\"<p class=\"has-drop-cap\">Imagine a future where you log into your website&rsquo;s admin. You head over to the editor. This particular editor has all the tools and features in place that make you more efficient at producing whatever content you put out for the world to see. You immediately start tapping keys or dragging your mouse around the screen, satisfied with what the software you&rsquo;re using has to offer.</p>\n\n\n\n<p>Today, that editor may be the default block editor for WordPress. Some may be running the Classic Editor plugin for a familiar writing experience. Others will be crafting beautiful layouts with the Elementor page builder.</p>\n\n\n\n<p>As of this week, people are finding themselves at home with <a href=\"https://wptavern.com/new-iceberg-plugin-brings-a-distraction-free-writing-experience-to-wordpress\">Iceberg</a>, an interface built on top of the block editor for folks who prefer a minimalist environment and love Markdown.</p>\n\n\n\n<p>Some bloggers post by email. Others use apps from their phone. And, an entire class of people works in third-party, offline editors such as Microsoft Word, Atom, and plain ol&rsquo; Notepad.</p>\n\n\n\n<p>If there is one thing I have come to realize over the years it is that editing environments are as varied as the people who use them. There is no one-size-fits-all solution. The experience I am looking for is not necessarily the same experience you need.</p>\n\n\n\n<p>Given the freedom to choose, most people would rearrange their desk, use a different notepad, and opt for a different writing utensil than their neighbor. Even if starting with the same tools, we eventually make tweaks to accommodate our personal tastes.</p>\n\n\n\n<p>Throughout most of its history, WordPress has had a single editor that its users shared. It has changed over time &mdash; even the addition of TinyMCE was once controversial. However, the default editor has never been sufficient for every user. Personally, I abhorred the classic editing experience. It led me to write in various Markdown editors over the years for efficiency and a true distraction-free experience. It has also led to developers taking on the challenge of creating alternative experiences for large swaths of end-users.</p>\n\n\n\n<p>As much as many people love the classic WordPress editor, it was a pain for many others. Otherwise, all of the tools that have cropped up over the years would have been unnecessary.</p>\n\n\n\n<p>In much the same way, the block editor is often a love-it-or-hate-it experience. It is the ideal editing environment for many users. For others, it is a roadblock at best.  At worst, it is worthy of a gasoline soaking and a book of matches.</p>\n\n\n\n<p>The promise of WordPress is to provide an editing experience that allows people from all walks of life to publish their content on the web. The promise is to make that experience as pain-free as possible and to continue iterating toward that unattainable-but-worthwhile-goal of perfecting the publishing process.</p>\n\n\n\n<p>WordPress &mdash; any publishing platform for that matter &mdash; is only as good as its editor.</p>\n\n\n\n<p>It is a predicament. There is no way to make the ideal editor for all people.</p>\n\n\n\n<p><em>What&rsquo;s the next move?</em></p>\n\n\n\n<h2>An Editors Registry and API</h2>\n\n\n\n<p class=\"has-drop-cap\">In the comments of the Tavern&rsquo;s Iceberg editor coverage, Phil Johnston <a href=\"https://wptavern.com/new-iceberg-plugin-brings-a-distraction-free-writing-experience-to-wordpress#comment-328746\">proposed a solution</a> for WordPress going forward. &ldquo;With all of the amazing publishing experiences coming out, I wonder if it&rsquo;s time for WP to include the concept of &lsquo;Editors,\'&rdquo;, he wrote. &ldquo;Like an official registry of installed Editors.&rdquo;</p>\n\n\n\n<p>He later created a <a href=\"https://core.trac.wordpress.org/ticket/50214\">feature request</a> that called for an API that would make it easier for plugin authors to create new editing experiences on top of WordPress. The proposal is a high-level idea about how the editing screen could allow users to choose their preferred editor.</p>\n\n\n\n<p>Potentially, users could install and use various editors, depending on what type of content they are building. A user may want something akin to a Markdown editor for blog posts but switch over to a page builder for their site&rsquo;s pages. eCommerce plugins might have custom editing interfaces that are ideal for shop owners. Ultimately, the possibilities are endless. But, it all starts down at the WordPress level.</p>\n\n\n\n<p>The idea is not about dropping the default WordPress editor. It is about creating a flexible framework for plugin developers to cater to more users&rsquo; needs. Additional methods of editing content would make WordPress a stronger CMS, drawing in users who would otherwise prefer a different experience, regardless of the type of site they are building.</p>\n\n\n\n<p>It is possible to do this now. However, what could WordPress be doing to improve this process for developers?</p>\n\n\n\n<p>Jeffrey Carandang, co-creator of Iceberg, believes that core could open the editing space to more third-party solutions. &ldquo;Creating our own editor mode was challenging but a super exciting experience overall,&rdquo; he said. &ldquo;Gutenberg is still far from being extensible compared to other parts of WordPress, but we managed to hack on some areas that needed to work.&rdquo;</p>\n\n\n\n<p>Carandang identified a few hurdles his team had to overcome when building the Iceberg editor:</p>\n\n\n\n<ul><li>Limited hooks and filters outside of block development, such as the top and bottom areas of the editor and wrappers.</li><li>Little-to-no options to remove editor components, relying on CSS hacks to hide them.</li><li>The core editor&rsquo;s reliance on <code>localStorage</code>.</li></ul>\n\n\n\n<p>In addition to the primary issues, his team had to develop against multiple versions of the block editor to ensure a seamless experience for users. Despite the issues, he still believes in a future where the block editor project can open up &ldquo;potential innovations&rdquo; in the space.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p>Today, I am composing this post in an offline Markdown editor. I will copy and paste my second or third draft into the block editor, which does a great job of converting Markdown into blocks, before final edits. On other days, I work directly in WordPress, depending on my mood. However, my preferred writing experience is as simple as it gets and often happens in Atom. It is what I am accustomed to.</p>\n\n\n\n<p>I wonder if there will one day be an editor that will convert me to writing full time from within WordPress. I eagerly await the plugin developers who will make the attempt. My hope is that WordPress cultivates these ideas without standing in the way.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 May 2020 19:05:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:54:\"WPTavern: Molly Burke on the Power of Universal Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=99949\";s:7:\"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:153:\"https://wptavern.com/molly-burke-on-the-power-of-universal-design?utm_source=rss&utm_medium=rss&utm_campaign=molly-burke-on-the-power-of-universal-design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1814:\"<p>In a 2017 speech titled &ldquo;<a href=\"https://www.youtube.com/watch?v=3kIfwE4vJrI\">Stop trying to fix disability</a>,&rdquo; YouTube and motivational speaker Molly Burke says, &ldquo;I live in a world that wasn&rsquo;t built for me, but what if it was?&rdquo; Burke was born with a rare, genetic eye disease that caused her to go blind. In this short but moving 8 minute video, she contends that making the world accessible helps everyone. She introduces the concept of universal design to her audience in simple terms: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>&ldquo;Universal design [is] designing and building everything to be accessed, enjoyed, and understood to its fullest extent by everyone, regardless of their size, their age, their ability, or their perceived disability.&rdquo; </p></blockquote>\n\n\n\n<p>Burke identified Apple as one company that <a href=\"http://apple.com/accessibility/\">exemplifies universal design</a>.  </p>\n\n\n\n<p>&ldquo;Every product they release, I could buy at a store, open up, and use on my own independently, with no extra cost and no assistance needed,&rdquo; she said. &ldquo;I ask you to imagine how liberating, how empowering it is to be shown by a company that they view you as belonging to their customers, when so many others tell you the exact opposite.&rdquo;</p>\n\n\n\n<p>In honor of <a href=\"https://en.wikipedia.org/wiki/Global_Accessibility_Awareness_Day\">Global Accessibility Awareness Day</a>, I wanted to highlight this video that tells just one person&rsquo;s story on the powerful impact of technology that is built with everyone in mind. Burke&rsquo;s speech is a poignant reminder of how designers and builders can extend a sense of belonging to their customers by making their products accessible.</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, 21 May 2020 23:03:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:30:\"Matt: Gradually, Then Suddenly\";s:7:\"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=51510\";s:7:\"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://ma.tt/2020/05/gradually-then-suddenly/\";s: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:4676:\"<img />\n\n\n\n<p>The two main theses of my professional career have been that <a href=\"https://distributed.blog/\">distributed is the future of work</a>, and that open source is the future of technology and innovation. I&#8217;ve built <a href=\"https://automattic.com/\">Automattic</a> and <a href=\"https://wordpress.org/\">WordPress</a> around these, and it&#8217;s also informed my investments and hobbies. Just today, <a href=\"https://techcrunch.com/2020/05/21/automattic-pumps-4-6m-into-new-vector-to-help-grow-matrix-an-open-decentralized-comms-ecosystem/\">we announced an investment into a distributed, open source, and encrypted communication company called New Vector</a>.</p>\n\n\n\n<p>On the distributed front, the future of work has been arriving quickly. This week, a wave of companies representing over $800B in market capitalization announced they&#8217;re embracing distributed work beyond what&#8217;s required by the pandemic:</p>\n\n\n\n<ul><li><a href=\"https://blog.coinbase.com/post-covid-19-coinbase-will-be-a-remote-first-company-cdac6e621df7\">Coinbase is going remote-first</a>.</li><li><a href=\"https://www.theverge.com/2020/5/21/21265780/facebook-remote-work-mark-zuckerberg-interview-wfh\">Facebook wants to be &#8220;the most forward-leaning on remote work.&#8221;</a></li><li><a href=\"https://www.buzzfeednews.com/article/alexkantrowitz/twitter-will-allow-employees-to-work-at-home-forever\">Twitter has allowed permanent work-from-home</a>.</li><li><a href=\"https://twitter.com/tobi/status/1263483496087064579\">Shopify is now a &#8220;digital by default&#8221; company</a>.</li><li><a href=\"https://www.theverge.com/2020/5/18/21261798/square-employees-work-from-home-remote-premanent-policy-ceo\">Square has indefinitely extended remote work</a>.</li><li><a href=\"https://variety.com/2020/music/news/spotify-employees-work-from-home-1234613095/\">Spotify is allowing work-from-home through 2021</a>.</li></ul>\n\n\n\n<p>Change happens slowly, then all at once. </p>\n\n\n\n<p>The forces that enable working in a distributed fashion have been in motion for decades, and if you talk to anyone who was working in technology in the &#8217;60s and &#8217;70s they expected this to happen much sooner. <a href=\"https://distributed.blog/2019/10/03/turning-ideas-into-real-things/\">Stephan Wolfram has been a remote CEO for 28 years</a>. Automattic has been distributed-first for 15 years.</p>\n\n\n\n<p>What&#8217;s been holding us back is fear of the unknown, and attachment to the familiar. I can&#8217;t tell you how many of the investors I see espousing distributed work once told me that Automattic would never scale past a few dozen people unless we brought everyone into an office. Or the CEOs who said this would never work for them, now proclaiming their company hasn&#8217;t missed a beat as tens of thousands of people started working from home.</p>\n\n\n\n<p>What&#8217;s going to be newsworthy by the end of the year is not technology companies saying they&#8217;re embracing distributed work, but those that aren&#8217;t. Those who thought this couldn&#8217;t work have been forced by the pandemic to do it anyway, and they&#8217;ve now seen that it&#8217;s possible.</p>\n\n\n\n<p>It was probably terrible at first, but now two or three months in it&#8217;s gotten better. We&#8217;ve learned and adapted, and will continue to do so. Necessity breeds invention. <strong>I promise you if you stick with it, <a href=\"https://ma.tt/2020/04/five-levels-of-autonomy/\">you&#8217;ll progress through the levels of distributed autonomy</a>.</strong> Over time people will be able to move houses, tweak furniture, buy equipment, upgrade their internet, and otherwise adapt to being more productive in a distributed environment than they ever could be in an office. Products and services are being developed all around the world that will make it even better. I&#8217;m so excited about how a majority of the economy going distributed will improve people&#8217;s quality of life, and unlock incredible creativity and innovation at work. (They go hand in hand.)</p>\n\n\n\n<p>At some point, we&#8217;ll break bread with our colleagues again, and that will be glorious. I can&#8217;t wait. But along the way we&#8217;ll discover that things we thought were impossible were just hard at first, and got easier the more we did it. Some will return to physically co-working with strangers, and some employers trapped in the past will force people to go to offices, but <strong>the illusion that the office was about work</strong> will be shattered forever, and companies that hold on to that legacy will be replaced by companies who embrace the antifragile nature of distributed organizations.</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, 21 May 2020 20:28: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: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: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:59:\"WPTavern: PHP and WordPress Version Checks Coming to 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=99928\";s:7:\"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:163:\"https://wptavern.com/php-and-wordpress-version-checks-coming-to-themes?utm_source=rss&utm_medium=rss&utm_campaign=php-and-wordpress-version-checks-coming-to-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4753:\"<p class=\"has-drop-cap\">PHP and WordPress version checks are coming to the WordPress theme system &mdash; finally. The feature was <a href=\"https://core.trac.wordpress.org/changeset/47819\">pulled into core WordPress</a> three days ago. It will prevent end-users from installing or activating a theme that is incompatible with their current version of PHP or WordPress. The change is slated to land in WordPress 5.5.</p>\n\n\n\n<p>This feature has long been on many theme authors&rsquo; wish lists, particularly PHP version checking. Plugins authors gained the ability to support specific PHP versions starting with WordPress 5.2. However, theme authors were left feeling like the second-class citizens they usually are when it comes to the addition of core features, waiting patiently as plugin authors received the new and shiny tools they were looking forward to.</p>\n\n\n\n<p>Previously, the code for manually handling version checking within individual themes was more complex than in plugins. Theme authors needed to run compatibility checks after theme switch and block theme previews in the customizer using two different methods, depending on the user&rsquo;s WordPress version. That is assuming theme authors were covering all their bases.</p>\n\n\n\n<p>Users had no real way of knowing whether a theme would work on their site before installing and attempting to activate it. It was a poor user experience, even when a theme gracefully failed for the end-user.</p>\n\n\n\n<p>This user experience has also held back some theme authors from transitioning to newer versions of PHP. For years, many were supporting PHP 5.2. Slowly, some of these same authors are now making the move toward newer features up to PHP 5.6, which is now the minimum that WordPress supports. However, not many have made the jump to PHP 7 and newer.</p>\n\n\n\n<p>Until now, there has been no mechanism for letting the user know they need to upgrade their PHP to use a particular theme.</p>\n\n\n\n<p>Some theme authors may choose to continue supporting older versions of PHP, such as 5.6, for a potentially wider user base. However, developers who want to switch to newer features can now do so with the support of the core platform.</p>\n\n\n\n<h2>Changes for Users</h2>\n\n\n\n<img />New WordPress and PHP versions added to Twenty Twenty theme.\n\n\n\n<p class=\"has-drop-cap\">Users who are browsing the WordPress theme directory may begin to notice new information available for some themes. Similar to plugins, visitors should see a WordPress Version and PHP Version listed for some themes. For example, the <a href=\"https://wordpress.org/themes/twentytwenty/\">Twenty Twenty</a> theme now lists the following minimum requirements:</p>\n\n\n\n<ul><li><strong>WordPress Version:</strong> 4.7 or higher</li><li><strong>PHP Version:</strong> 5.2.4 or higher</li></ul>\n\n\n\n<p>Not all themes will have these numbers listed yet. It will take some time before older themes are updated with the data required to populate these fields.</p>\n\n\n\n<p>In WordPress 5.5, the admin interface for themes will change.  When attempting to install or activate a theme, WordPress will prevent such actions. If a user searches for a theme that has an incompatible WordPress or PHP version, the normal installation button will be replaced with a disabled button that reads &ldquo;Cannot Install.&rdquo; If a theme is installed but not activated, the activation link will similarly be replaced with a disabled &ldquo;Cannot Activate&rdquo; button. Users will also not be allowed to live preview incompatible themes.</p>\n\n\n\n<img />Cannot activate Twenty Twenty theme with incompatible PHP version.\n\n\n\n<p>The feature works the same from within the customizer interface as it does via the themes screen in the WordPress admin.</p>\n\n\n\n<h2>Changes for Theme Authors</h2>\n\n\n\n<p class=\"has-drop-cap\">The WordPress Themes Team recently announced two new <a href=\"https://make.wordpress.org/themes/2020/05/14/new-required-header-fields-for-style-css/\">required headers for theme authors</a> to place in their <code>style.css</code> files. The first required field is <code>Tested up to</code>, which is the latest version of WordPress the theme has been tested against. The second is a <code>Requires PHP</code> field, which is the minimum PHP version the theme supports.</p>\n\n\n\n<p>It is unclear is why the team decided to require those two fields but not the <code>Requires at least</code> field, which represents the minimum WordPress version needed. Most likely, theme authors will want to place all three headers in their themes.</p>\n\n\n\n<p>Theme authors who will still support versions of WordPress earlier than 5.5 will want to continue using their old compatibility checks. However, this is the first step in phasing such code out.</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, 21 May 2020 19:57: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:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:80:\"WPTavern: WordCamp Kent Online Features Business and Marketing Tracks, May 30-31\";s:7:\"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=99897\";s:7:\"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:203:\"https://wptavern.com/wordcamp-kent-online-features-business-and-marketing-tracks-may-30-31?utm_source=rss&utm_medium=rss&utm_campaign=wordcamp-kent-online-features-business-and-marketing-tracks-may-30-31\";s: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:2315:\"<p>One of the exciting things about WordCamps going virtual is the community gaining access to more events and presentations than ever before, from anywhere in the world. Even in this new online-only format, local camps still retain their unique character as they feature speakers from their respective communities. </p>\n\n\n\n<p><a href=\"http://2020.kent.wordcamp.org\">WordCamp Kent</a> (Ohio) is one of these upcoming events that has been forced online by the pandemic. Organizers will be broadcasting all sessions on the weekend of May 30-31, and <a href=\"https://2020.kent.wordcamp.org/tickets/\">tickets</a> are free for anyone who wants to attend. </p>\n\n\n\n<p>The schedule for this particular event runs heavy on the business and marketing side of working with WordPress, with very few talks geared towards developers. If you are a freelancer, run an agency, or have a WordPress product business, you will find WordCamp Kent&rsquo;s program more tailored to topics that help you improve client services. </p>\n\n\n\n<p>The <a href=\"https://2020.kent.wordcamp.org/schedule/\">schedule</a> on the first day of the event is divided into two tracks: Freelance/Business and User/Marketing. These sessions will run alongside live Q&amp;A and a Help Desk managed by volunteers in the&nbsp;<a rel=\"noreferrer noopener\" href=\"https://app.slack.com/client/T0AST04HG/C011U4S0LKW\" target=\"_blank\">#wp-help-desk channel</a>&nbsp;in the NEO WordPress Slack workspace. The second day of the event will be also be split into two tracks: Freelance/Business/Developer and WordPress 101/User. </p>\n\n\n\n<p>Topics include designing websites for generating leads, improving your business model for freelancers and small businesses, client consultations, content marketing, and customer support. </p>\n\n\n\n<p>This Kent, Ohio, WordCamp may not have made it on your radar in the past, but the pandemic has opened up events in some ways. It forces a greater number of camps online and allows attendees to join any event without the travel expenses that would ordinarily be prohibitive. In the past, many people who were not local would simply opt to save their money for the bigger camps. The WordPress community has a greater potential to accelerate their learning opportunities, as more smaller camps gain a global audience online.</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, 21 May 2020 17:19: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: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:103:\"WPTavern: CampusPress Releases Accessible Content Plugin in Time for Global Accessibility Awareness Day\";s:7:\"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=99804\";s:7:\"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:251:\"https://wptavern.com/campuspress-releases-accessible-content-plugin-in-time-for-global-accessibility-awareness-day?utm_source=rss&utm_medium=rss&utm_campaign=campuspress-releases-accessible-content-plugin-in-time-for-global-accessibility-awareness-day\";s: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:10213:\"<p class=\"has-drop-cap\">While it is still Wednesday here in the U.S., some parts of the world are already awakening to the third Thursday in May, which is <a href=\"https://globalaccessibilityawarenessday.org/\">Global Accessibility Awareness Day</a> (GAAD). The purpose of the event is to get more people discussing, learning, and addressing issues related to the inclusion of people with disabilities in the digital world. That is what CampusPress hopes to do with its new plugin.</p>\n\n\n\n<p>The CampusPress team <a href=\"https://campuspress.com/free-accessibility-plugins-themes-for-wordpress/\">announced its Accessible Content plugin</a> for WordPress last week. The goal of the plugin is to help end-users address accessibility issues on their sites. Many tools are built for developers and designers, but the team wanted something to put into the hands of users to allow them to take the extra steps necessary in creating an accessible website.</p>\n\n\n\n<p>The plugin is currently <a href=\"https://github.com/campuspress/accessible-content\">available through GitHub</a>, but the team plans to submit it to the official WordPress plugin repository soon. The developers are gathering user feedback from customers and the community first.</p>\n\n\n\n<p>&ldquo;Our Accessible Content plugin was developed specifically to help with training and putting real-time information into the hands of those creating WordPress pages and posts,&rdquo; said Ronnie Burt, General Manager at CampusPress. &ldquo;There are a ton of site checker tools out there, and many work quite well. But all of them will spit out false positives and list issues on a page that have nothing to do with the content (navigation issues and the like). So as a bit of a disclaimer, by design, this plugin will not find or help with all potential accessibility issues on a site. But if used over time, it will help train content creators to understand many of the best practices that they should be following and avoid mistakes.&rdquo;</p>\n\n\n\n<p>CampusPress is a managed WordPress hosting and service provider for organizations in the educational sector. It is a sister service to Edublogs.org, which originally launched 15 years ago.</p>\n\n\n\n<p>&ldquo;In that time, we&rsquo;ve been quietly catering to the unique needs of schools and universities that use WordPress in various ways,&rdquo; said Burt. &ldquo;Historically, that was more on the blogging and learning side, but as WordPress has grown into the CMS of choice, we&rsquo;ve moved along with it to high-level main websites too.&rdquo;</p>\n\n\n\n<p>Development of the Accessible Content plugin will help the CampusPress team&rsquo;s customers in education, particularly when diving into the world of accessibility guidelines.</p>\n\n\n\n<p>&ldquo;Overall, awareness around accessibility has improved considerably in recent years, but for many, the topic is overwhelming,&rdquo; said Burt. &ldquo;In our case, school administrators know they need a &lsquo;compliant&rsquo; site, but when you go to read the compliance standards, some are subjective and, at best, really complex. The biggest hurdle that we see is that we are still in a place where accessibility expertise is left up to specialists or tools that are usually brought in after the fact or at the end of a project. In an ideal world, we&rsquo;ll get to where the expertise is shared by all developers, content creators, and anyone else working on the site. This is because accessibility is so much better and easier when it is built-in and thought about from the beginning and continuously.&rdquo;</p>\n\n\n\n<p>The team is releasing this plugin not only to its customer base but as a free tool for all WordPress users.</p>\n\n\n\n<h2>How the Plugin Works</h2>\n\n\n\n<p class=\"has-drop-cap\">The plugin is simple enough for most people to use. When previewing a post, it labels and points out issues that need attention. The goal is not to focus on larger accessibility issues that may be coming from the theme. Instead, the plugin lists issues directly with the post content.</p>\n\n\n\n<p>The interface on the post preview screen is simple enough to understand without documentation. Preview a post and the plugin provides buttons on the sides of the screen to navigate through each issue found. At the bottom of the screen, it leaves a full description of the problem.  Users can also access this feature via the toolbar on the site front end when viewing a post.</p>\n\n\n\n<img />Accessible Content plugin&rsquo;s output on post preview.\n\n\n\n<p>In some cases, such as missing image alt text, the plugin provides a link to directly add the alt text in the admin. This is done through a custom Alt Text sub-menu under the Media screen in the WordPress admin. Users can also use this screen at any time to manage alt text for images used throughout the site in one location.</p>\n\n\n\n<img />\n\n\n\n<p>Burt said the original spec for the plugin had all of the accessibility checks and information within the block editor interface. However, the team hit a couple of roadblocks and ended up moving the plugin&rsquo;s interface to the post preview screen as a result.</p>\n\n\n\n<p>&ldquo;Gutenberg is still in flux at a pretty rapid pace,&rdquo; he said. &ldquo;Just as we were getting our first proof of concept working on the image block, there was a change and it all broke. No fun! But moving to the previewer had some nice unintended consequences. Namely, the plugin works just as well with Classic Editor and with most page builders. The trade-off is that the warnings and helpful text aren&rsquo;t quite in as real-time as I hope to get them to someday.&rdquo;</p>\n\n\n\n<p>In the long term, the team still plans on integrating directly with the block editor. For now, the plugin works well as part of the previewer. However, instant feedback in the editor would be a huge boost to fixing accessibility issues as they arise.</p>\n\n\n\n<h2>Community Accessibility Improvements</h2>\n\n\n\n<p class=\"has-drop-cap\">Burt was not shy about sharing his thoughts about what the WordPress community can be doing to improve accessibility around the web. He praised some of the work that the WordPress project has done thus far. He also shared some concerns.</p>\n\n\n\n<p>&ldquo;One thing I&rsquo;m worried about &mdash; there&rsquo;s a trend out there with a few WordPress plugins and a growing number of third-party tools to add a little &lsquo;accessibility&rsquo; icon to the corner of your website,&rdquo; he said. &ldquo;When clicked, these icons open up options for fonts, contrast ratios, and may give an alternative way of navigating the site. I&rsquo;ve noticed them on bank websites, government sites, and now the schools we work with are buying into them too because it can be tempting to just add a few snippets of embed code to a site and call it a day. To me, this sorta lets all of us that work on websites off the hook to not be responsible for accessible design and development, which really should be our ultimate goal.&rdquo;</p>\n\n\n\n<p>He stressed that using quality themes and plugins as a good step for most users along with being mindful of the content we create. Taking these simple steps should make for a more accessible user experience overall.</p>\n\n\n\n<p>&ldquo;There is lots of good news when it comes to WordPress and accessibility that we should be shouting from the rooftops,&rdquo; said Burt. &ldquo;For one, while there&rsquo;s still a bit of work to be done, the majority of the issues identified in the WPCampus sponsored audit of Gutenberg have been resolved. That was a great example of the higher-ed community leading the charge to impact change. Without the change, simply put, schools, universities, and government agencies may be forced or encouraged to drop their adoption of WordPress.&rdquo;</p>\n\n\n\n<p>The <a href=\"https://wptavern.com/wpcampus-gutenberg-accessibility-audit-finds-significant-and-pervasive-accessibility-problems\">WPCampus-sponsored audit</a> in 2019 resulted in a 329-page technical analysis by Tenon, LLC. It covered user-based testing that included people with various disabilities. Since then, the Gutenberg project has worked to overcome issues identified by the audit.</p>\n\n\n\n<p>&ldquo;As I use Gutenberg more and more, there are some nice little accessibility Easter eggs for content creators, such as warnings about contrast ratios and the Headings block won&rsquo;t show you the option for H1 by default,&rdquo; said Burt. &ldquo;I love it! If our community can just continue to highlight these improvements whenever possible, it will make a big difference. I&rsquo;m also hopeful that some of our checks from this plugin can eventually not be needed as future improvements to blocks and the editor are made.&rdquo;</p>\n\n\n\n<p>Burt described the best thing the community can do is to be responsive and treat all accessibility issues as a major bug or even a release blocker before plugins or themes go live. In part, it is about being open to communicating and resolving issues that users bring up.</p>\n\n\n\n<p>&ldquo;With so many competing priorities, it can be tempting to just write off a complaint or suggestion as coming from one user,&rdquo; he said. &ldquo;But really this is how we continue to make the most progress on all of our tools and services. Feedback from users on barriers and problems they face in using our stuff is pure gold and useful to help ensure we don&rsquo;t repeat those same mistakes.&rdquo;</p>\n\n\n\n<p>Burt listed some key questions he believes the community should continue having conversations around:</p>\n\n\n\n<ul><li>Should all new themes to WordPress.org be required to meet the &lsquo;accessibility-ready&rsquo; standards?</li><li>Are there similar standards and checks we could add to plugins? How can plugin authors declare if their plugin may impact accessibility?</li><li>Is a separate &lsquo;Accessibility&rsquo; team for WordPress core still the best way? How do we improve accessible design and development earlier on in practice? It is usually much harder to fix accessibility issues than it is to prevent them to begin with.</li></ul>\n\n\n\n<p>These are definitely worth discussing further. For now, his team is trying to do its small part with the Accessible Content plugin.</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, 20 May 2020 19:39: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:86:\"WPTavern: New Iceberg Plugin Brings a Distraction-Free Writing Experience to 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:29:\"https://wptavern.com/?p=99062\";s:7:\"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:217:\"https://wptavern.com/new-iceberg-plugin-brings-a-distraction-free-writing-experience-to-wordpress?utm_source=rss&utm_medium=rss&utm_campaign=new-iceberg-plugin-brings-a-distraction-free-writing-experience-to-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:8656:\"<p>Ever on the hunt for a more beautiful, simplified writing experience inside WordPress, I jumped at the chance to beta test the new<a href=\"https://useiceberg.com/\"> Iceberg</a> plugin. Rich Tabor and Jeffrey Caradang, the same team behind CoBlocks, have created a new markdown editor built on top of Gutenberg that provides the best writing experience for WordPress since core&rsquo;s retired <a href=\"https://wptavern.com/wordpress-zen-mode-5-compelling-reasons-to-turn-on-distraction-free-writing\">Distraction Free Writing</a> mode.</p>\n\n\n\n<img />\n\n\n\n<p>Iceberg features a minimalist editor with four color themes, the ability to create a custom theme, and a set of typography controls. In switching to Iceberg, there is not much missing much from the default block editor that would be necessary for writing. Users can drag and drop media into Iceberg and the backslash command works to trigger the block inserter. It also includes a Table of Contents, word and character counts, reading time, keyboard shortcuts, and support for emoji.</p>\n\n\n\n<p>&ldquo;Iceberg was brought to fruition out of an experiment to make WordPress look and feel more like my favorite writing applications,&rdquo; Tabor said. &ldquo;My personal publishing flow was to write in an external application, paste it all into the block editor, followed by fixing/adjusting/resizing everything&ndash;honestly not fun. You see, writing with blocks is just &lsquo;ok&rsquo; &ndash; and doesn&rsquo;t feel natural.</p>\n\n\n\n<p>&ldquo;After chatting with others, I realized a lot of folks shared the same sentiment and that such a small number of folks I talked to actually composed articles within WordPress. And although I appreciate how far the block editor has come over the years as a site editor and page builder, I wanted to morph the experience to better support publishing.&rdquo;</p>\n\n\n\n<p>The Iceberg name is a nod towards Guten &ldquo;berg.&rdquo; Tabor said he wanted the project to seem more approachable, without being tied to WordPress or emphasizing blocks.</p>\n\n\n\n<p>Tabor said he was inspired by dedicated writing applications like Bear, Ulysses, Dropbox Paper, and Google Docs. What he loves most about Iceberg is that its design is centered around the writer&rsquo;s preferences. </p>\n\n\n\n<p>&ldquo;The editor themes that sit at the core of Iceberg&rsquo;s design language empower each writer to define their flavor of the editor,&rdquo; he said. &ldquo;Every color variable is auto-generated based on the editor theme and applied throughout the interface as necessary.&rdquo;</p>\n\n\n\n<p>Gutenberg was also a strong inspiration for the design principles that guided Tabor in creating Iceberg.</p>\n\n\n\n<p>&ldquo;Gutenberg itself is undergoing quite a transformation with what&rsquo;s being dubbed as &lsquo;G2&rsquo; &ndash; a new design system geared towards improved contrast, modern lines and an overall cleaner look,&rdquo; he said. &ldquo;I knew I wanted to push Iceberg in that direction, bringing a clean and modern look to the writing environment.&rdquo;</p>\n\n\n\n<p>Under the hood, Iceberg is simply an extension of the block editor that de-emphasizes blocks to better enable writers. Since the plugin manipulates the editor itself, users&rsquo; content remains intact even if it is deactivated. </p>\n\n\n\n<p>&ldquo;It&rsquo;s a clever combination of React components, styles, CSS custom variables and UX that is centered entirely around the art of writing,&rdquo; Tabor said. &ldquo;In short, if folks are familiar with Gutenberg development, they&rsquo;ll find Iceberg similarly structured.&rdquo;</p>\n\n\n\n<p>Tabor said he wants to keep the plugin simple while also exploring where he can push the writing experience further forward. Possible features coming to the roadmap include goal setting, readability analysis, an improved pre-publish checklist, and better post previews/live previewing.</p>\n\n\n\n<h2>Iceberg Gets Positive Reviews at Launch, Fills a Gap in the Block Editor&rsquo;s Support for Writers</h2>\n\n\n\n<p>Iceberg is launching as a commercial product, priced at $39 for a single site or<strong> </strong>$99 for unlimited sites. The product seems to have filled a gap in the market, covering Gutenberg&rsquo;s long-standing deficiency in supporting writers. Community feedback during the beta and on Twitter and Product Hunt has so far been overwhelmingly positive.</p>\n\n\n\n<p>&ldquo;Iceberg is like a noise-cancellation for the WordPress editor,&rdquo; Rajendra Zore <a href=\"https://twitter.com/rajendrazore/status/1262798934252023808\">said</a>. </p>\n\n\n\n<p>Nick Hamze offered feedback in a Twitter <a href=\"https://twitter.com/NickHamze/status/1262749430844801030\">thread</a>, saying he was excited to see a product that can &ldquo;take markdown back from developers.&rdquo; He views Iceberg as a positive development in the WordPress product space, and urged the community to support these kinds of innovations:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>The fun thing about Iceberg is it&rsquo;s an enhancement of the block editor not a replacement. No editor can be everything to everyone. Iceberg takes all the parts that are great for writers and emphasizes them while moving everything else into the background.</p><p>It&rsquo;s not a criticism of the block editor but a celebration of it. Even if you aren&rsquo;t a writer I think you should buy a copy. As a community we need to support people who are doing stuff like this. They&rsquo;re never going to stop making cool stuff but they might stop making it for WP.</p></blockquote>\n\n\n\n<p>After beta testing the plugin I found that it provides the kind of writing experience that I have been missing in the block editor. Iceberg removes the cumbersome feeling of forcing your writing into blocks. More than anything, I want to see something like this land in WordPress core someday.</p>\n\n\n\n<p>It&rsquo;s somewhat bittersweet to see a better writing experience arrive as a commercial plugin, instead of from core improvements. I desperately want WordPress to be home to the best tools for writers, because it is a publishing platform that is so powerful in nearly every other way. This is not to say that core developers cannot adopt something similar. That&rsquo;s the beauty of open source software &ndash; products inspiring new and improved solutions in a never-ending cycle.</p>\n\n\n\n<p>Gutenberg designers and engineers have been <a href=\"https://wptavern.com/gutenberg-contributors-considering-a-focus-mode-for-writing\">working for the past two years</a> to bring the writing experience in the editor to a functional place that meets the needs of those who use WordPress primarily for writing. So far the block editor&rsquo;s <a href=\"https://wptavern.com/gutenberg-for-writers-how-to-configure-the-editor-for-fewer-distractions\">Fullscreen mode</a> is incapable of producing the kind of zen writing experience that most writers crave when turning to third-party writing apps.</p>\n\n\n\n<p>Iceberg is GPL-licensed and is even <a href=\"https://github.com/useIceberg/iceberg-editor\">available on GitHub</a> for download and collaboration. I asked Tabor what he planned to do if someone proposed that some version of Iceberg be added to core.</p>\n\n\n\n<p>&ldquo;Honestly, I think it would be great if WordPress adopted the same high level of support for writers as Iceberg does,&rdquo; he said. &ldquo;Sure it may not be completely ideal economically, but Iceberg is built on an editor built by thousands of hands. If Iceberg is deemed a clever enough solution to be a part of core, then that&rsquo;s ok. Although I&rsquo;m positive there&rsquo;s room to continue experimenting within the realm of empowering writers.&rdquo;</p>\n\n\n\n<p>As WordPress continues to move full steam ahead on the site building aspects of the editor, a truly distraction-free writing experience is not likely to become a high priority anytime soon. Tabor sees this as an opportunity for products that can transform the editor for different types of users who may not be focused on building websites.</p>\n\n\n\n<p>&ldquo;We&rsquo;re in such a transformative period of WordPress right now,&rdquo; Tabor said. &ldquo;The editing experience we&rsquo;re building with the block editor is much more focused on designing and publishing websites &ndash; not writing posts. Consequently, there&rsquo;s been much more focus on the<em> site building</em> experience, in lieu of the <em>writing</em> experience. That&rsquo;s not to say I don&rsquo;t love the direction WordPress is heading&ndash;I absolutely do. But rather that I feel there&rsquo;s room for a tool to improve the writing experience within the block editor.&rdquo;</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, 19 May 2020 23:16: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: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:100:\"WPTavern: WooCommerce Payments Allows Shop Owners to Manage Payments Without Leaving WordPress Admin\";s:7:\"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=99776\";s:7:\"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:245:\"https://wptavern.com/woocommerce-payments-allows-shop-owners-to-manage-payments-without-leaving-wordpress-admin?utm_source=rss&utm_medium=rss&utm_campaign=woocommerce-payments-allows-shop-owners-to-manage-payments-without-leaving-wordpress-admin\";s: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:5670:\"<img />\n\n\n\n<p class=\"has-drop-cap\">Automattic-owned eCommerce platform WooCommerce <a href=\"https://woocommerce.com/posts/woocommerce-payments/\">launched its new WooCommerce Payments</a> feature today. The company seeks to make it easier for plugin users to manage the entirety of their shop from a single location. For users based in the U.S. with WordPress.com-connected accounts, they can begin managing payments directly from their WordPress admin.</p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/woocommerce-payments/\">WooCommerce Payments</a> is available as a free download via the WordPress plugin directory. Any costs associated with the plugin are on a per-transaction basis. Fees start at 2.9% + $0.30 per transaction for cards issued in the U.S. An additional 1% fee is tacked on for cards outside the U.S.</p>\n\n\n\n<p>Under the hood, payments are handled through <a href=\"https://docs.woocommerce.com/document/payments/powered-by-stripe/\">Stripe Express</a>. The WooCommerce team developed the front-end so that it would match the look and feel of WooCommerce, making it function like a native part of the plugin. Stripe handles the processing from the backend.</p>\n\n\n\n<p>The team began work on the system in 2019 and launched an invitational beta in late February 2020. Since then, it has seen over 1,000 accounts connect to WooCommerce Payments.</p>\n\n\n\n<p>&ldquo;New users have been able to add it to their stores in onboarding,&rdquo; said Paul Maiorana, General Manager of WooCommerce. &ldquo;Current customers have heard about it through either our newsletter or virtual community meetups. Through this period, we&rsquo;ve learned what store owners like about WooCommerce Payments &mdash; managing their store and payments in one place; intuitive dashboard views; &lsquo;flow&rsquo; and &lsquo;ease.&rsquo; We&rsquo;ve also heard their questions, which are mostly related to features we&rsquo;ve got planned and are working hard to make available as soon as possible.&rdquo;</p>\n\n\n\n<p>WooCommerce Payments creates an integrated payments dashboard in the WordPress admin. It allows shop owners to manage charges, deposits, refunds, and disputes without leaving their store. By not having to toggle between the store and third-party payment processors, administrators should be able to enjoy a more seamless experience.</p>\n\n\n\n<p>The following are some screenshots from a demo install of the WooCommerce Payments plugin:</p>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><img />Transaction Details</li><li class=\"blocks-gallery-item\"><img />Dispute Overview</li><li class=\"blocks-gallery-item\"><img />Challenge Dispute</li><li class=\"blocks-gallery-item\"><img />Deposits</li><li class=\"blocks-gallery-item\"><img />Transactions</li></ul>\n\n\n\n<p>On the customer end, the experience should also be more convenient for shoppers. Instead of being redirected to a processor like PayPal, customers can make payments directly on the site. This may also help curb cart abandonment, which can often happen when shoppers are redirected.</p>\n\n\n\n<p>&ldquo;Now that we&rsquo;re announcing general availability in the U.S. and putting focused marketing effort behind it, we&rsquo;re hoping to draw more store owners to join us on the journey,&rdquo; said Maiorana.</p>\n\n\n\n<p>New account holders will need to wait for seven business days before receiving their first deposit from sales. Afterward, the payments system will bundle daily revenue into a single deposit and automatically transfer it to the users&rsquo; bank accounts. This also cuts out the process of logging into an account with a payment processor to manually deposit earnings.</p>\n\n\n\n<h2>On the Roadmap</h2>\n\n\n\n<p class=\"has-drop-cap\">Currently, WooCommerce Payments is only available to U.S.-based shops. However, the team expects to begin rolling out support for more countries and local payment methods in 2020.</p>\n\n\n\n<p>&ldquo;We&rsquo;re launching in the U.S. to start to manage scope, but WooCommerce is a global platform and global support for WooCommerce Payments is a priority for us,&rdquo; said Maiorana. &ldquo;Payments is obviously a complex and highly-regulated space. We have a three-year roadmap for WooCommerce Payments that includes feature and geographical expansion. Our legal and business teams are investing the appropriate time and resources to lay a strong foundation for future growth.&rdquo;</p>\n\n\n\n<p>Upcoming releases of the WooCommerce Payments plugin are slated to receive support for subscriptions, saved cards, wallets, and instant deposits.</p>\n\n\n\n<p>The WooCommerce team also has no plans of stopping with online sales. It is already taking some steps toward moving into the physical world. &ldquo;WooCommerce&rsquo;s mission is to democratize commerce &mdash; not only eCommerce &mdash; so yes, we&rsquo;re thinking a lot about how to bring this great payment experience offline to point-of-sale devices too,&rdquo; said Maiorana.</p>\n\n\n\n<p>It would be interesting to see small store owners with physical locations &mdash; from a fruit stand to a collectibles shop to a mom-and-pop restaurant &mdash; be able to manage payments from a central location, all backed with WooCommerce and the WordPress platform.</p>\n\n\n\n<p>The new system does not currently support CBD merchants. <a href=\"https://wptavern.com/woocommerce-partners-with-square-to-expand-services-for-cbd-merchants\">WooCommerce has a partnership with Square</a>, and shop owners who are selling CBD-derived products can still use that particular payment processor for the time being. This is likely tied to Stripe&rsquo;s policies on <a href=\"https://stripe.com/restricted-businesses\">restricted businesses</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 19 May 2020 17:39: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:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:69:\"WPTavern: BuddyPress 6.0.0 Released with New Group and Members Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=99784\";s:7:\"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:183:\"https://wptavern.com/buddypress-6-0-0-released-with-new-group-and-members-blocks?utm_source=rss&utm_medium=rss&utm_campaign=buddypress-6-0-0-released-with-new-group-and-members-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4395:\"<p>BuddyPress has entered the world of blocks with the release of <a href=\"https://buddypress.org/2020/05/buddypress-6-0-0/\">version 6.0</a>, the latest major update that has been in development since November 2019. The release, code-named &ldquo;iovine&rsquo;s&rdquo; for a favorite pizza restaurant in Paris,   introduces blocks for Groups and Members. It also marks the completion of the BP Rest API, adding the final remaining endpoints for Blogs, Blog avatar, Friends, Group Cover Image, Member Cover Image, and User Signups.</p>\n\n\n\n<p>The first set of blocks allow community site owners to insert a specific Member or Group from the editor into any WordPress post or page. More<a href=\"https://bpdevel.wordpress.com/2020/03/30/welcome-to-the-first-buddypress-blocks/#advanced-customizations\"> advanced customizations</a> are available to developers who want to make blocks available to (or restricted from) specific custom post types. Developers can also override block output using new filters, disable blocks, and specify a custom stylesheet for a block.</p>\n\n\n\n<img />New BP Blocks in action\n\n\n\n<p>In a previous WP Tavern review of the 6.0 beta, Justin Tadlock noted that the block settings had each setting is placed within its own tabbed section, which increased the number of clicks required. This feedback was incorporated six weeks ago in a <a href=\"https://buddypress.trac.wordpress.org/ticket/8271\">patch</a> from BuddyPress core developer Mathieu Viet, which places all settings into one panel until such a time as more panels become necessary.</p>\n\n\n\n<h2>Next Up for BuddyPress: Block Versions of Existing Widgets and Community-Requested Blocks </h2>\n\n\n\n<p>The BuddyPress community has a unique opportunity to shape the future of block development for the plugin. The next blocks are not yet set in stone but Viet said contributors will probably start by adding block versions of the existing widgets, followed by block requests based on community feedback.</p>\n\n\n\n<p>&ldquo;The <a href=\"https://poll.fm/10425422\">poll</a> we made about BuddyPress blocks showed there were expectations about a block to share a post or a page into the Activity Stream, so l think we should include such a block,&rdquo; Viet said. &ldquo;But we&rsquo;re are very open to new ideas or contributions to the <a href=\"https://github.com/buddypress/bp-blocks\">GitHub repository</a> we use to develop them.&rdquo;</p>\n\n\n\n<p>The poll results indicated that in addition to a block to share a post or a page via the Activity Stream, the community is also strongly interested a block to list the recently published posts from across a network, followed by a block to display Sitewide Notices posted by the site administrator.&nbsp;</p>\n\n\n\n<p>Viet said core contributors have not yet set a roadmap but are working in small steps and carefully following the Gutenberg project to see how they can incorporate it more into community features. A block-based activity posting form is one feature they are considering. </p>\n\n\n\n<p>Now is an important time for BuddyPress site owners to give input on the future of the project, whether through block recommendations or via the new <a href=\"https://mercime.survey.fm/2020-buddypress-survey\">2020 BuddyPress Survey</a>. It includes 17 questions, which take approximately 7-10 minutes to complete. Most of the questions are centered around how you are using BuddyPress on production sites, but one interesting question asks about the prospect of breaking up the plugin&rsquo;s features to make it more modular:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>BuddyPress is a large plugin with optional components (3MB zipped). There&rsquo;s a proposal to reconstitute BuddyPress as core + members only and improved upon with new functionalities and API&rsquo;s among others for new BP plugins to hook into. The current optional components like groups, friends, private messaging, etc. can be migrated into separate plugins which can be activated as needed. What do you think?</p><p></p></blockquote>\n\n\n\n<p>Survey respondents have the opportunity to choose between keeping BuddyPress as is with core + members and optional components, or break it down to put the components into BP plugins. Feedback on this proposal and other important survey questions will help the BP core team know how to prioritize features for the next release and long-term roadmap.</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:\"Mon, 18 May 2020 22:06: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: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:71:\"WPTavern: WordPress Theme Review Team Changes Name, Now the Themes Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=99570\";s:7:\"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:185:\"https://wptavern.com/wordpress-theme-review-team-changes-name-now-the-themes-team?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-theme-review-team-changes-name-now-the-themes-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6243:\"<p class=\"has-drop-cap\">Last week, the official Theme Review Team (TRT) <a href=\"https://make.wordpress.org/themes/2020/05/12/meeting-notes-tuesday-12-may-2020/\">decided to change its name</a>. The re-branding was mostly about fixing a naming mistake for a team with multiple responsibilities outside of reviews. The hope is that it also shifts the public perception about what the team does.</p>\n\n\n\n<p>The idea isn&rsquo;t new. The team has tossed the concept of a name change around for a few years. It was always going to become the Themes Team unless another naming idea came around and stole the spotlight.</p>\n\n\n\n<p>The original concept of changing the name was about inviting others in. To most, the team had been little more than the gatekeepers to the theme directory. However, its members and the work they do for the community reach beyond that scope. Few know or recognize its role outside of reviewing themes, which makes it tougher to bring people on board.</p>\n\n\n\n<p>&ldquo;We realized that we are doing all these theme-related things &mdash; work on Twenty Twenty, coding standards, meta stuff, reviews, helping out with full-site editing in any capacity we can, etc. &mdash; that being just the Theme Review Team just didn&rsquo;t make any sense,&rdquo; said Denis &#381;oljom, the team&rsquo;s automation representative. &ldquo;So we discussed that idea with Josepha [Haden]. In principle, she had nothing against it, so we decided to just go ahead and do the name change.&rdquo;</p>\n\n\n\n<p>The team is in the process of renaming some things, such as its <a href=\"https://github.com/WPTRT/\">GitHub organization</a>. It will take a little time to get everything in order.</p>\n\n\n\n<p>The Themes Team&rsquo;s primary mission is not changing in terms of reviewing themes. They will continue taking on that role of making sure themes meet coding and security standards, which is a vital and oftentimes thankless task.</p>\n\n\n\n<p>&ldquo;We are reviewing themes as usual, but we are more experimenting with full-site editing,&rdquo; said &#381;oljom. &ldquo;I&rsquo;m playing with Gutenberg outside of the editor context in my own projects, so that also gives me a perspective to see what things will change. We are still maintaining the <a href=\"https://github.com/WPTRT/WPThemeReview\">WPThemeReview</a>. <a href=\"https://github.com/WordPress/theme-check\">Theme Check</a> has seen tons of improvements by Carolina [Nymark], which should be merged on .ORG soon. Ari [Stathopoulos] is working on some Gutenberg-related projects. I have the <a href=\"https://wptavern.com/proposal-to-move-wordpress-theme-review-process-to-github\">GitHub review flow</a> that I&rsquo;d like to explore soon.&rdquo;</p>\n\n\n\n<p>&#381;oljom recently dropped the <a href=\"https://github.com/WPTRT/theme-sniffer\">Theme Sniffer</a> plugin, which was a useful tool for theme authors to check their theme against the WPThemeReview coding standards. He did not have the help from the larger theme developer community to continue working on it. Developers can still use the CLI to check their themes. The plugin was a nice stepping stone for theme authors who are less savvy at typing commands, but projects live and die based on participation.</p>\n\n\n\n<p>The team representatives want to bring new contributors to the team. &ldquo;Reviewing themes is an exhausting and complicated process,&rdquo; said &#381;oljom, &ldquo;and, unfortunately, most people give up very fast.&rdquo; The team also needs fresh blood so that it can rotate through reps. Few people have the necessary experience to fill this role, and the current reps will eventually burn out.</p>\n\n\n\n<p>&ldquo;We want to work on more interesting projects that will bring new people who are willing to help with them,&rdquo; said &#381;oljom. &ldquo;Especially around full-site editing that is coming to core soon. It&rsquo;s a big change, and the more contributors we have to help and test things the better.&rdquo;</p>\n\n\n\n<h2>The Evolving Team</h2>\n\n\n\n<p class=\"has-drop-cap\">Ari Stathopoulos, the theme packages representative, pointed out the elephant in the room. The name of the team represented a public perception issue. In part, the team name did not make an appealing case for a newcomer to join the team. On the other side of the aisle, it meant the team was sometimes left out on the .ORG side of things, such as not being brought in on key decisions that affect themes.</p>\n\n\n\n<p>&ldquo;People don&rsquo;t know that we do all the things we do,&rdquo; said Stathopoulos. &ldquo;They believe that all this team does is reviews because that&rsquo;s what the name of the team was. The truth is that if something has to do with themes, we work on it. There are cases that we don&rsquo;t, but that&rsquo;s usually because of miscommunication. People don&rsquo;t think of consulting with &lsquo;reviewers&rsquo; before making changes that have an impact on themes. Hopefully, this re-branding of the team will eventually lead to better communication and understanding. It may take some time, but we&rsquo;ll get there.&rdquo;</p>\n\n\n\n<p>The Themes Team is beginning to take on even more responsibility. It has been holding <a href=\"https://wptavern.com/key-takeaways-from-the-first-future-of-themes-meeting\">block-based themes meetings</a> every two weeks in an attempt to keep everyone updated with the rapid theme-related changes happening in the Gutenberg project. The Make Themes blog will also be <a href=\"https://make.wordpress.org/themes/2020/05/15/gutenberg-themes-week-of-may-11-2020/\">receiving weekly updates</a> to help those who are unable to attend the meetings and offer another line of communication.</p>\n\n\n\n<p>Arguably, the Themes Team will become one of the most important teams over the next year or so. It must bring in new volunteers to help the community transition to a different theme development experience.</p>\n\n\n\n<p>&ldquo;There is a definite shift of focus, and future themes should be easier to review, leaving this team more time and energy to focus on actions that will have more impact for the community,&rdquo; said Stathopoulos. &ldquo;So changing the name was not only correcting an old mistake but also paving the way for future actions we want to take.&rdquo;</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, 18 May 2020 19:29: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:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:85:\"WPTavern: iA Writer Adds Expanded Support for IndieWeb Tools and WordPress 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=99636\";s:7:\"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:215:\"https://wptavern.com/ia-writer-adds-expanded-support-for-indieweb-tools-and-wordpress-publishing?utm_source=rss&utm_medium=rss&utm_campaign=ia-writer-adds-expanded-support-for-indieweb-tools-and-wordpress-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:2360:\"<img />\n\n\n\n<p><a href=\"https://ia.net/\">iA Writer</a> has been delighting users with its minimal writing experience for nearly a decade, racking up more than 3 million downloads. The most recent <a href=\"https://ia.net/writer/blog/new-pdf-preview-better-web-publishing-improved-editing\">version 5.5</a> release for Mac and iOS moves the bar higher for competing writing apps with new support for previewing PDFs and improved support for publishing to self-hosted WordPress sites.</p>\n\n\n\n<p>In 2019, MacStories selected iA Writer as <a href=\"https://www.macstories.net/stories/macstories-selects-2019-recognizing-the-best-apps-of-the-year/\">App of the Year</a>, describing it as &ldquo;a case study on how to build a desktop-class iOS/iPadOS app in 2019 that understands the traits of each platform while offering an opinionated, sophisticated design at the same time.&rdquo; MacStories&rsquo; writeup details many reasons why the app continues to find success in 2020.</p>\n\n\n\n<p>This week&rsquo;s update introduces support for Micropub, which allows users to publish to Micro.blog and other IndieWeb tools. It also expands the availability of the the IndieAuth system for publishing to WordPress. Users are no longer limited to using Jetpack to authenticate their self-hosted sites. </p>\n\n\n\n<p>iA Writer users can now use the more lightweight <a href=\"https://wordpress.org/plugins/indieauth/\">IndieAuth plugin</a> to publish to their self-hosted sites. The plugin acts as an extension to OAuth, allowing the user&rsquo;s website to be their own OAuth server. This option is helpful for iA Writer users who were <a href=\"https://steven.brokaw.org/posts/ulysses-vs-ia-writer\">reluctant to install Jetpack</a> just to hook up their accounts for publishing. </p>\n\n\n\n<p>Continued support for WordPress publishing comes as no surprise, not just because of its ubiquity on the web, but also because the <a href=\"https://ia.net/\">iA company website</a> and blog rely on WordPress. </p>\n\n\n\n<p>iA Writer 5.5 also improves account management for connected services, allowing for the use and reordering of multiple accounts for WordPress, Medium, Ghost and Micropub. Check out the <a href=\"https://ia.net/writer/blog/new-pdf-preview-better-web-publishing-improved-editing\">release</a> post for a more detailed look at the Mac and iOS-specific updates in this release.</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, 15 May 2020 21:46: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:\"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:92:\"WPTavern: Gutenberg 8.1 Includes Block Copying, Testimonials Pattern, and Patterns UI Update\";s:7:\"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=99703\";s:7:\"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:225:\"https://wptavern.com/gutenberg-8-1-includes-block-copying-testimonials-pattern-and-patterns-ui-update?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-8-1-includes-block-copying-testimonials-pattern-and-patterns-ui-update\";s: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:6337:\"<p class=\"has-drop-cap\">On Wednesday, the Gutenberg team <a href=\"https://make.wordpress.org/core/2020/05/13/whats-new-in-gutenberg-13-may/\">released version 8.1.0</a> of the plugin. The update includes a new block-copying feature, block pattern search, testimonials pattern, and API changes. The new version does not add a lot of major user-facing changes but improves the experience overall.</p>\n\n\n\n<p>The update included two dozen bug fixes and nearly as many enhancements. This release feels more like a solid update that addresses many minor items and nit-picks, such as the <a href=\"https://github.com/WordPress/gutenberg/pull/22082\">addition of black and white colors</a> for the default color palette.  The ability to <a href=\"https://github.com/WordPress/gutenberg/pull/21758\">paste a document into the post title input</a>, which gets transformed into proper blocks, works great too.</p>\n\n\n\n<p>One nice improvement is the ability to <a href=\"https://github.com/WordPress/gutenberg/pull/21779\">transform the HTML block to the Code block</a> and vice versa. File this one under <em>why has this not already been possible?</em></p>\n\n\n\n<p>If you are following along with the Gutenberg plugin, there are some definite improvements to look forward to in this release, particularly around the block patterns feature.</p>\n\n\n\n<h2>Copy Blocks with Ease</h2>\n\n\n\n<img />Copying a pullquote block.\n\n\n\n<p class=\"has-drop-cap\">Admittedly, this is quickly becoming one of my favorite features of Gutenberg 8.1. The editor toolbar now has a copy button, which allows end-users to <a href=\"https://github.com/WordPress/gutenberg/pull/22214\">copy one or more blocks</a> at the click of a button. It is tucked under the &ldquo;more rich text controls&rdquo; dropdown menu.</p>\n\n\n\n<p>To use the new copy feature, simply select the block or blocks you want to copy. Then, click the copy button. From that point, the block can be pasted back into the editor.</p>\n\n\n\n<p>For theme authors, plugin developers, or anyone who wants to share the code for a block, copying a block also produces the HTML that can be pasted into a text editor. No more switching to the code view of the editor and hunting down the HTML you want to copy. For example, the pullquote copied from the post in the above screenshot produced the following HTML when pasting into my text editor:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!-- wp:pullquote {\"align\":\"wide\"} --&gt;\n&lt;figure class=\"wp-block-pullquote alignwide\"&gt;&lt;blockquote&gt;&lt;p&gt;&lt;span class=\"rtex-highlighter-0\"&gt;What has the Duke of Devonshire? The only great instance that I have ever known of the enjoyment of wealth was, that of Jamaica Dawkins...&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/figure&gt;\n&lt;!-- /wp:pullquote --&gt;</code></pre>\n\n\n\n<p>This should make it easy for developers to copy the code of their custom block patterns.</p>\n\n\n\n<h2>Testimonials Pattern</h2>\n\n\n\n<img />New pattern for testimonials.\n\n\n\n<p class=\"has-drop-cap\">The team added to its growing collection of block patterns with the addition of the <a href=\"https://github.com/WordPress/gutenberg/pull/20894\">Testimonials pattern</a>. The new pattern brings the library to eight in total. It is unclear which patterns will launch when the feature lands in WordPress core. It is still under heavy development and is experimental.</p>\n\n\n\n<p>The Testimonials pattern is one of the more complex patterns the team has introduced. It is a mix of groups, columns, images, and paragraphs. At points, the blocks are six levels deep.</p>\n\n\n\n<p>Overall, it worked well among the various themes I tested it against with custom block styles. Visually, it is not inspiring, at least in comparison to what a good designer can do with a testimonials section, but it is a solid stepping stone on the way to more interesting layouts.</p>\n\n\n\n<h2>Inserter UI Adds Search and Titles</h2>\n\n\n\n<img />Search for block patterns via the inserter section.\n\n\n\n<p class=\"has-drop-cap\">Crossing off two out of three big wish list items from my <a href=\"https://wptavern.com/gutenberg-8-0-merges-block-and-pattern-inserter-adds-inline-formats-and-updates-code-editor\">Gutenberg 8.0</a> post, the team added search functionality and reintroduced the pattern titles below each pattern in the inserter. These are major improvements. The only item left on my list is for the team to introduce a categorization system for patterns.</p>\n\n\n\n<p>The search box switches from searching for blocks to patterns once clicking on the patterns tab. The one issue is the search label and placeholder reads &ldquo;Search for a block&rdquo; in both instances. Instead, it should read &ldquo;Search for a pattern&rdquo; when searching patterns.</p>\n\n\n\n<p>With my wish list nearly fulfilled for block patterns, I have one more item to add. I would like to see the team introduce slash commands to insert patterns. Typing <code>/testimonials</code> should provide users the option to insert the new Testimonials pattern without clicking the inserter button.</p>\n\n\n\n<h2>Developers: Block Patterns API Changes</h2>\n\n\n\n<p class=\"has-drop-cap\">The Block Patterns API methods of <a href=\"https://github.com/WordPress/gutenberg/pull/21970\">registering and unregistering patterns</a> have changed. In previous versions, developers used the <code>register_pattern()</code> and <code>unregister_pattern()</code> functions. These have been deprecated. Beginning with 8.1.0, developers should update their code to use the <code>register_block_pattern()</code> and <code>unregister_block_pattern()</code> functions.</p>\n\n\n\n<p>This API change is welcome. It is needed for clarity. However, this sort of API change, even on an experimental feature, is one of the many things that <a href=\"https://wptavern.com/where-gutenberg-went-wrong-theme-developer-edition\">frustrates developers</a> who are attempting to keep up with the project. It is especially frustrating when the discussion was originally opened when the feature was <a href=\"https://github.com/WordPress/gutenberg/pull/21074\">first merged</a>. Naming things is hard. It is one of the hardest things to do in programming, but good naming schemes can also be the difference between great software and poor software. There should be more careful thought and thorough explanations when these issues pop up in tickets.</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, 15 May 2020 20:04: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:66:\"WPTavern: Google Patches Critical Vulnerability in Site Kit Plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=99654\";s:7:\"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:177:\"https://wptavern.com/google-patches-critical-vulnerability-in-site-kit-plugin?utm_source=rss&utm_medium=rss&utm_campaign=google-patches-critical-vulnerability-in-site-kit-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2865:\"<p>In late April Wordfence discovered a critical vulnerability in <a href=\"https://wordpress.org/plugins/google-site-kit/\">Google&rsquo;s Site Kit plugin for WordPress</a> that would make it possible for any user on the site to gain full access to the Google Search Console without verifying ownership. Google patched the vulnerability and released the fix in version 1.8.0 on May 7, 2020.</p>\n\n\n\n<p>Wordfence <a href=\"https://www.wordfence.com/blog/2020/05/vulnerability-in-google-wordpress-plugin-grants-attacker-search-console-access/\">published</a> a timeline of the vulnerability, describing it as a proxySetupURL disclosure: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>In order to establish the first connection with Site Kit and Google Search Console, the plugin generates a proxySetupURL that is used to redirect a site&rsquo;s administrator to Google OAuth and run the site owner verification process through a proxy. Due to the lack of capability checks on the admin_enqueue_scripts action, the proxySetupURL was displayed as part of the HTML source code of admin pages to any authenticated user accessing the /wp-admin dashboard.</p></blockquote>\n\n\n\n<p>The other aspect of the vulnerability is related to the site ownership verification request, which used a registered admin action that was missing capability checks. As a result, any authenticated WordPress user was capable of initiating the request. </p>\n\n\n\n<p>Wordfence identified several ways a malicious attacker might use this vulnerability to the detriment of the site&rsquo;s ranking and reputation, including manipulating search engine results, requesting removal of a competitor&rsquo;s URLs from the search engine, modifying sitemaps, viewing performance data, and more.</p>\n\n\n\n<p>The security fixes are not detailed in the plugin&rsquo;s <a href=\"https://github.com/google/site-kit-wp/releases/tag/1.8.0\">changelog on GitHub</a>. It does, however, include a note at the top that states, &ldquo;This release includes security fixes. An update is strongly recommended.&rdquo; Google has not published a post to notify users on the <a href=\"https://sitekit.withgoogle.com/news/\">news</a> section of the plugin&rsquo;s official website. Without Wordfence&rsquo;s public disclosure, users may not know about the importance of the update.</p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/google-site-kit/\">Google&rsquo;s Site Kit plugin</a> has more than 400,000 active installs, according to WordPress.org. Details of the 1.8.0 update are not available to users in the admin, since the plugin&rsquo;s changelog is hosted on GitHub. There is no way for users to know that the update includes security fixes without clicking through to research. Due to the great deal of sensitive information to which attackers could gain access, users are advised to update the plugin as soon as possible. </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, 14 May 2020 22:39:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:45:\"BuddyPress: BuddyPress 6.0.0 “iovine’s”\";s:7:\"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=311679\";s:7:\"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://buddypress.org/2020/05/buddypress-6-0-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9955:\"<p class=\"has-text-align-center\">This major release introduces the first two <strong>BuddyPress Blocks</strong>!!</p>\n\n\n\n<div class=\"wp-block-button aligncenter\"><a class=\"wp-block-button__link has-background no-border-radius\" href=\"https://downloads.wordpress.org/plugin/buddypress.6.0.0.zip\">Get BuddyPress 6.0.0</a></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>We are very excited to announce the immediate availability of <strong>BuddyPress 6.0.0</strong> code-named &#8220;<strong>iovine&#8217;s</strong>&#8220;. You can get it clicking on the above button, downloading it from the <a href=\"https://wordpress.org/plugins/buddypress/\">WordPress.org plugin directory</a> or checking it out from our <a href=\"https://buddypress.trac.wordpress.org/browser/branches/6.0\">Subversion repository</a>.</p>\n\n\n\n<p><em>If you&#8217;re upgrading from a previous version of BuddyPress, it&#8217;s always a good idea to back-up your WordPress database and files ahead of time.  </em></p>\n\n\n\n<p>You can review all of the changes in this 6.0.0 release in the <a href=\"https://codex.buddypress.org/releases/version-6-0-0/\">release notes</a>. Below are a few of the key features we know you are going to love!</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"has-text-align-center\">BP Blocks</h2>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://buddypress.org/wp-content/uploads/1/2020/05/bp-blocks.gif\" alt=\"\" class=\"wp-image-311685\" /></div>\n\n\n\n<p>BuddyPress 6.0.0 comes with two awesome new blocks for your WordPress Editor: Members and Groups. Made available from the BuddyPress blocks category of your WordPress Block menu, these lovely blocks let you insert a rich content block featuring a specific Member or Group from your community site inside any WordPress Post or Page.</p>\n\n\n\n<p>If you&#8217;re an Advanced BuddyPresser and wish to fine-tune the BuddyPress blocks for your community site, learn more in&nbsp;<a href=\"https://bpdevel.wordpress.com/2020/03/30/welcome-to-the-first-buddypress-blocks/#advanced-customizations\">this section of our development note</a>&nbsp;about these new blocks.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"has-text-align-center\">The BP REST API is now complete!</h2>\n\n\n\n<div><span class=\"dashicons dashicons-rest-api\"></span></div>\n\n\n\n<p>In 5.0.0, we introduced the first REST API endpoints and provided&nbsp;<a href=\"https://developer.buddypress.org/bp-rest-api/\">reference documentation</a>&nbsp;for them. In 6.0.0, we are adding the 6 remaining endpoints you were waiting for: Blogs, Blog avatar, Friends, Group Cover Image, Member Cover Image, and User Signups. You can now build full-featured applications using the BuddyPress REST API!</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"has-text-align-center\">BP Nouveau has been improved</h2>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://buddypress.org/wp-content/uploads/1/2020/05/bp-nouveau-wide-aligns.png\" alt=\"\" class=\"wp-image-311692\" /></div>\n\n\n\n<p>Does your theme support wide layouts? Awesome! The BP Nouveau template-pack now supports wide (and really, really wide) content areas! This is the first of the many improvements we are bringing to our default set of styling components. It never looked so beautiful in your theme.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"has-text-align-center\">Under the hood</h2>\n\n\n\n<div><span class=\"dashicons dashicons-admin-generic\"></span></div>\n\n\n\n<p>6.0.0 includes more than 80 changes to improve your BuddyPress experience as users, as contributors to our code and as contributors to our translations. The biggest change moves local avatar management to the Members component. Read more about it in&nbsp;<a href=\"https://bpdevel.wordpress.com/2020/03/01/the-profile-photo-cover-image-features-belong-to-members/\">this development note</a>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"has-text-align-center\">We want to hear your voice</h2>\n\n\n\n<div><span class=\"dashicons dashicons-microphone\"></span></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons aligncenter\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-color has-background no-border-radius\" href=\"https://mercime.survey.fm/2020-buddypress-survey\"><strong>Take the&nbsp;2020 BuddyPress Survey.</strong></a></div>\n</div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>Knowing how you use BuddyPress and getting your point of view about future BuddyPress development is very important to us. Please, take some time to help us decide what&#8217;s best for the BuddyPress project.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"has-text-align-center\">Many thanks to our 42 contributors to 6.0.0</h2>\n\n\n\n<div><span class=\"dashicons dashicons-buddicons-buddypress-logo\"></span></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>This BuddyPress release is only possible thanks to the contributions of the community. Special thanks to the following folks who contributed code, translations, and testing to the release: <a href=\"https://profiles.wordpress.org/oztaser\">Adil Oztaser (oztaser)</a>, <a href=\"https://profiles.wordpress.org/wpamitkumar\">Amit Dudhat (wpamitkumar)</a>, <a href=\"https://profiles.wordpress.org/dontdream\">Andrea Tarantini (dontdream)</a>, <a href=\"https://profiles.wordpress.org/ankitmaru\">Ankit Panchal (ankitmaru)</a>, <a href=\"https://profiles.wordpress.org/passoniate\">Arslan Ahmed (passoniate)</a>, <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone B Gorges (boonebgorges)</a>, <a href=\"https://profiles.wordpress.org/sbrajesh/\">Brajesh Singh (sbrajesh)</a>, <a href=\"https://profiles.wordpress.org/bhargavbhandari90\">Bunty (bhargavbhandari90)</a>, <a href=\"https://profiles.wordpress.org/dancaragea/\">Dan Caragea (dancaragea)</a>, <a href=\"https://profiles.wordpress.org/dcavins/\">David Cavins (dcavins)</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/etatus\">etatus</a>, <a href=\"https://profiles.wordpress.org/fayazgabol\">Fayaz Gabol (fayazgabol)</a>, <a href=\"https://profiles.wordpress.org/hnla\">Hugo Ashmore (hnla)</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras (audrasjb)</a>, <a href=\"https://profiles.wordpress.org/jenfraggle/\">Jennifer Burnett (jenfraggle)</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby (johnjamesjacoby)</a>, <a href=\"https://profiles.wordpress.org/greenshady\">Justin Tadlock (greenshady)</a>, <a href=\"https://profiles.wordpress.org/kashifgabol\">Kashif Gabol(kashifgabol)</a>, <a href=\"https://profiles.wordpress.org/laudag\">laudag</a>, <a href=\"https://profiles.wordpress.org/marbaque/\">Mario Badilla (marbaque)</a>, <a href=\"https://profiles.wordpress.org/imath/\">Mathieu Viet (imath)</a>, <a href=\"https://profiles.wordpress.org/mattjones2207\">mattjones2207</a>, <a href=\"https://profiles.wordpress.org/mercime\">mercime</a>, <a href=\"https://profiles.wordpress.org/mo3aser\">mo3aser</a>, <a href=\"https://profiles.wordpress.org/modemlooper\">modemlooper</a>, <a href=\"https://profiles.wordpress.org/man4toman\">Morteza Geransayeh (man4toman)</a>, <a href=\"https://profiles.wordpress.org/mukesh27\">Mukesh Panchal (mukesh27)</a>, <a href=\"https://profiles.wordpress.org/DJPaul/\">Paul Gibbs (DJPaul)</a>, <a href=\"https://profiles.wordpress.org/pooja1210\">Pooja N Muchandikar (pooja1210)</a>, <a href=\"https://profiles.wordpress.org/r-a-y/\">r-a-y</a>, <a href=\"https://profiles.wordpress.org/espellcaste/\">Renato Alves (espellcaste)</a>, <a href=\"https://profiles.wordpress.org/santiazpi2\">santiazpi2</a>, <a href=\"https://profiles.wordpress.org/shanebp\">shanebp</a>, <a href=\"https://profiles.wordpress.org/sharaz\">Sharaz Shahid (sharaz)</a>, <a href=\"https://github.com/sjregan\">sjregan</a>, <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar (netweb)</a>, <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister (karmatosed)</a>, <a href=\"https://profiles.wordpress.org/tobifjellner\">Tor-Bjorn Fjellner (tobifjellner)</a>, <a href=\"https://profiles.wordpress.org/itowhid06\">Towhidul Islam (itowhid06)</a>, <a href=\"https://profiles.wordpress.org/twmcmahan\">twmcmahan</a>, <a href=\"https://profiles.wordpress.org/zishanj\">Zishan (zishanj)</a>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile is-vertically-aligned-center\"><img src=\"https://buddypress.org/wp-content/uploads/1/2020/05/iovines.jpg\" alt=\"\" class=\"wp-image-311706\" /><div class=\"wp-block-media-text__content\">\n<h2 class=\"has-text-align-center\">BuddyPress <a href=\"https://iovines.com/\"><em>iovine&#8217;s</em></a></h2>\n\n\n\n<p>If you come to Paris (France), you&#8217;ll probably want to visit the Louvre Museum. The greatest Pizza restaurant around is Nicola Iovine&#8217;s place. You&#8217;ll fall in love with how he cares to respect culinary traditions, share authentic flavors, select great quality products imported from Italy and use the real neapolitan pizza dough.</p>\n\n\n\n<p>Simply delicious, just like BuddyPress 6.0.0 <img src=\"https://s.w.org/images/core/emoji/12.0.0-1/72x72/1f609.png\" alt=\"😉\" class=\"wp-smiley\" /> </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-small-font-size\"><em>Photo credits: <a href=\"https://iovines.com/\">iovine&#8217;s</a></em></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"has-text-align-center\">Feedback is always welcome &lt;3</h2>\n\n\n\n<div><span class=\"dashicons dashicons-megaphone\"></span></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>Receiving your feedback and suggestions for future versions of BuddyPress genuinely motivates and encourages our contributors. Please share&nbsp;your&nbsp;feedback about this version of BuddyPress in the comments area of this post. And of course, if you&#8217;ve found a bug: please tell us about it into our <a href=\"https://buddypress.org/support/\">Support forums</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, 14 May 2020 22:30:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:65:\"WPTavern: Envato Launches Template Kits Marketplace for Elementor\";s:7:\"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=99632\";s:7:\"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:175:\"https://wptavern.com/envato-launches-template-kits-marketplace-for-elementor?utm_source=rss&utm_medium=rss&utm_campaign=envato-launches-template-kits-marketplace-for-elementor\";s: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:6906:\"<p class=\"has-drop-cap\">Watch out <a href=\"https://wptavern.com/block-patterns-will-change-everything\">block patterns</a>. There is an old player in town making the hard sell before you have even rolled out of bed. Envato just <a href=\"https://envato.com/template-kits/\">dropped a massive library of template kits</a> for Elementor in your front yard.</p>\n\n\n\n<p>Not to worry, the company plans to open things up for the block editor in the future. The <a href=\"http://elementor.com/\">Elementor page builder</a> just makes the most sense right now. It was the first to market. It is mature and has a backing of <a href=\"https://twitter.com/elemntor/status/1260168009378934785\">5 million users</a>, many of whom will be accustomed to commercial upsells, and <a href=\"https://wptavern.com/elementor-raises-15-million-plans-to-invest-in-the-team-product-and-community\">$15 million in recent funding</a>. Financially, it is the smart play. The company can also test the waters of this new category of products before opening it to other page builders and the block editor in a proven market.</p>\n\n\n\n<p>Envato, the company behind ThemeForest and other marketplaces for creators, <a href=\"https://envato.com/blog/template-kits-wordpress-envato/\">launched over 200 template kits today</a> to its large audience of end-users and site builders. The kits cover a wide range of niches. Everything from book authors to medical practices to restaurants is covered.</p>\n\n\n\n<p>&ldquo;Launching template kits is our latest response to the growing demand for page builders and customers looking for design inspiration that is simple and easy to apply to their website,&rdquo; said Cameron Gough, General Manager of Envato&rsquo;s Content team.</p>\n\n\n\n<p>While this is not an official partnership between Envato and Elementor, at least not on paper, it further broadens the appeal of the Elementor page builder. It is sure to spur massive growth beyond its current 5 million users. If there is one thing Envato knows how to do and do well, it is selling products. When we questioned <a href=\"https://wptavern.com/will-page-builders-remain-competitive-in-the-block-era\">whether page builders would be able to compete</a> in the long term with the block editor, the largest third-party theme marketplace is betting at least this one particular page builder can.</p>\n\n\n\n<p>The marketplace is completely open. &ldquo;We&rsquo;re encouraging new and existing authors in the Envato community to create their own template kits and upload them,&rdquo; said Gough. &ldquo;It&rsquo;s a great way to break into this market, especially at this early point.&rdquo;</p>\n\n\n\n<p>For site designers who have worked with Elementor, now is a great opportunity to submit a kit. You can set your own price &mdash; most kits range between $15-$30. The great thing is that designers are not responsible for building a full WordPress theme from scratch. Instead, they can essentially create multiple templates with a page builder, bundle them via the <a href=\"https://wordpress.org/plugins/template-kit-export/\">Template Kit &ndash; Export</a> plugin, and cash in.</p>\n\n\n\n<p>The interesting aspect here is that people with an eye for design and the skillset to build those designs in Elementor can sell their creations without learning to code.</p>\n\n\n\n<h2>What Are Template Kits?</h2>\n\n\n\n<div>\n\n</div>Template kits walk-through.\n\n\n\n<p>&ldquo;A template kit is a collection of page and block templates or layouts, each with a similar visual style and typically focused on a particular niche,&rdquo; said Gough. &ldquo;See some of the examples in our launch collection like a restaurant, or a gym, or a web/design agency. You could liken it sort of the demo content layer that you can find in some premium themes.&rdquo;</p>\n\n\n\n<p>Currently, end-users must have a theme installed that integrates with the Elementor page builder for these template kits to work. After purchasing and downloading a kit, users can simply upload templates to their sites via the <a href=\"https://wordpress.org/plugins/template-kit-import/\">Template Kit &ndash; Import</a> plugin.</p>\n\n\n\n<p>Kits are merely a starting point. Users will need to fill in their custom content. They also have the power to change the design through Elementor&rsquo;s built-in tools.</p>\n\n\n\n<p>Envato launched the <a href=\"https://themeforest.net/category/template-kits/elementor\">template kits marketplace</a> on its ThemeForest website. The current 200+ kits are broken down into 22 categories, the most popular of which are Business Services, Food and Drink, and Technology Apps.</p>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><img /></li><li class=\"blocks-gallery-item\"><img /></li><li class=\"blocks-gallery-item\"><img /></li><li class=\"blocks-gallery-item\"><img /></li><li class=\"blocks-gallery-item\"><img /></li></ul>Example template kit screenshots.\n\n\n\n<p>Sales are already starting to roll in on launch day. There are no clear favorites at the moment with the top sellers hitting only two sales thus far. This should change in the coming days and weeks. The highest-priced kits tend to contain dozens of templates. Some kits, like <a href=\"https://themeforest.net/item/spring-watercolor-and-floral-template-kit/25853973\">Spring Watercolor and Floral</a>, contain over 100 in the collection.</p>\n\n\n\n<p>&ldquo;We know many WordPress professionals that want a pre-packaged, fully functional website template may continue to favor our existing collection of WordPress themes,&rdquo; said Gough. &ldquo;But we increasingly see customers wanting to develop websites from a page builder foundation rather than a full WordPress theme. For these customers, template kits provide a leg up on design, and it&rsquo;s important we continue to support those changing needs.&rdquo;</p>\n\n\n\n<p>For the launch, there is at least one free template kit called <a href=\"https://themeforest.net/item/saasy-saas-app-landing-page-template-kit/26027930\">SaaSy</a>. It is a SaaS and app landing page kit that includes 10 page templates and 26 block templates. It will be available for free until May 31.</p>\n\n\n\n<img />SaaSy Template Kit &ndash; <a href=\"https://themeforest.net/item/saasy-saas-app-landing-page-template-kit/full_screen_preview/26027930\">Live Preview</a>\n\n\n\n<p>&ldquo;We know that the WordPress world continues to evolve and respond exceptionally well to the changing needs of the wider web design industry, and you only have to look at Gutenberg as one example of how the platform is evolving to meet the increasing demand for easier tools that provide a leg up on website design,&rdquo; said Gough.</p>\n\n\n\n<p>&ldquo;Couple this with the strength of page builders such as Elementor and others, plus a vibrant and active community of developers, hosting providers, and more, we think there&rsquo;s never been a better time to provide a new and easier way to bring WordPress websites to life.&rdquo;</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, 14 May 2020 20:03:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:114:\"WPTavern: WordPress Contributor Andy Fragen Shares His Experience as a Trauma Surgeon During the COVID-19 Pandemic\";s:7:\"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=99619\";s:7:\"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:273:\"https://wptavern.com/wordpress-contributor-andy-fragen-shares-his-experience-as-a-trauma-surgeon-during-the-covid-19-pandemic?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-contributor-andy-fragen-shares-his-experience-as-a-trauma-surgeon-during-the-covid-19-pandemic\";s: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:3546:\"<img />\n\n\n\n<p>Last weekend I had the opportunity to interview <a href=\"https://thefragens.com/\">Andy Fragen</a>, a longtime member of the WordPress community and core contributor. He is also the author of the <a href=\"https://github.com/afragen/github-updater\">GitHub Updater</a> plugin, which allows developers to enable automatic updates to their GitHub, Bitbucket, GitLab, or Gitea hosted WordPress plugins, themes, and language packs. In the video below, Fragen gives us a window into his world on the frontlines as an acute care surgeon.</p>\n\n\n\n<p>After working his shifts at the hospital, Fragen returns home and voluntarily keeps himself in semi-isolation from his wife and kids. He spends his time <a href=\"https://thefragens.com/plugins/\">working on his plugins</a> and contributing to WordPress. In addition to improving GitHub Updater, he also recently became a maintainer for the core Site Health component and the WordPress Beta Tester plugin.</p>\n\n\n\n<p>&ldquo;I look at computer programming and stuff like that as puzzle solving,&rdquo; Fragen said. &ldquo;It&rsquo;s an interesting way to occupy time and figure out something to do. We have a little aphorism in surgery: the enemy of good is better. I don&rsquo;t necessarily stick to that in plugin development, because otherwise we&rsquo;d be at a standstill. Things would never get better and never improve.&rdquo;</p>\n\n\n\n<p>During normal times when there isn&rsquo;t a pandemic going on, Fragen enjoys attending local WordCamps in LA, Orange County, Riverside, San Diego, and Phoenix. When he first started getting involved with WordPress he decided if he was ever going to meet any of the people who make the software, he would have to get involved in some community events. He started sponsoring WordCamps so he could have the opportunity to meet the speakers and contributors, and then he was hooked. </p>\n\n\n\n<p>When he&rsquo;s not stitching people back together, Fragen can be sometimes be found leading the the core Site Health meeting. He tries to pop into the core development meeting when his schedule permits. </p>\n\n\n\n<p>Durning our interview Fragen offered some good tips on navigating the many claims and conspiracy theories that are swirling around with the pandemic. The rampant misinformation campaigns have so far not affected his outlook as a healthcare worker.</p>\n\n\n\n<p>&ldquo;For the most part, when we&rsquo;re working, we&rsquo;re working, and we don&rsquo;t necessarily pay attention to all the extraneous things that are going on around,&rdquo; he said. &ldquo;You&rsquo;re in the moment and doing what you need to do to get the work done and take care of the patient.&rdquo;</p>\n\n\n\n<p>It has been months since he has been able to hug his wife and kids, but Fragen is maintaining a sense of normal by continuing his hobbies in isolation. Despite the increased requirements for PPE and vigilance at work, he said his training has prepared him for this time.  </p>\n\n\n\n<p>&ldquo;It&rsquo;s amazing what you can get used to,&rdquo; Fragen said. &ldquo;A lot of these things affect people in different ways. For better or for worse, some of these things never bothered me. The training is hard enough. Because of that, you learn to adapt a little bit better, I guess. When there are things happening, as I like to say, &lsquo;If I&rsquo;m having a bad day, someone else is having a worse one.&rsquo; You are there to take care of them and to fix them as best they can be fixed, if they can be fixed.&rdquo;</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, 14 May 2020 05:11: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:\"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: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:64:\"Post Status: On static WordPress, with Miriam Schwab of Strattic\";s:7:\"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=78861\";s:7:\"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://poststatus.com/static-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:1112:\"<p>Miriam Schwab is co-founder and CEO of <a href=\"https://www.strattic.com/\">Strattic</a>, a business making a big bet on the future of WordPress — and in particular for using it to create static websites.</p>\n\n\n\n<p>They recently <a href=\"https://techcrunch.com/2020/02/26/strattic-raises-6-5m-to-bring-static-wordpress-to-the-masses/\">raised </a>$6.5 million dollars in an oversubscribed round. Strattic aims to enable the power and flexibility of a dynamic WordPress website like we all know, with the security and speed of a completely static website.</p>\n\n\n\n<p>In this interview, Cory Miller talks to Miriam about her journey to this moment, the Strattic product, raising money, and more.</p>\n\n\n\n\n\n\n\n<h3>Partner: <a href=\"https://poststatus.com/yoast\">Yoast</a></h3>\n\n\n\n<p>This episode is brought to you by Yoast, the best WordPress SEO solution, hands down. You can upgrade to Yoast SEO premium, or take advantage of their great bundles that include outstanding training resources so you can fully take advantage of all the awesome tools <a href=\"https://poststatus.com/yoast\">Yoast SEO</a> provides.</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, 13 May 2020 23:16: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: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: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:61:\"WPTavern: Where Gutenberg Went Wrong: Theme Developer Edition\";s:7:\"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=99568\";s:7:\"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:165:\"https://wptavern.com/where-gutenberg-went-wrong-theme-developer-edition?utm_source=rss&utm_medium=rss&utm_campaign=where-gutenberg-went-wrong-theme-developer-edition\";s: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:9283:\"<img />Themes with block editor styles on WordPress.org.\n\n\n\n<p class=\"has-drop-cap\">With full-site editing just around the bend, it is a fair question to ask whether the WordPress ecosystem is prepared for such a transition, particularly on the theme development side of things.</p>\n\n\n\n<p>It is no secret that theme developers have struggled to keep up with the barrage of changes between Gutenberg plugin updates and, ultimately, major WordPress versions. It is also a fair question to ask who is steering the ship. Where are the site developers, theme authors, and other designers who spend every day crafting the front end of the web? Where are the forward-thinking solutions that make sure the project maintains backward compatibility?</p>\n\n\n\n<p>There have been some efforts to mend the broken divide between the Gutenberg project and theme developers such as the fortnightly <a href=\"https://wptavern.com/key-takeaways-from-the-first-future-of-themes-meeting\">block-based themes meetings</a>. However, those meetings, by and large, are general updates on things the Gutenberg team has already developed or will ship soon. Those meetings are a good stepping stone toward better communication, but the project needs a project planner with both the vision of the future landscape and a sense of the day-to-day issues that theme authors contend with.</p>\n\n\n\n<p>The reality is that there are only 132 themes out of 7,455 that list <a href=\"https://wordpress.org/themes/tags/block-styles/\">block editor styles</a> as a feature in the official repository. We are a year and a half into the lifespan of the block editor officially merging into WordPress, yet the face of the platform is made up mostly of themes that have shoehorned some basic block styles into mediocre designs. The themes that truly stand out with full block-editor support are few and far between. Many of those are also bidding heavily on Elementor or other page builders.</p>\n\n\n\n<p>Whether you like the block editor is of little consequence when there is no buy-in from theme authors. Every week, I check the theme directory for new themes, hoping to find a hidden gem. Every week, I am disappointed to see new themes dropping in 2020 with no support for the block editor. There is an entire segment of users who might enjoy the editor if only they had something more than <a href=\"https://wordpress.org/themes/twentytwenty/\">Twenty Twenty</a> to play around with &mdash; it is a fine theme but is not everyone&rsquo;s <em>cup of tea</em>.</p>\n\n\n\n<img />ThemeForest&rsquo;s listing of block-styled themes.\n\n\n\n<p>ThemeForest sellers are besting free WordPress.org theme authors 18 to 1 in terms of support with over 2,300 themes listed as <a href=\"https://themeforest.net/attributes/gutenberg-optimized/yes\">Gutenberg-optimized</a>. Granted, themes from the massive marketplace are known to have every feature they can in an attempt to one-up the competition. Also, many of them either have built-in page builders or support third-party solutions.</p>\n\n\n\n<p>Still, for the flagship feature of the platform, end-users should expect something more from the official theme directory.  A third-party marketplace should not be the only game in town.  At the moment, much of the offerings on WordPress.org feel lackluster at best. The handful that go the extra mile, such as the <a href=\"https://wptavern.com/rosa-2-restaurant-theme-provides-a-frustrating-and-satisfying-experience\">Rosa 2</a> and <a href=\"https://wptavern.com/godaddys-go-wordpress-theme-offers-a-page-building-experience-via-the-block-editor\">Go</a> themes, have mature businesses funding the effort.</p>\n\n\n\n<ul><li class=\"blocks-gallery-item\"><img /><a href=\"https://wptavern.com/rosa-2-restaurant-theme-provides-a-frustrating-and-satisfying-experience\">Rosa 2 Theme</a></li><li class=\"blocks-gallery-item\"><img /><a href=\"https://wptavern.com/godaddys-go-wordpress-theme-offers-a-page-building-experience-via-the-block-editor\">Go Theme</a></li></ul>\n\n\n\n<p>There is some broken trust between theme authors and WordPress at the moment. Some shout it loudly (as folks can attest from WP Tavern comments section). Others are more quietly trying to figure all this out.</p>\n\n\n\n<p>Even Carolina Nymark, one of the representatives for the official Themes Team, shared some concern. &ldquo;How do all of you theme authors keep up with the changes to Gutenberg?&rdquo; she <a href=\"https://twitter.com/carolinapoena/status/1255324873137762306\">asked in a tweet</a>. When the team leads are not up to speed, it is not good for the project as a whole.</p>\n\n\n\n<p>&ldquo;I don&rsquo;t,&rdquo; <a href=\"https://twitter.com/andersnoren/status/1256535507426856960\">replied Anders Nor&eacute;n</a>, the primary developer behind Twenty Twenty, to Nymark&rsquo;s question. &ldquo;I wait until something breaks (in the beta releases) and try to fix it then. Trying to support changes in the Gutenberg plugin while maintaining support for the block editor in Core is bad for your health.&rdquo;</p>\n\n\n\n<p>There is a major concern from theme authors about the future. It is hard to get excited about the current possibilities when there is uncertainty over what theme development will look like in 12 months. There is no clear and detailed roadmap about how things will work, and many theme designers feel like they are playing catchup from week to week. Instead, they should be able to more clearly look ahead and push early ideas into play.</p>\n\n\n\n<p>My ultimate fear is that the Themes Team will one day flip the switch and require all themes going into the directory to support the block editor like it had to do with the <a href=\"https://wptavern.com/wordpress-org-now-requires-theme-authors-to-use-the-customizer-to-build-theme-options\">customizer in 2015</a>. If theme authors do not organically make the transition such a day may come. The team will be stuck as the <em>bad guys</em> in the middle.</p>\n\n\n\n<h2>Where Do We Go from Here?</h2>\n\n\n\n<p class=\"has-drop-cap\">It is easy to identify some of the major pain points for theme authors. Changes between updates will inevitably break something with the theme design.</p>\n\n\n\n<p>Breaking HTML changes.</p>\n\n\n\n<p>Breaking CSS changes.</p>\n\n\n\n<p>Missing class names.</p>\n\n\n\n<p>Different methods of handling alignment, depending on the block.</p>\n\n\n\n<p>Dealing with inline styles after years of being taught to avoid them.</p>\n\n\n\n<p>All of these issues are roadblocks for theme authors. And, when things get in the way of theme authors doing their jobs, they trickle down to end-users.</p>\n\n\n\n<p>This is not the WordPress of the last decade. The WordPress that promised to not break things with updates. The WordPress where a one-off theme by a non-professional designer still worked four months later.</p>\n\n\n\n<p>The Gutenberg project is still in its infancy. It can be fun to play with, but it can also be messy. I am as much of an evangelist for the block editor as anyone, but I can recognize when there is a clear and present issue of trust between theme authors and the developers of the project.</p>\n\n\n\n<p>Currently, theme authors who are attempting to cover all of their bases are designing for at least a couple of versions of WordPress, multiple versions of Gutenberg, and the classic editor plugin. It is a dizzying array of testing for one theme. Those with a dozen or more themes&hellip;well, it is not an ideal situation.</p>\n\n\n\n<p>A holistic approach needs to be taken toward theme and site design. Theme authors need to see the details of the roadmap and contribute to it, carving the features they see as relevant into stone for the coming years. They need to know that the buttons block design they sweated over for hours this past week will <a href=\"https://github.com/WordPress/gutenberg/pull/21923\">continue working next week</a>.</p>\n\n\n\n<p>It all starts at the project management level.</p>\n\n\n\n<p>If a breaking HTML change needs to happen, theme authors need more than, &ldquo;X change needs to happen for Y feature to work.&rdquo; They need to see ownership of the mistake in the initial planning phase for X, backward-compatible code solutions, and a path toward fewer of the same mistakes happening.</p>\n\n\n\n<p>Theme designers still need some sort of <a href=\"https://wptavern.com/themes-of-the-future-a-design-framework-and-a-master-theme\">design framework</a>. The current utility classes are like a poor man&rsquo;s version of <a href=\"https://tailwindcss.com/\">Tailwind</a> that is being pieced together as the project adds new features without the foresight to look at the future landscape. Maybe the upcoming Global Styles feature can tackle that on a larger scale that provides compatibility across themes.</p>\n\n\n\n<p>Ultimately, there needs to be more communication between the Gutenberg team and theme authors who are building themes for the official WordPress theme directory. Perhaps there should even be a new team or sub-team formed focused solely on theming in the block era and working directly with Gutenberg developers to identify pain points. Whatever happens, someone needs to inspire the next generation of themes into being. Until then, most theme authors are stuck wondering what they will need to fix next.</p>\n\n\n\n<p><em>Up next: block/plugin development edition?</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:\"Wed, 13 May 2020 20:19: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:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:48:\"WPTavern: GitHub Adds Account Successors Feature\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=99556\";s:7:\"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:141:\"https://wptavern.com/github-adds-account-successors-feature?utm_source=rss&utm_medium=rss&utm_campaign=github-adds-account-successors-feature\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2635:\"<p>Yesterday, GitHub added a new setting to user-owned repositories called &ldquo;<a href=\"https://help.github.com/en/github/setting-up-and-managing-your-github-user-account/maintaining-ownership-continuity-of-your-user-accounts-repositories\">Account Successors</a>.&rdquo; It allows users to designate repository access to another user to maintain ownership continuity in the event of any kind of personal disruption.</p>\n\n\n\n<p>&ldquo;Open source maintainers, you can now invite a trusted user to manage your open source projects in the event that you are unable to do so yourself,&rdquo; GitHub Senior Product Manager Ben Balter said in an announcement on Twitter. &ldquo;Help ensure the future of your work (and the work of others) by inviting an account successor today.&rdquo;</p>\n\n\n\n<p>The new feature can be found under the Settings &raquo; Account &raquo; Successor Settings menu in GitHub.  Successors will not be given the ability to log into accounts but will have the following permissions:  </p>\n\n\n\n<ul><li>Archive your public repositories.</li><li>Transfer your public repositories to their own user owned account.</li><li>Transfer your public repositories to an organization where they can create repositories.</li></ul>\n\n\n\n<p>Successors cannot be set on a per-project or per-organization basis yet, but Balter said that is something GitHub would like to build.</p>\n\n\n\n<p>This new setting complements <a href=\"https://help.github.com/en/github/site-policy/github-deceased-user-policy\">GitHub&rsquo;s Deceased User Policy</a>, in which the company will work with the deceased person&rsquo;s next of kin, a pre-designated successor, or other authorized individual to determine the future of the account.</p>\n\n\n\n<p>GitHub began testing the Account Successors feature last week, taking suggestions from the greater community. Public <a href=\"https://twitter.com/benbalter/status/1258832842857029633\">feedback from testers</a> has been positive so far. Users hope not to need the feature anytime soon, though some said it is a real worry they have regarding their projects on GitHub. Setting up a successor is now the easy part, where identifying a trusted individual may prove more difficult for some.</p>\n\n\n\n<p>Account Successors is a timely addition to the platform, as the pandemic continues to sweep the globe, although the feature can be useful for many other types of scenarios.  Given the high fevers that can accompany COVID-19 and the rapid decline often associated with the worst outcomes, identifying a successor while still feeling healthy is an important precaution to ensure the continuity of your 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:\"Tue, 12 May 2020 22:51: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: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:77:\"WPTavern: Highlight, Underline, and Control Font Size with RichText Extension\";s:7:\"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=99566\";s:7:\"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:195:\"https://wptavern.com/highlight-underline-and-control-font-size-with-richtext-extension?utm_source=rss&utm_medium=rss&utm_campaign=highlight-underline-and-control-font-size-with-richtext-extension\";s: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:3560:\"<p class=\"has-drop-cap\">Last week, Tetsuaki Hamano contributed his first plugin to the official WordPress plugin repository. <a href=\"https://wordpress.org/plugins/richtext-extension/\">RichText Extension</a> grants additional options for inline text in the block editor.</p>\n\n\n\n<p>RichText is a component in the editor that allows end-users to add and edit text. Typically, users may think of this component when dealing with paragraphs. However, it also applies to headings, lists, quotes, image captions, and any other area where textual content can be added.</p>\n\n\n\n<p>Many plugins add settings on the block level. This means when you apply a particular style, it applies to the entire block. Inline text refers to the individual characters and words within the block. By default, WordPress allows end-users to control inline text by adding links, creating italic or bold characters, changing the text color, and more. <a href=\"https://wptavern.com/gutenberg-8-0-merges-block-and-pattern-inserter-adds-inline-formats-and-updates-code-editor\">Superscript and subscript inline options</a> have already landed in the Gutenberg plugin, which should ship with WordPress 5.5.</p>\n\n\n\n<p>RichText Extension extends the editor toolbar to add new options for highlighting, underlining, and changing the font size of inline text. It also adds an option to clear all formatting.</p>\n\n\n\n<p>Overall, the plugin is a solid outing for a first-time contributor to the plugin directory. With luck, we will get to see more of Hamano&rsquo;s work in the future.</p>\n\n\n\n<h2>Plugin Features</h2>\n\n\n\n<p class=\"has-drop-cap\">The primary feature of RichText Extension is its highlighter option, which allows users to highlight text. The plugin adds a paintbrush icon to the toolbar. Once clicked, it opens four highlighting options. By default, users can add a red or yellow marker effect or background directly behind a piece of text. This feature can be useful for adding a bit of flair to make specific words or characters to stand out.</p>\n\n\n\n<img />Using the marker highlight in a pullquote.\n\n\n\n<p>The plugin also adds a font size option to the toolbar. I am unsure how useful changing the font size for inline text is for the average end-user. Typically, this is best left to the block level. However, there may be some edge cases that others will want to use it for.</p>\n\n\n\n<p>Along with the core editor&rsquo;s inline options in the toolbar&rsquo;s dropdown menu, RichText extension adds Clear Format and Underline options. The former allows users to clear all inline formatting. The latter underlines text.</p>\n\n\n\n<p>Each of the plugin&rsquo;s features can be configured via the plugin&rsquo;s settings screen. Users can change the highlight colors, their thickness, and transparency. The four available font sizes can be adjusted. It also allows users to enable or disable each feature.</p>\n\n\n\n<img />RichText Extension&rsquo;s settings screen.\n\n\n\n<p>It would be nice to see the plugin&rsquo;s highlighting and font-size features use the theme-defined color palette and font sizes, respectively. The plugin could further allow users to define custom colors and sizes outside of those added by the theme.</p>\n\n\n\n<p>More than anything, I would like to see a fully-featured plugin tackle every conceivable inline text option with the ability to enable or disable each.  This would give end-users ultimate flexibility over how they write their content.  Perhaps RichText Extension can be that plugin in the future.  Otherwise, another developer may step in and do the job.</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, 12 May 2020 19:51: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:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:83:\"WPTavern: WordPress Accessibility Team to Host 24-Hour Online Event October 2, 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=99528\";s:7:\"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:209:\"https://wptavern.com/wordpress-accessibility-team-to-host-24-hour-online-event-october-2-2020?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-accessibility-team-to-host-24-hour-online-event-october-2-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:2464:\"<img />\n\n\n\n<p>The WordPress Accessibility Team is organizing a new online event called <a href=\"https://make.wordpress.org/accessibility/2020/05/07/announcing-the-first-wordpress-accessibility-day/\">WP Accessibility Day</a> that will take place on October 2, 2020. The event will feature 24 hours of educational sessions that focus on the intersection between WordPress and web accessibility. </p>\n\n\n\n<p>Inspired by the Polyglots&rsquo; Global Translation Day, which greatly <a href=\"https://wptavern.com/polyglots-team-experiences-record-annual-growth-expands-wordpress-reach-to-millions-with-new-translations\">expanded the team&rsquo;s base of contributors</a> and fueled a record number of translations, the Accessibility Team aims to raise awareness about its work. Organizers will be featuring a variety of topics, including theme and plugin accessibility, writing accessible content, accessibility testing, current standards, and more from a diverse group of global speakers.</p>\n\n\n\n<p>Accessibility consultant and WordPress contributor Joe Dolson proposed the event use a model similar to the <a href=\"https://inclusivedesign24.org/2019/\">ID24</a> (Inclusive Design 24) conference, with one 30-40 minute talk per hour. This format merges aspects of virtual WordCamps and WordSesh, running a single-track of sessions over the span of 24 hours with live emcees to manage interviews and Q&amp;A segments.</p>\n\n\n\n<p>Even though many events are going virtual due to the pandemic, accessibility contributors have been evaluating the possibility of hosting an online-only event <a href=\"https://wptavern.com/wordpress-contributors-explore-the-possibility-of-a-global-accessibility-event\">since mid-2019</a> and have been planning this one since December. The small size of the team and the travel expenses associated with larger WordCamps made it nearly impossible to scale the in-person collaboration happening at events.</p>\n\n\n\n<p><a href=\"https://wpaccessibilityday.org/\">WP Accessibility Day</a> has its own website where those who are interested can sign up to be notified about the call for speakers, sponsors, and other news. Organizers and volunteers are meeting in the #accessibility-events channel on WordPress&rsquo;Slack.  They will be discussing the event, along with other accessibility topics, during an online panel on Thursday, May 21st, 2020, for <a href=\"https://globalaccessibilityawarenessday.org/\">Global Accessibility Awareness Day</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, 11 May 2020 20:17:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:66:\"WPTavern: Simple Photoblogging with the Instapress WordPress Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=99532\";s:7:\"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:177:\"https://wptavern.com/simple-photoblogging-with-the-instapress-wordpress-theme?utm_source=rss&utm_medium=rss&utm_campaign=simple-photoblogging-with-the-instapress-wordpress-theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4059:\"<p class=\"has-drop-cap\">It is not often that I come across a free WordPress theme that instantly impresses me. Far too often, I spend half an hour or more just getting to know a theme, checking its options, and figuring out how long it will take to recreate something that looks remotely like the demo. However, every now and then I come across one of those diamonds in the rough that makes me a taker a deeper look.</p>\n\n\n\n<p><a href=\"https://wordpress.org/themes/instapress/\">Instapress</a> is one of those themes. It is yet another reason I am in favor of a <a href=\"https://wptavern.com/curated-list-of-featured-themes-coming-to-the-theme-directory\">curated featured themes list</a>. These types of unique themes tend to get lost in the crowd, and without the backing of a major company to market them, they usually go unnoticed by most WordPress users.</p>\n\n\n\n<p>What drew me to Instapress was its take on presenting posts on the front end. It is a photoblogging theme that is mostly good at showing individual photos but little else. It also has some of the old-school simplicity from the early WordPress theme era.</p>\n\n\n\n<p>Instapress is the first and only theme that Anton Lukin has submitted to the official WordPress theme directory. He runs the theme on his <a href=\"https://lukin.blog/\">personal blog</a>, in which he shares photos from the places he travels.</p>\n\n\n\n<h2>Beautiful Simplicity</h2>\n\n\n\n<p class=\"has-drop-cap\">The theme is truly a photoblogging-only theme. It is not ideal for long-form, textual content or many other types of sites. Fair warning: if your plan is to do anything other than post photos, you should look elsewhere.</p>\n\n\n\n<p>This narrow design is what makes the theme stand out. On the blog page and other archive-type pages, the theme presents the featured image with an interesting JSON-style output of the post metadata such as the date, title, and author.</p>\n\n\n\n<img />Posts page display from Instapress.\n\n\n\n<p>Instapress has a few customizer options. Along with a custom footer description, end-users can decide whether to show the post author and any custom meta in post summaries on blog and archive pages. Custom meta in this sense means all public custom fields, which may not be desirable for everyone, depending on what metadata is assigned to the post. However, it can be useful for photobloggers who include location data, such as latitude and longitude for their posts.</p>\n\n\n\n<p>As shown in the following screenshot, Lukin includes the coordinates on his post (<code>latlng</code>):</p>\n\n\n\n<img />Custom metadata from <a href=\"https://lukin.blog/baikal/\">Baikal post</a>.\n\n\n\n<p>Themes rarely get much simpler than Instapress. It is intentionally lightweight. The stylesheet comes in under 20 kb, which is what any photoblogger should look for in a theme. The theme should not be the bottleneck for page speed on image-heavy websites.</p>\n\n\n\n<h2>Areas to Improve</h2>\n\n\n\n<p class=\"has-drop-cap\">While being a fan of the theme, some small things could drastically improve its appeal to end-users. I would not want the theme to add too many extra options. Its simplicity is part of its charm. However, a couple of home/archive views that offer a wider photo layout or grid would add a nice touch without bloating the theme.</p>\n\n\n\n<p>Typically, I would deduct massive points for a theme that has no block editor styles, particularly in 2020. It is such a huge user base to leave out. But, the biggest loss for this theme is not taking advantage of the built-in, image-related blocks. They provide theme authors with a ton of design freedom. Throw in a few custom styles and you can do something special for photoblogs. Even just supporting wide and full-width alignment goes a long way in providing users better options for photos.</p>\n\n\n\n<p>The other missing piece of the puzzle for this theme is that it has no site title output. End-users can shoehorn it into the nav menu or customizable footer description, but it would be nice to see it as part of the theme header, even if disabled by default.</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, 11 May 2020 19:52: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:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:132:\"WPTavern: WordCamp Spain 2020 Q&amp;A: Matt Mullenweg Discusses Virtual Events, Decoupled WordPress, and the Future of Page Builders\";s:7:\"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=99452\";s:7:\"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:293:\"https://wptavern.com/wordcamp-spain-2020-qa-matt-mullenweg-discusses-virtual-events-decoupled-wordpress-and-the-future-of-page-builders?utm_source=rss&utm_medium=rss&utm_campaign=wordcamp-spain-2020-qa-matt-mullenweg-discusses-virtual-events-decoupled-wordpress-and-the-future-of-page-builders\";s: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:6424:\"<p>Matt Mullenweg joined Mat&iacute;as Ventura at WordCamp Spain yesterday for a lively Q&amp;A session. The virtual event drew 5,000 registered users, and attendees came prepared with some thought-provoking questions about the future of WordPress. Here are a few highlights on some recent topics of interest.</p>\n\n\n\n<p>WordCamps around the globe have been going virtual, embracing the challenge of keeping communities connected through the screen. Mullenweg shared thoughts on how WordCamps have changed during the pandemic and what might be worthwhile to maintain after things go back to normal:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>WordCamps were always exclusionary. If you couldn&rsquo;t make it to be in a physical point at a physical time, you couldn&rsquo;t be there. Tickets were cheap but travel and other costs could be expensive. To our mission of democratizing publishing, if we could radically open up some of the value of WordCamps, not just the talks because the talks you could always watch later online, but some of that person-to-person connection and relationship-building that would happen at WordCamps &ndash; if we can recreate that online I feel like that could be something that would be amazing for the WordPress community.  I feel like we used our in-person events as a crutch, actually. Because they were so good, and I love them, we overweighted towards them. This time allows us to reflect and also try new things that we might not have been pushed to otherwise. I hope that we don&rsquo;t stop any of these new things. I hope there are more WordCamp events in every language.</p></blockquote>\n\n\n\n<p>Large regional events like WordCamp Europe and WordCamp US will be going virtual in the coming months and it will be interesting to see how they work to reproduce the intimate, in-person connections that are often forged at these events. </p>\n\n\n\n<p>One of the first questions was regarding <a href=\"https://wptavern.com/frontity-raises-e1m-with-automattic-and-k-fund\">Automattic&rsquo;s recent investment in Frontity</a>.  Does Automattic&rsquo;s interest mean that React might be implemented in the public part of WordPress? Mullenweg highlighted a few of the positive and negative aspects of decoupled WordPress setups but also confirmed that a React frontend is not on the roadmap for core:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>I&rsquo;m excited to be able to support Frontity. Automattic tries to support as many of the WordPress ecosystem companies as possible. If there is a company doing something interesting in WordPress, we would love to invest and support it. In terms of a React theme in default WordPress, I think that to me that stays in plugin and theme territory for the foreseeable future. The downside of that approach is that you lose all the capabilities of the decades of WordPress plugins and themes and integrations and everything when you move to that more decoupled React frontend. I don&rsquo;t know if what you gain is that much better for a normal content website. In fact, so many single page applications in React when they get to version 2 or 3 usually work on server side rendering. We have server side rendering by default, and it&rsquo;s really fast and really good, especially when you layer in AMP or some other things that can speed it up. It can actually be probably the best possible thing for content driven sites, the best practice, versus application driven sites where something like React might be better. If you take a really optimized PHP-served AMP page, performance-wise versus the same thing going through React, it&rsquo;s hard for me to imagine the React page being faster. In fact, I think it would be much slower. That&rsquo;s how I think about the defaults. But for people who are building more advanced applications or have some sort of constraint on their website where they need the React frontend, I think the decoupled use case of WordPress is stronger than ever. I don&rsquo;t know why anyone would use a proprietary backend, like Contentful or something like that, when you have all the open source security, scalability, and robustness of WordPress available in a decoupled infrastructure as well.</p></blockquote>\n\n\n\n<p>Ventura noted that just because WordPress uses these technologies in the backend, doesn&rsquo;t mean it has to be used on the frontend as well. Based on these comments, it doesn&rsquo;t seem likely that WordPress will be adopting a React-based default theme anytime in the near future.</p>\n\n\n\n<p>The fate of page builders in the Gutenberg era is always a popular topic during Q&amp;A sessions and WordCamp Spain was no exception. The general concern is whether Gutenberg&rsquo;s full site editing capabilities will make these plugins obsolete, but Mullenweg seemed optimistic about WordPress leaving page builders a piece of the market:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>I&rsquo;m really excited for the future of page builders. Before every single page builder would have to do a fair amount of work to recreate their version of blocks. There was a lot of wasted effort with many talented and great developers all over the world essentially rebuilding the wheel or recreating the block over and over. Now that we have these rails in the core of this block infrastructure, it&rsquo;s been widely adopted and implemented with thousands of blocks being created and many more to come, they don&rsquo;t have to create that core fundamental infrastructure and can instead innovate on top of it, because there are so many cool things you can do in page builders that are out of scope of where we want to take Gutenberg.</p></blockquote>\n\n\n\n<p>Mullenweg also said he anticipates that page builders that are not built with Gutenberg in mind will likely be used less and less over time. However, it should be reassuring that there will still be a place in the WordPress ecosystem for products that build on top of the core standard.</p>\n\n\n\n<p>The Q&amp;A session included many more questions on topics of interest, including when multi-language is coming to core, the future of themes, the present and future of the WP REST API, and what new business options may be coming to the WordPress ecosystem. Check out the recorded session embedded below to find out what Matt and Mat&iacute;as would improve in WordPress if they had a magic wand. </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, 08 May 2020 22:41: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: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:51:\"WPTavern: Drag and Drop Nav Menu Items 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:29:\"https://wptavern.com/?p=99477\";s:7:\"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:147:\"https://wptavern.com/drag-and-drop-nav-menu-items-in-wordpress?utm_source=rss&utm_medium=rss&utm_campaign=drag-and-drop-nav-menu-items-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2941:\"<p class=\"has-drop-cap\">Earlier this week, Sajjad Hossain Sagor released the first version of his <a href=\"https://wordpress.org/plugins/drag-drop-menu-items/\">Drag &amp; Drop Menu Items</a> plugin in the WordPress plugin repository. The plugin is a one-off, single-use plugin that does exactly what its name describes &mdash; it allows end-users to drag menu items from the meta boxes on the nav menu screen to the menu they are currently editing.</p>\n\n\n\n<p>Sagor is a freelance web developer from Bangladesh. Drag &amp; Drop Menu Items is the latest of his 18 contributions to the free plugin directory.</p>\n\n\n\n<p>The plugin is simple in nature and does its one job well. To use it, users merely need to open the Appearance &gt; Menus screen in the WordPress admin. Menu items from the meta boxes under the &ldquo;Add menu items&rdquo; section can then be dragged into the menu under the &ldquo;Menu structure&rdquo; section.</p>\n\n\n\n<img />Dragging an item into a custom menu.\n\n\n\n<p>When dragging a menu item over, a drop-box appears between each of the existing items in the menu. It is worth noting that you cannot drag items into a sub-menu slot directly from the meta boxes. This is on par with the default functionality and could be a limitation of WordPress. However, sub-menu organization works as usual.</p>\n\n\n\n<p>The Drag &amp; Drop Menu Items plugin is limited to the Menus screen in the WordPress admin. It does not work in the customizer, which sports a different interface and method of adding menu items.</p>\n\n\n\n<p>The plugin code is minimal and does not appear to have any issues. The additional JavaScript, at less than 4 kb, should not add much weight to the page either.</p>\n\n\n\n<p>By default, WordPress requires two mouse clicks to add an item to a menu: one click to tick the checkbox and a button click to add the item. However, the default method also allows users to append multiple items at once.</p>\n\n\n\n<p>On the whole, the plugin is a good option for users who prefer the drag-and-drop method of adding items or those who prefer to have both methods at their disposal. It adds a nice touch that would make sense as an existing part of WordPress.</p>\n\n\n\n<h2>An Uncertain Future</h2>\n\n\n\n<img />Experimental Navigation screen from the Gutenberg plugin.\n\n\n\n<p class=\"has-drop-cap\">Eventually, Drag &amp; Drop Menu Items may no longer function. The Gutenberg plugin team has already built an early experimental version of a <a href=\"https://github.com/WordPress/gutenberg/pull/21036\">new Navigation screen</a> in the admin. The plan is to incorporate this new screen into core WordPress in the future.</p>\n\n\n\n<p>The new screen will work within the block system and likely use the work that has gone into the existing Navigation block. This will provide consistency in how menus are added across the site.</p>\n\n\n\n<p>For now, if you would like the ability to drag and drop menu items, this plugin is a solid solution.</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, 08 May 2020 19:15:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: Bringing Back Blogs in the Age of Social Media Censorship\";s:7:\"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=99380\";s:7:\"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:179:\"https://wptavern.com/bringing-back-blogs-in-the-age-of-social-media-censorship?utm_source=rss&utm_medium=rss&utm_campaign=bringing-back-blogs-in-the-age-of-social-media-censorship\";s: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:8292:\"<p class=\"is-style-default\">You&rsquo;ve probably never heard of Robert B. Strassler. That&rsquo;s OK, you&rsquo;re not alone.</p>\n\n\n\n<p>Early in his career, Strassler worked in oil fields, but he always had an interest in&nbsp;<em>the classics</em>&nbsp;(the formal designation for the studies of ancient Greek and Roman civilizations). Eventually, Strassler&rsquo;s hobby became an obsession. He went so far as to author his own translation of Thucydides, the Athenian historian of the Peloponnesian War.</p>\n\n\n\n<p>The problem was nobody wanted to read Strassler&rsquo;s book. This was in the 1990s.  It was more difficult to publish to the web and there was no social media. Strassler approached every Ivy League institution he could find. Nobody was interested in reading a manuscript about Thucydides penned by an oilman with no formal credentials. That was the situation until Strassler contacted Victor Davis Hanson, a classicist professor in Fresno, California. Hanson agreed to look at the manuscript and was astounded by Strassler&rsquo;s work: a brilliant, highly readable translation of Thucydides including maps, diagrams, and charts. Hanson helped the disconnected oilman get in touch with a literary agent. Strassler&rsquo;s landmark edition became the standard translation of Thucydides. Still read today, <a rel=\"noreferrer noopener\" href=\"https://www.amazon.com/Landmark-Thucydides-Comprehensive-Guide-Peloponnesian/dp/0684827905/ref=sr_1_4?dchild=1&keywords=strassler&qid=1588787709&sr=8-4\" target=\"_blank\"><em>The Landmark Thucydides: A Comprehensive Guide to the Peloponnesian War</em></a> is as successful as any book on the classics can be&mdash;in the age of Twitter.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<p>Those of us who take the idea of democratic publishing seriously rejoice at how the field has opened to include anyone who has something to say and is willing to write it down. That&rsquo;s why we should be more alarmed when we see social media companies crowd the spaces once occupied by blogs and do-it-yourself content creators. We see a decline in diverse opinions as the web quickly becomes less free and more autocratic.</p>\n\n\n\n<p>How many Robert B. Strasslers are being stifled today by biased algorithms and arbitrary &ldquo;community guidelines&rdquo;?</p>\n\n\n\n<p>In March, as COVID-19 exploded into a worldwide panic, the web gatekeepers we&rsquo;ve come to rely on quickly massed around a singular interpretation of events and&nbsp;<a href=\"https://www.wsj.com/articles/controlling-the-virus-narrative-11584899715\">stifled dissenting voices</a>&mdash;even mild ones.</p>\n\n\n\n<p>YouTube, the second largest search engine in the world, demonetized all videos that mentioned &ldquo;COVID-19,&rdquo; &ldquo;Coronavirus,&rdquo; or any term related to the pandemic, and herded viewers away from content creators and toward the Center for Disease Control (CDC) &mdash; the same&nbsp;<a href=\"https://www.usatoday.com/story/news/politics/2020/04/01/coronavirus-surgeon-general-says-cdc-asked-review-mask-guidance/5101884002/\">CDC that first advised&nbsp;<em>against</em>&nbsp;wearing masks</a>. Even medical practitioners who deviated slightly from the prevailing vision&nbsp;<a href=\"https://www.turnto23.com/news/coronavirus/video-interview-with-dr-dan-erickson-and-dr-artin-massihi-taken-down-from-youtube\">were removed from the platform</a>&nbsp;after gaining millions of views.</p>\n\n\n\n<p>Experienced journalists who questioned official decrees (surely, the role journalists are expected to perform) were targeted with hit pieces and character assassination by their own peers.</p>\n\n\n\n<p>As author/professor Cal Newport noted in an&nbsp;<a href=\"https://www.wired.com/story/opinion-expert-twitter-only-goes-so-far-bring-back-blogs/\">op-ed for&nbsp;<em>Wired</em></a>, much of the dissenting viewpoints and on-the-ground data have become part of the mainstream conversation even after being suppressed by a small group of decision-makers: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>We don&rsquo;t necessarily want to trust engineers at one company to make the decisions about what topics the public should and should not be able to read about.</p></blockquote>\n\n\n\n<p>How many times have you clicked on a link in a tweet and received a message as shown in the following screenshot?</p>\n\n\n\n<img />Twitter unsafe link warning.\n\n\n\n<p>Adults should be trusted to determine what kind of content is harmful (if such a thing exists) without the assistance of Twitter employees and their &ldquo;partners.&rdquo; And, are these warnings actually meant to protect people or simply to shield Twitter from corporate liability? I think we can guess what the answer is.</p>\n\n\n\n<p>It&rsquo;s not only those without official-sounding credentials who are being barred from sharing content. Creators who clearly have experience in their fields of study are also facing arbitrary censorship.</p>\n\n\n\n<p><a rel=\"noreferrer noopener\" href=\"https://www.thegreatcoursesplus.com/\" target=\"_blank\">The Great Courses Plus</a>, a streaming service that produces college-level video courses taught by actual professors, was threatened with a ban from Google if they did not remove COVID-19-related content from their app. In an email to subscribers, the team wrote:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Google informed us they would ban The Great Courses apps if we continued to make [Covid-19] in-app content available. We are working with Google to ensure that they understand our content is factual, expert-led, and thoroughly vetted, so that we can remedy this misunderstanding as soon as possible.</p></blockquote>\n\n\n\n<p>The videos in question included content from Dr. Roy Benaroch, Adjunct Assistant Professor of Pediatrics at the Emory University School of Medicine; Dr. David Kung, Professor of Mathematics at St. Mary&rsquo;s College of Maryland; and Dr. Kevin Ahern, Professor of Biochemistry and Biophysics at Oregon State University. How or why these scholars were found unworthy of Google&rsquo;s imprimatur is a mystery. As the public does not presume to give Google programming advice, perhaps Google could return the favor by not pretending to be experts on epidemiology, immunology, and virology.</p>\n\n\n\n<p>The only way to see these offending videos is on the <a href=\"https://www.thegreatcoursesdaily.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Great Courses website</a>, where Google&rsquo;s authority is not absolute. <em>It happens to be a WordPress-powered site.</em> For intellectuals and laymen who value free expression, having your own website is becoming the only way to make sure you can keep it.</p>\n\n\n\n<p><strong>The problem of pitting credentials against experience in a zero-sum conflict is fixable, and WordPress is a big part of the solution.</strong></p>\n\n\n\n<p>WordPress allows capable scientists, economists, and medical professionals in other fields to write at length about their ideas without fear of being blocked by arbitrary restrictions. Also, the five-minute install (which does take a little more than five minutes for many people) imposes enough of a barrier to entry to discourage cranks. </p>\n\n\n\n<p>We like to think of the internet as a true egalitarian system, where every voice is given equal consideration, but deep down we know that&rsquo;s not exactly how it works. Network effects tend to form hubs of concentrated influence around a handful of websites. This isn&rsquo;t always a bad thing. A recipe blog with poor taste and no pictures deserves fewer readers than a blog with great-tasting recipes and high-resolution images.</p>\n\n\n\n<p>There is still room enough in the network for certain nodes to grow in size and influence based on the quality of their content. A node with enough backlinks, good organic search rankings, and high-quality content will gain an audience, and be able to keep it, without fear of corporate reprisals or aggressive algorithm updates.</p>\n\n\n\n<p>If we really care about democratizing publishing, we won&rsquo;t always like what we read. There will be disagreements, but democracy requires a literate population eager for debate. We can challenge, discuss, and learn.</p>\n\n\n\n<p>There are a lot of Robert B. Strasslers out there in the network, waiting patiently to be heard.</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, 08 May 2020 15:41:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Chris Maiorana\";s: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:89:\"WPTavern: WP Engine Launches Genesis Pro Add-On for Customers, More Features in the Works\";s:7:\"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=99440\";s:7:\"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:221:\"https://wptavern.com/wp-engine-launches-genesis-pro-add-on-for-customers-more-features-in-the-works?utm_source=rss&utm_medium=rss&utm_campaign=wp-engine-launches-genesis-pro-add-on-for-customers-more-features-in-the-works\";s: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:6549:\"<p class=\"has-drop-cap\">Managed web hosting company WP Engine launched the new <a href=\"https://studiopress.blog/announcing-genesis-pro/\">Genesis Pro add-on</a> for customers of its hosting service today. The add-on brings additional block editor features for users who are using a Genesis-based WordPress theme.</p>\n\n\n\n<p>Genesis is a parent theme developed by StudioPress. WP Engine <a href=\"https://wptavern.com/wp-engine-acquires-studiopress\">acquired the theme development company</a> in 2018. Later that year, the company took the first steps toward <a href=\"https://wptavern.com/genesis-framework-and-studiopress-themes-add-gutenberg-compatibility-more-gutenberg-features-coming-soon\">adding compatibility with the block editor</a> for Genesis customers, becoming an early adopter of the new editing experience.</p>\n\n\n\n<p>&ldquo;Beyond just being &lsquo;compatible,&rsquo; Genesis will play a big role in being Gutenberg-First,&rdquo; Jason Cohen, CTO of WP Engine, said of future plans nearly two years ago. &ldquo;That means not only supporting the software and ideals of Gutenberg but using them for new features. In doing so, it&rsquo;s our intention to light the way for the countless agencies and developers who use WordPress to fuel incredible digital experiences that are made even easier with Gutenberg.&rdquo;</p>\n\n\n\n<p>Today&rsquo;s <a href=\"https://wpengine.com/genesis-pro\">Genesis Pro</a> launch is another step on that journey. WP Engine is currently rolling out the add-on as part of its managed hosting service. The cost is $30/month ($360/year) for an unlimited number of sites.</p>\n\n\n\n<p>The current plan is to also make the Genesis Pro plugin available via the StudioPress website in the early summer. The company is not formally committing to that timeframe yet, but users not on WP Engine&rsquo;s hosting service should expect it this year. The price for Genesis Pro will be available for $360/year, which is at the same rate as the hosting add-on.</p>\n\n\n\n<p>The reason behind the early launch for web hosting clients seems to be twofold based on the announcement post. David Vogelpohl, VP of Web Strategy for WP Engine, said the company could launch the product faster and increment with the launch for its hosting customers. They are also able to make sure the payment system scales, which StudioPress now uses.</p>\n\n\n\n<p>&ldquo;Genesis Pro&rsquo;s capabilities are expressed in a single plugin today, but may be provided in multiple plugins, WP adjacent services, or other means in the future based on architectural decisions of any particular feature,&rdquo; said Vogelpohl.</p>\n\n\n\n<p>Watch a quick video on Genesis Pro:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"embed-vimeo\"></div>\n</div>\n\n\n\n<h2>Genesis Pro Features</h2>\n\n\n\n<img />Example layout from the Genesis Pro add-on.\n\n\n\n<p class=\"has-drop-cap\">The add-on includes a robust set of options that are primarily aimed at helping users build their webpages with custom blocks and designs. The following features are the foundation of the add-on:</p>\n\n\n\n<ul><li><strong>Block Library:</strong> Includes 17 custom blocks, such as a testimonial and pricing block.</li><li><strong>Page Layouts:</strong> Offers 22 full layouts for product, portfolio, team, and other pages.</li><li><strong>Content Sections:</strong> Adds 38 customizable content sections.</li><li><strong>Permissions System:</strong> Allows admins to set editing permissions on a per-block basis.</li><li><strong>Customization:</strong> Users can create and share custom sections and layouts with content creators.</li></ul>\n\n\n\n<p>Most of the options seem to be under a pop-up modal on the post-editing screen that should allow users to insert blocks directly into their post or page content. More blocks, sections, layouts, and other content-creation tools are currently in the works.</p>\n\n\n\n<img />Layout selector from the Genesis Pro add-on.\n\n\n\n<p>The add-on features are mostly standard fare in comparison to many of the block libraries and suites available throughout the WordPress ecosystem. Of course, these will have the StudioPress spin on them and likely be of high quality based if past work is any indication. With the launch out of the way and the foundation in place, it should be much easier for the team to churn out more customization options for end-users.</p>\n\n\n\n<p>The most unique feature is probably around the block permissions system, which few companies have truly tackled. For site administrators who work with multiple creators, setting up editing permissions for individual blocks can be useful. If the user experience for this system works well, it will be a huge selling point for some site owners.</p>\n\n\n\n<img />Block permissions settings for Genesis Pro.\n\n\n\n<h2>Genesis X</h2>\n\n\n\n<p class=\"has-drop-cap\">Vogelpohl teased another project the team has been working on titled &ldquo;Genesis X,&rdquo; which is separate from the Genesis Pro project. It is an experimental plugin version of Genesis that will be available to StudioPress customers at no additional charge. The work thus far has centered on what Genesis will look like in a world where full-site editing is available through WordPress itself.</p>\n\n\n\n<p>&ldquo;The current version of Genesis X focuses on helping site creators easily manage global styles across their site, customize and manage blocks, as well as other capabilities to help users win with full-site editing in WordPress core,&rdquo; said Vogelpohl. &ldquo;Genesis X is being built core-adjacent and is not a replacement for the block editor. It is designed to work with the block editor.&rdquo;</p>\n\n\n\n<p>Vogelpohl said the first objective of the project is to provide analogs for features in Genesis that would not work in a parent theme structure within the full-site editing context. &ldquo;After achieving that parity in ways that make sense, we will be focused on the advanced block capabilities as well as other features currently on our roadmap,&rdquo; he said.</p>\n\n\n\n<p>The company is putting a lot of weight and resources behind the transition from pre-block WordPress and the upcoming features that WordPress will offer via the block system. Right now, they have a team of 15 employees working on solutions with Genesis.</p>\n\n\n\n<p>&ldquo;The overarching theme is that Genesis X is being architected not to just help the Genesis community adapt to full-site editing in core, but for any user of WordPress to adopt full-site editing in a way that sets them up for the best chance of success,&rdquo; said Vogelpohl.</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, 07 May 2020 20:52: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:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:74:\"WPTavern: GitHub Introduces Codespaces IDE, Discussions, and Code Scanning\";s:7:\"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=99374\";s:7:\"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:189:\"https://wptavern.com/github-introduces-codespaces-ide-discussions-and-code-scanning?utm_source=rss&utm_medium=rss&utm_campaign=github-introduces-codespaces-ide-discussions-and-code-scanning\";s: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:4529:\"<p><a href=\"https://githubsatellite.com/\">GitHub Satellite</a>, the company&rsquo;s annual product and community event, went virtual this year for the first time but marched forward with the usual major product announcements.  GitHub is ramping up its offerings with <a href=\"https://github.blog/2020-05-06-new-from-satellite-2020-github-codespaces-github-discussions-securing-code-in-private-repositories-and-more/\">four new products</a>: an IDE, a discussion platform, code scanning, and private instances. </p>\n\n\n\n<p><a href=\"https://github.com/features/codespaces/\">Codespaces</a> is the platform&rsquo;s new built-in IDE that lets users code in the browser with minimal setup. The product is based on the VS Code editor and includes terminal access, support for code completion, and extensions: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Codespaces can be configured to load your code and dependencies, developer tools, extensions, and dotfiles. Switching between environments is simple&mdash;you can navigate away at any time, and when you switch back, your codespace is automatically reopened.</p></blockquote>\n\n\n\n<p>The IDE was created to facilitate contribution but it also enables better development on mobile devices. GitHub design lead Joel Califa shared a demo of how he uses Codespaces on his iPad:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">People have been asking about using Codespaces on the iPad. Here\'s what it looks like: <a href=\"https://t.co/5UQHtzMwZh\">pic.twitter.com/5UQHtzMwZh</a></p>&mdash; Joel Califa (@notdetails) <a href=\"https://twitter.com/notdetails/status/1258120708212785154?ref_src=twsrc%5Etfw\">May 6, 2020</a></blockquote>\n</div>\n\n\n\n<p>GitHub plans to implement a pay-as-you-go pricing model for Codespaces, but it will be free during the limited beta. This product should complement the recent launch of <a href=\"https://github.com/mobile/\">GitHub&rsquo;s mobile apps for iOS and Android</a> in March, which allows users to manage projects, tasks, feedback, and pull requests.</p>\n\n\n\n<p>Discussions is a new feature that stands to have a more meaningful impact on open source communities. GitHub issues and pull requests have long been the home of most conversations, but oftentimes this type of collaboration would be better served with features more tailored to a knowledge base. Discussions offer a threaded format where questions can be marked as answered. Participation in discussions counts towards users&rsquo; contribution graphs. GitHub plans to put the feature into beta for public repositories soon.</p>\n\n\n\n<img />\n\n\n\n<p>GitHub also announced code scanning, powered by CodeQL, a semantic analysis engine trained to find vulnerabilities. When code scanning is enabled, every `git push` is inspected by CodeQL for potential vulnerabilities and the results are displayed in the pull request. Code scanning is free for open source software. </p>\n\n\n\n<p>Secret scanning, which has been enabled on public repositories since 2018, is now available for private repositories. It scans code for known secret formats and notifies developers upon finding something. At the beginning. of 2019, GitHub announced that it was giving free users access to <a href=\"https://wptavern.com/github-announces-free-unlimited-private-repositories\">unlimited private repositories</a>.  Adding secret scanning to private repositories is the next natural step, as these have likely grown in number after being added to the free tier.</p>\n\n\n\n<p>While many of GitHub&rsquo;s new features are aimed at free users and open source communities, this week&rsquo;s announcements also include a new enterprise product called Private Instances:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Today we introduced our plans for GitHub Private Instances, a new, fully-managed option for our enterprise customers. Private Instances provides enhanced security, compliance, and policy features including bring-your-own-key encryption, backup archiving, and compliance with regional data sovereignty requirements.&nbsp;</p></blockquote>\n\n\n\n<p>After Microsoft acquired GitHub for $7.5 billion in 2018, the company has aggressively worked to make its product more compelling in the highly competitive space of code sharing platforms, starting with the free tier. Pricing has not yet been finalized for any of the revenue-generating products announced this week, as GitHub may be testing the waters to gauge the community&rsquo;s reaction before launch.</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, 07 May 2020 14:42: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: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: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:67:\"WPTavern: Apply to Speak at the JavaScript for WordPress Conference\";s:7:\"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=99026\";s:7:\"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:179:\"https://wptavern.com/apply-to-speak-at-the-javascript-for-wordpress-conference?utm_source=rss&utm_medium=rss&utm_campaign=apply-to-speak-at-the-javascript-for-wordpress-conference\";s: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:2066:\"<p>The third annual <a href=\"https://javascriptforwp.com/conference/\">JavaScript for WordPress Conference</a> is gearing up for three days of online talks and workshops on July 8-10, 2020. The event is free to attend and organizer Zac Gordon is working to put together a diverse speaker lineup.</p>\n\n\n\n<p>Day 1 will be devoted to workshops that help beginners get up and running with JavaScript and React. Day 2 will focus on building Gutenberg blocks and block-based themes. Day 3 will include topics and projects that use WordPress as a Headless CMS.</p>\n\n\n\n<p>&ldquo;Last year we did 4 tracks all at once.&rdquo; Gordon said. &ldquo;That was a lot. So this year we&rsquo;re doing two days, one track each day. We decided on Blocks and Headless as our two tracks, because that seems to be where most of the JavaScript development is happening at the moment in the WordPress space.&rdquo;</p>\n\n\n\n<p>Previous editions of the conference have pulled in approximately 1,000 viewers, similar to the size of a large WordCamp. Gordon said the event is open for all JavaScript-related topics related to WordPress beyond Gutenberg and headless setups and they are trying to encourage new speakers.</p>\n\n\n\n<p>&ldquo;Each year we&rsquo;re trying to do more to have the conference reflect a range of speakers, and this year we&rsquo;re hoping that a few of the brilliant and industrious younger folks coding or building with WordPress might speak,&rdquo; he said.</p>\n\n\n\n<p><a href=\"https://javascriptforwp.com/conference/register/\">Registration is free</a> on the event website and <a href=\"https://javascriptforwp.com/conference/apply-to-speak/\">applications for speakers</a> will be open until June 1. </p>\n\n\n\n<p>&ldquo;I&rsquo;m not sure how many speakers we will do exactly, but we will have a few folks leading workshops day one and then maybe 5-8 speakers the two other days,&rdquo; Gordon said. &ldquo;It will be fewer speakers than last year, but hopefully still a lot of quality focused talks. The applications we&rsquo;ve seen come in so far are exciting.&rdquo;</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, 06 May 2020 21:43: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: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: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:88:\"WPTavern: ACF Blocks Provides Assortment of Blocks Built from Advanced Custom Fields Pro\";s:7:\"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=99376\";s:7:\"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:221:\"https://wptavern.com/acf-blocks-provides-assortment-of-blocks-built-from-advanced-custom-fields-pro?utm_source=rss&utm_medium=rss&utm_campaign=acf-blocks-provides-assortment-of-blocks-built-from-advanced-custom-fields-pro\";s: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:8487:\"<p class=\"has-drop-cap\">Over the weekend, Munir Kamal released version 2.0 of his <a href=\"https://wordpress.org/plugins/acf-blocks/\">ACF Blocks plugin</a>, a project that creates a suite of blocks for the editor. The plugin offers 18 custom blocks in its free version and 15 more in the <a href=\"https://www.acfblocks.com/pro/\">pro upgrade</a>. It is built on top of <a href=\"https://www.advancedcustomfields.com/pro/\">Advanced Custom Fields Pro</a> (ACF Pro).</p>\n\n\n\n<p>The latest update of the plugin added support for typography, including options for using various Google Fonts for in-block text. Kamal also included base styling options for design features like margin and padding for every block in the plugin.</p>\n\n\n\n<p>With ACF Pro as a hard dependency, it limits the audience of ACF Blocks. In large part, this plugin will be useful for agencies and freelancers who need to quickly build features for clients within their budget. For that purpose, the plugin does a solid job.</p>\n\n\n\n<p>The tight coupling with ACF Pro hurts the user experience for the plugin. However, the ideas behind ACF Blocks and its custom options make up for the shortcomings of relying on its dependent parent plugin. Decoupling the two is unlikely, but it would make for a smoother experience and open the plugin to a wider audience.</p>\n\n\n\n<p>Kamal took inspiration for the plugin from ACF and its pro version. He described the process of building blocks with the framework &ldquo;super easy,&rdquo; even for an intermediate-level developer. &ldquo;It has been such an amazing WordPress framework for years to create custom fields,&rdquo; he said. &ldquo;And when [Elliot Condon] announced the block creation feature in ACF, that quickly triggered me to build this collection of ready-to-use ACF Blocks.&rdquo;</p>\n\n\n\n<p>The biggest technical limitation is that Kamal cannot build nested blocks, which is a current limitation of ACF. &ldquo;I have already discussed it with [Condon], and he is already working on bringing that functionality hopefully soon,&rdquo; he said. &ldquo;Once that comes to ACF, we may create more amazing and powerful Gutenberg Blocks.&rdquo;</p>\n\n\n\n<p>Watch a short walkthrough of how the plugin works:</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<h2>Useful Assortment of Blocks</h2>\n\n\n\n<p class=\"has-drop-cap\">While primarily testing the free version of ACF Blocks, I found that it has several useful blocks that could immediately address common needs for end-users. With 18 free blocks available, users have plenty to work with before deciding whether they want to move along the upgrade path to the pro version.</p>\n\n\n\n<p>One of the best blocks in the collection is the Photo Collage block. It is ACF Blocks&rsquo; answer to the core Gallery block. The grid options for this block alone make this plugin worth checking out. The block offers between 2 and 15 grid layouts, depending on the grid option the user selects.</p>\n\n\n\n<img />Setting the grid for the Photo Collage block.\n\n\n\n<p>My second favorite of the assortment is the Testimonial block. Coupled with the typography options, which are available for all blocks, you can have a lot of fun designing a testimonial section.</p>\n\n\n\n<img />Tinkering with Google Fonts in the Testimonial block.\n\n\n\n<p>This is a small sampling of what the plugin can do. The Price List block can help restaurant sites set up their menu. The Pricing Box block, particularly when nested into the core Columns block, makes it easy to set up a pricing section with multiple product options. And, the Team block makes it simple to create profile sections on a company&rsquo;s team/about page.</p>\n\n\n\n<p>The following blocks are available in the free version (with several more in the pro version):</p>\n\n\n\n<ol><li>Scrollable Image Block</li><li>Tab Block</li><li>Toggle Block</li><li>Accordion Block</li><li>Image Slider Block</li><li>Social Sharing Block</li><li>Photo Collage Block</li><li>Posts Block</li><li>Testimonial Block</li><li>Team Block</li><li>Multi Buttons Block</li><li>Pricing Box Block</li><li>Price List Block</li><li>Start Rating Block</li><li>Progress Bar Block</li><li>Counter Number Block</li><li>Click to tweet Block</li><li>Business Hours Block</li></ol>\n\n\n\n<p>Kamal&rsquo;s favorite blocks from the overall suite are Image Hotspot, which allows users to set an image background with &ldquo;pointers&rdquo; to pop up content; Before After Image, which lets users compare two images using a sliding bar; and Photo Collage, the plugin&rsquo;s grid-based gallery block. The first two are available only in the pro version of the plugin. The plugin creator said he thinks all the blocks are useful but these were the most fun to build.</p>\n\n\n\n<h2>Room for Improvement</h2>\n\n\n\n<p class=\"has-drop-cap\">ACF Blocks is a nice concept. It gets a lot of things right. However, there are minor issues that dampen the experience of working with its blocks. These issues are not insurmountable, and I expect Kamal will address them in upcoming versions based on familiarity with his past work and drive toward building great products for users.</p>\n\n\n\n<p>The most immediate issue and likely the simplest to fix is the plugin&rsquo;s styles for left and right margins on every block. The plugin resets these margins to <code>0</code> by default. Depending on the active theme on a site, this could shift the blocks to the edge of the screen instead of the content area on the front end. Some themes use left/right margins to align content. This is not an issue with only ACF Blocks. It is prevalent among plugins with front-end output.</p>\n\n\n\n<p>One quick solution for the margin issue is to wrap any of the plugin&rsquo;s blocks within the core Group block. This will put margins back under the theme&rsquo;s control.</p>\n\n\n\n<p>Editing block content happens in the block options panel instead of directly in the block. I am unsure if this is a limitation of using the ACF Pro framework or a design decision on Kamal&rsquo;s part. It feels odd to jump between editing content in the content area to editing content in the sidebar.</p>\n\n\n\n<p>One example of my confusion with block content was with the Photo Collage block. I clicked on the block, hoping to have the media library appear for uploading. Nothing happened. I clicked again because, well, maybe I did not get a good click in that first time. Nothing happened. I eventually found the image upload button under the block&rsquo;s option panel on the right.</p>\n\n\n\n<p>Setting block options can feel a little sluggish at times with the block output in the editor not reflecting changes immediately. This is primarily because ACF Blocks relies on the server-side rendering capabilities of ACF Pro. It is unlikely this can be addressed in the blocks plugin. Some users may find the delayed rendering to be tedious when editing multiple options.</p>\n\n\n\n<h2>Final Thoughts</h2>\n\n\n\n<p class=\"has-drop-cap\">Kamal has put together a useful set of blocks that will help many end-users build sections of content they cannot create out of the box. Between the free and pro versions, there is a total of 33 blocks. The creator is committed to adding more blocks over time based on user feedback. In the immediate future, he plans to keep hacking away at bug fixes and improving the code.</p>\n\n\n\n<p>I still feel like how ACF Pro works is a hindrance to how good this plugin could be if built from scratch. With that said, the framework helped make Kamal&rsquo;s plugin a reality. ACF Blocks is a showcase in what is possible via ACF Pro, which should inspire other developers who are looking for solutions built on top of one of the most widely-used frameworks in the WordPress ecosystem.</p>\n\n\n\n<p>Kamal understands that some ACF Pro users may try their hands at creating similar blocks but feels like his team&rsquo;s knowledge and dedication to offering support are the most important parts of the equation. &ldquo;ACF Blocks saves time and effort for creating blocks yourself for the most common web design elements,&rdquo; he said.</p>\n\n\n\n<p class=\"is-style-highlight has-white-color has-blue-700-background-color has-text-color has-background text-white bg-blue-700\">Note:  this plugin review and feedback were requested by the plugin author. Read our post about <a href=\"https://wptavern.com/product-reviews-in-the-wordpress-ecosystem-honesty-and-genuine-experiences\">honest feedback based on genuine experiences</a> for more information on how reviews are handled.</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, 06 May 2020 20:36:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:51:\"WPTavern: Jetpack 8.5 Adds New Podcast Player Block\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=99327\";s:7:\"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:145:\"https://wptavern.com/jetack-8-5-adds-new-podcast-player-block?utm_source=rss&utm_medium=rss&utm_campaign=jetack-8-5-adds-new-podcast-player-block\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3066:\"<p><a href=\"https://jetpack.com/2020/05/05/jetpack-8-5-new-podcast-block/\">Jetpack 8.5</a> was released today with a new podcast player block for sharing audio content. Configuring the block is as simple as entering the podcast RSS feed URL. This will automatically bring in the cover art and recent episodes. Block options allow for further customization of the display, including the number of episodes, colors, and the ability to show/hide cover art and episode descriptions. </p>\n\n\n\n<img />\n\n\n\n<p>Jetpack&rsquo;s new podcast player has arrived just in time, as podcasting has gotten a little boost in recent months due to the large numbers of people under stay-at-home orders. iHeartRadio, an American audio company with more than 350 podcasts, reports that <a href=\"https://www.iheartmedia.com/press/new-iheartpodcast-insights-show-increase-listening-more-americans-quarantine-during-covid-19\">listenership for its podcasting network is up 6%</a> month-over-month, with California and New York jumping 13% and 8% respectively.  iHeartRadio&rsquo;s insights also showed that certain genres are more popular than others:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>During a time of economic uncertainty, Americans are listening to more business and finance podcasts &ndash; for which downloads and streams are up 78 percent week-over-week among the iHeartRadio Original podcasts. Listeners are also turning to music, entertainment and comedy during this time, where iHeartPodcasts have shown an increase in listening as well.</p></blockquote>\n\n\n\n<p>Selling ads and marketing a new podcast may be more of a struggle during this economic downturn, but those with extra time on their hands may have an easier time producing and publishing episodes. Jetpack&rsquo;s new block makes it easy to share your own episodes or podcasts you enjoy from other websites.</p>\n\n\n\n<p>The 8.5 release also includes significant improvements to the <a href=\"https://jetpack.com/2020/04/07/re-introducing-jetpack-search-for-wordpress-sites/\">new Search feature</a>, which is powered by Elasticsearch, to provide better indexing and a simpler onboarding experience. </p>\n\n\n\n<p>Automattic developer Brandon Kraft published a post today that <a href=\"https://kraft.blog/2020/05/jetpacks-publicize-now-uses-twitter-cards/\">details recent changes to the Publicize feature</a>. In the past, Publicize would attach an image from the post when sending out its automatic tweet to Twitter. This has now been changed for Jetpack and WordPress.com sites so that Publicize no longer attaches a picture but defaults to allowing Twitter to display its Twitter card instead. Developers can use a filter to return the plugin to its previous behavior, if necessary.</p>\n\n\n\n<p>Jetpack 8.5 also makes more widgets and embed tools AMP-compatible, expands options for the Revue block, and fixes layout issues with several other blocks. Check out the <a href=\"https://wordpress.org/plugins/jetpack/#developers\">changelog on WordPress.org</a> for a full list of the enhancements and bug fixes.</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:\"Tue, 05 May 2020 23:09: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: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: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:52:\"WPTavern: Need to Smile Today? Stay WordPress Strong\";s:7:\"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=99333\";s:7:\"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:147:\"https://wptavern.com/need-to-smile-today-stay-wordpress-strong?utm_source=rss&utm_medium=rss&utm_campaign=need-to-smile-today-stay-wordpress-strong\";s: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:5173:\"<div class=\"wp-block-embed__wrapper\">\n\n</div><strong>Lyrics:</strong> Zack Katz, Jonathan Mann | <strong>Music:</strong> Jonathan Mann<br />Video licensed under&nbsp;<a href=\"https://creativecommons.org/licenses/by/3.0/us/\">Creative Commons &ndash; Attribution</a>\n\n\n\n<p class=\"has-drop-cap\">For the first time, at least 19 people from the WordPress community can literally call themselves WordPress rock stars without it sounding like an outdated marketing gimmick.</p>\n\n\n\n<p><a href=\"https://gravityview.co/\">GravityView</a> dropped a community music video and website named <a href=\"https://wpstrong.org/\">WordPress Strong</a> earlier today. It is fun. It is inspirational. It will leave a smile on your face. The video features a wide range of faces, voices, and musical talent from around the planet.</p>\n\n\n\n<p>Much of the world is looking for small ways to cope with the ongoing COVID-19 pandemic. Each day is about finding the things we should be thankful for while waiting for life to feel like normal. The WordPress community has been a beacon of hope for many. It has continued providing purpose to people despite their daily lives being upended. This project is one more way to show the strength of our community.</p>\n\n\n\n<p>&ldquo;People were scrambling to adjust to the new reality of living in a pandemic, and there was a rush of uncertainty,&rdquo; said Zack Katz, the creator of GravityView, on starting the project. &ldquo;In the middle of all that uncertainty, I felt lucky to be part of the WordPress community: doing what we do, working on an open and thriving platform, with a culture of people who are kind to each other and support each other.&rdquo;</p>\n\n\n\n<p>Many GravityView customers began using the plugin to enable COVID-19 responses, such as sites like <a href=\"https://supportredditch.net/\">Support Redditch</a>, which coordinates relief efforts. &ldquo;I sensed a movement of coming together to help each other, and I wanted to get the word out: if you need help, ask the community,&rdquo; said Katz. &ldquo;We&rsquo;re here for you. We&rsquo;ll get through this together.&rdquo;</p>\n\n\n\n<p>A total of 19 volunteers contributed to the music video, including WordPress co-founder Matt Mullenweg. However, the true star of the group was Tracy Apps, the owner of <a href=\"http://tracyappsdesign.com/\">tracy apps design</a>, who laid down the beat on the drums.</p>\n\n\n\n<p>&ldquo;It involved asking a lot of people!&rdquo; said Katz of finding willing subjects. &ldquo;I get why people are reluctant. I even waited until the last minute to record my video! Something special happens when people are invited to go beyond their comfort zone, especially when it comes to creative endeavors. It was moving to have the emails come in with their videos. People were willing to share a different part of themselves.&rdquo;</p>\n\n\n\n<p>The <a href=\"https://twitter.com/hashtag/WordPressStrong\">#WordPressStrong</a> hashtag is open for anyone to contribute to on Twitter. The project is calling for volunteers to join in on the fun. If you can sing, play an instrument, or dance &mdash; or if you can&rsquo;t &mdash; you can be a part of this movement for our community to become stronger. If nothing else, it will give you something to do to pass the time. Tag yourself doing something and share it. I am certain it will brighten at least one person&rsquo;s day.</p>\n\n\n\n<h2>The WordPress Strong Project</h2>\n\n\n\n<p class=\"has-drop-cap\">Katz began the project in March. He shared some initial lyric ideas with <a href=\"https://www.jonathanmann.net/\">Jonathan Mann</a> who then wrote and recorded WordPress Strong. The GravityView team reached out to members of the WordPress community and asked them to lend their voices.</p>\n\n\n\n<p>&ldquo;I deeply respect [Mann] as a musician and how he exposes himself through his music,&rdquo; said Katz. &ldquo;His album <em>I Used to Love My Body</em> was my soundtrack for last year.&rdquo;</p>\n\n\n\n<p>Mann is the voice of the GravityView brand and has previously created a <a href=\"https://www.youtube.com/watch?v=nmUWfA56TqA\">song for the product</a>. Katz and Mann also worked on the <a href=\"https://www.youtube.com/watch?v=cqdDo_W8CVE\">WordPress Wiggle</a> song in 2017.</p>\n\n\n\n<p>&ldquo;When creating WordPress Strong, I shared a poem with [Mann] and expressed the tone that I wanted to convey,&rdquo; said Katz. &ldquo;The email had the subject line &lsquo;WordPress Hope Song.&rsquo; He wrote and recorded WordPress Strong, and I think you agree, it&rsquo;s a great WordPress Hope Song.&rdquo;</p>\n\n\n\n<p>The plan for the WordPress Strong website goes beyond releasing a song. Katz wants to expand the site to be a place where people from the community can ask and receive help during the pandemic. The team is currently working on a part of the site where community members can request assistance or offer help anonymously.</p>\n\n\n\n<p>&ldquo;I was hoping artists of all stripes would be interested in sharing their work on the WordPress Strong website,&rdquo; said Katz. &ldquo;Sharing creativity together empowers us to be vulnerable in our despair as well as our hope. I would like to help foster that.&rdquo;</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, 05 May 2020 20:36: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:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:56:\"Mark Jaquith: WordPress/Jetpack Driver for Laravel Valet\";s:7:\"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:40:\"http://markjaquith.wordpress.com/?p=7213\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://markjaquith.wordpress.com/2020/05/05/wordpress-jetpack-driver-for-laravel-valet/\";s: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:1082:\"<p>Recently I&#8217;ve found myself using <a href=\"https://laravel.com/docs/valet\">Laravel Valet</a> for local PHP development on my Mac. I love how fast and low-maintenance it is.</p>\n\n\n\n<p>One thing that is a little tricky about Valet is that you can&#8217;t really write custom Nginx configs. That means that I couldn&#8217;t use my favorite technique of routing missing images to the production site, via Jetpack&#8217;s Site Accelerator (formerly &#8220;Photon&#8221;) CDN.</p>\n\n\n\n<p>Normally, when doing local development on a WordPress site, you need three things: the codebase, a copy of the database, and the <code>wp-content/uploads</code> directory. But if you just redirect missing image files to your production site, you don&#8217;t need to laboriously copy all those files and clutter up your local machine.</p>\n\n\n\n<p>I found myself really missing that technique today, so I wrote a driver for Laravel Valet that handles it!</p>\n\n\n\n<p>You can get it here: <a href=\"https://github.com/markjaquith/WordPress-Jetpack-Valet-Driver\">WordPress Jetpack Valet Driver</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 May 2020 19:11: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:12:\"Mark Jaquith\";s: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:75:\"WPTavern: Find My Blocks Plugin Shows All Blocks in Use on a WordPress 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=98953\";s:7:\"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:195:\"https://wptavern.com/find-my-blocks-plugin-shows-all-blocks-in-use-on-a-wordpress-site?utm_source=rss&utm_medium=rss&utm_campaign=find-my-blocks-plugin-shows-all-blocks-in-use-on-a-wordpress-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3144:\"<p>How do you know what blocks are in use on a WordPress site?  I recently saw a tweet asking this question in regards to knowing whether it is safe to turn off a plugin. This seems like it could become a common question, especially for those who have hundreds or thousands of blog posts as well as those using WordPress as a CMS.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">How hard would it be to create a plugin that let\'s me know how many and which blocks I\'m using site wide? Sometimes I wonder if I can deactivate a block plugin but I don\'t know if I\'m using a block it provides.</p>&mdash; Nick Hamze (@NickHamze) <a href=\"https://twitter.com/NickHamze/status/1253343502316064771?ref_src=twsrc%5Etfw\">April 23, 2020</a></blockquote>\n</div>\n\n\n\n<p>When looking at content in the editor, it isn&rsquo;t immediately evident which blocks are in use. You can click on the block navigation at the top of the editor, but that will only show you the blocks in use on that particular page. If you have a lot of plugins installed and many pages of content to wade through, figuring out if it&rsquo;s safe to remove a plugin can be a time-consuming process.</p>\n\n\n\n<p>Fortunately, there is already a plugin that will give you a quick overview of where blocks are being used on your site. <a href=\"https://wordpress.org/plugins/find-my-blocks/\">Find My Blocks</a> is the one that was suggested to Nick Hamze in response to the question in his tweet. I had not heard of it before, so I took it for a test drive today. </p>\n\n\n\n<p>Find My Blocks is basically a utility plugin that lists the blocks being used on your WordPress site, along with the posts/pages where they are in use. It includes core blocks and blocks from third-party plugins. The plugin&rsquo;s settings also give the option to sort the block menu display alphabetically or by most/least popular.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>Frontend developer <a href=\"https://eddysims.com/\">Eddy Sims</a> created Find My Blocks to solve one of his own problems and released it on WordPress.org in January. </p>\n\n\n\n<p>&ldquo;I was working on a site that required a few custom Gutenberg blocks,&rdquo; Sims said. &ldquo;After a week, updating became a hassle. I didn&rsquo;t know where the blocks were used. Find My Blocks is a plugin I created to hopefully help someone else with this issue.&rdquo; So far it has received several five-star reviews in the plugin directory. </p>\n\n\n\n<p>&ldquo;We&rsquo;ve been using this plugin to help us figure out where we&rsquo;ve used blocks on pages so we can deprecate them and replace them with shiny new blocks!&rdquo; WordPress developer Tammy Lee said. &ldquo;This plugin makes tracking down blocks really easy! I don&rsquo;t want to think about how much time it would have taken us, otherwise.&rdquo;</p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/find-my-blocks/\">Find My Blocks</a> is a plugin you may want to add to your favorites on WordPress.org for the next time you inherit a site that you didn&rsquo;t build, or for cleaning out your own installed plugins.   </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, 04 May 2020 22:54: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: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: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:67:\"WPTavern: The Future of WordPress: The Block Editor Is Here to Stay\";s:7:\"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=99271\";s:7:\"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:177:\"https://wptavern.com/the-future-of-wordpress-the-block-editor-is-here-to-stay?utm_source=rss&utm_medium=rss&utm_campaign=the-future-of-wordpress-the-block-editor-is-here-to-stay\";s: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:6577:\"<p class=\"has-drop-cap\">It is inevitable that when we publish a story on the Tavern that is remotely related to the block editor or the Gutenberg project, we receive negative comments. Despite sprinting along in its second year as part of core WordPress, there are still those who liken posts on the editor to <em>Soviet-style mind manipulation</em> and <em>propaganda</em> for certain unnamed companies.</p>\n\n\n\n<p>It is not all negative. Far more comments are from people who are ecstatic about the current editor and the upcoming features that will expand the block system to other areas of WordPress.</p>\n\n\n\n<p>However, I felt the need to address a recent request that we stop covering the block editor. While I cannot speak for our entire staff, there are two simple truths about why I write about blocks.</p>\n\n\n\n<h2>Truth #1: Blocks are Here to Stay</h2>\n\n\n\n<p class=\"has-drop-cap\">The block system is not going anywhere. WordPress has moved beyond the point where we should consider the block editor as a separate entity. It is an integral part of WordPress and will eventually touch more and more areas outside of the editing screen.</p>\n\n\n\n<p>Frankly, it would be poor journalism to <em>not</em> cover stories related to blocks.</p>\n\n\n\n<p>Some of the most exciting things happening in the WordPress ecosystem is around what developers are doing with blocks. Whether it is a <a href=\"https://wptavern.com/block-a-saurus-embeds-a-side-scrolling-t-rex-game-via-the-block-editor\">fun T-rex game</a>, a <a href=\"https://wptavern.com/godaddys-go-wordpress-theme-offers-a-page-building-experience-via-the-block-editor\">block-ready theme</a>, or a team of block developers being <a href=\"https://wptavern.com/block-lab-team-joins-wp-engine-looks-to-the-future-of-block-building\">hired by a major company</a>, there is always something interesting happening in the world of blocks.</p>\n\n\n\n<p>Every day, more users are embracing the block editor. Even the percentage of holdouts still running WordPress 4.9, which was the last version without the block editor, is decreasing. Currently, only 12.8% of <a href=\"https://wordpress.org/about/stats/\">WordPress installs</a> are on 4.9.  Nearly 73% are running WordPress 5.0 or newer.  Some of those users are running plugins like Classic Editor, which has maintained a steady growth rate in the neighborhood of 0.5% &ndash; 1.0% in recent months.  Currently, the plugin has over 5 millions installs, which is a drop in the ocean in comparison to total WordPress sites.</p>\n\n\n\n<p>At the moment, WordPress.com and self-hosted Jetpack users are creating content via blocks on 44.5 million WordPress sites. Yesterday, those users <a href=\"https://gutenstats.blog/\">wrote 302,000 posts</a> in the block editor.</p>\n\n\n\n<p>Blocks are the future of the platform. What we need to do as a community is avoid putting our heads in the sand or railing against the powers-that-be. Instead, we should ask ourselves what we could do to continue improving the system. <em>How can we move forward? How can we present our ideas, even dislikes, in a constructive manner? How can we create better software?</em></p>\n\n\n\n<p>Criticism of the editor is fair. Make it constructive so we can dissect and address that criticism. That is an essential part of building great software.</p>\n\n\n\n<h2>Truth #2: Love of Blocks</h2>\n\n\n\n<p class=\"has-drop-cap\">Believe it or not, I actually love blocks. While I may criticize some decisions about the editor, summoning an internal facepalm emoji at times, this is the most excited I have been about WordPress in years. But, it is not about me. I have enough familiarity with dozens of editors that I can live with even the most mediocre of experiences. And, if I am not satisfied, I can build my own.</p>\n\n\n\n<p>What it is about is seeing the face of an inexperienced WordPress user light up for the first time because they <em>get it</em>.</p>\n\n\n\n<p>For years, I helped an older family member run an outdoors site. I had no interest in hunting, fishing, or most other topics covered on the blog. However, he was passionate about what he was doing. I wanted to help fuel that passion in any way I could. <em>The problem?</em> He simply never learned how WordPress worked. He never had that lightbulb moment. His face never glowed when he finally figured out how to lay out his content in the editor.</p>\n\n\n\n<p>He had big ideas and no way to accomplish them.</p>\n\n\n\n<p>At the time, most page builders were little more than shortcode soup, which I knew would eventually mean I would be the one to clean up the mess. There were few options other than the classic editor. My older cousin stuck it out for longer than most. After a few years, he finally let the site go.</p>\n\n\n\n<p>Even some of what I would consider the most basic of things were too frustrating for him. It was also frustrating for me because I could not understand why he could never learn what I was teaching.</p>\n\n\n\n<p>However, the block editor changed things. He was thinking of starting a new site but was asking about non-WordPress platforms. I spun up a demo install and a basic block-ready theme for him not long ago. Suddenly, this guy who routinely broke links and accidentally made all of his blog post content bold &mdash; twice &mdash; was piecing together media-filled content with few issues. That initial passion that he had all those years ago seemed to come back. Maybe, just maybe, WordPress might now be the CMS for him.</p>\n\n\n\n<p>I am fully aware that this is not everyone&rsquo;s experience. However, what I have found working with new and less-than-tech-savvy users is that the block editor is a stepping stone toward them being able to create the sites they want more easily. Right now, those users have far more control over their content than ever before. In the future, they will have that control over their entire site.</p>\n\n\n\n<p>When I share a story about blocks, it is because I am excited about them. More so, I want to share that excitement with others who are on this journey. Whether they want something on the <a href=\"https://wptavern.com/the-wacky-world-of-sorta-brilliants-sorta-fun-block-plugins\">wacky and weird</a> side of things or want to <a href=\"https://wptavern.com/create-custom-patterns-with-the-block-pattern-builder-plugin\">build custom patterns</a> for reuse in their posts, I want them to find those tools.</p>\n\n\n\n<p>If I am a bit optimistic about the future at times, I will not apologize for that. I look forward to the next block-related story that we have the opportunity to cover here at the Tavern.</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, 04 May 2020 20:52: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:54:\"WordPress.org blog: The Month in WordPress: April 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:34:\"https://wordpress.org/news/?p=8571\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2020/05/the-month-in-wordpress-april-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:8157:\"<p>April continued to be a challenging time for the WordPress community, with many under stay-at-home recommendations. However, it was also an exciting month in which we created new ways to connect with and inspire each other! This month, amazing contributors moved more WordCamps online and shipped new releases for WordPress and Gutenberg. For the latest, read on. </p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 5.4.1 released</h2>\n\n\n\n<p>On April 24th,&nbsp; <a href=\"https://make.wordpress.org/core/2020/04/24/wordpress-5-4-1-rc1/\">WordPress 5.4.1 Release Candidate 1</a> (RC1) was released for testing, quickly followed by the official <a href=\"https://wordpress.org/news/2020/04/wordpress-5-4-1/\">release of WordPress 5.4.1</a> on April 29th. This security release features 17 bug fixes and seven security fixes, so we recommend updating your sites immediately. To download WordPress 5.4.1, visit your Dashboard, click on Updates, then Update Now, or download the latest version directly from WordPress.org. For more information, visit <a href=\"https://wordpress.org/news/2020/04/wordpress-5-4-1/\">this post</a>, review the <a href=\"https://core.trac.wordpress.org/query?milestone=5.4.1&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">full list of changes on Trac</a>, or check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-4-1/\">version 5.4.1 HelpHub documentation page</a>.</p>\n\n\n\n<p>Want to get involved in building 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 7.9 and 8.0 released</h2>\n\n\n\n<p>It was another exciting month for Gutenberg, with the release of <a href=\"https://make.wordpress.org/core/2020/04/15/whats-new-in-gutenberg-15-april/\">7.9</a> and <a href=\"https://make.wordpress.org/core/2020/04/29/whats-new-in-gutenberg-29-april/\">8.0</a>! Version 7.9 brought new block design tools, three new patterns, and improved block markup. Gutenberg 8.0 continued to refine the new block patterns feature, with additional options for inline formatting, and extending the functionality of the Code Editor. In addition to these new features, both releases included new enhancements and APIs, along with a number of bug fixes, performance improvements, some experiments, and more! You can read all the details about the latest Gutenberg releases in the announcement posts for <a href=\"https://make.wordpress.org/core/2020/04/15/whats-new-in-gutenberg-15-april/\">7.9</a> and <a href=\"https://make.wordpress.org/core/2020/04/29/whats-new-in-gutenberg-29-april/\">8.0</a>.&nbsp;</p>\n\n\n\n<p>Want to get involved in building Gutenberg? Follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>, contribute to <a href=\"https://github.com/WordPress/gutenberg/\">Gutenberg on GitHub</a>, and join the #core-editor channel in <a href=\"https://make.wordpress.org/chat/\">the Making WordPress Slack group</a>.</p>\n\n\n\n<h2>BuddyPress 6.0.0</h2>\n\n\n\n<p><a href=\"https://buddypress.org/2020/04/buddypress-6-0-0-beta2/\">BuddyPress 6.0.0-beta2</a> was released for testing in mid-April, leading to the <a href=\"https://buddypress.org/2020/04/buddypress-6-0-0-release-candidate/\">BuddyPress 6.0.0 Release Candidate</a>, announced on April 29. This is an important step before&nbsp; the final release of BuddyPress 6.0.0, which is slated for Thursday, May 14. Changes and new features in this release include moving the profile photo and user cover image under the BP Members component, and a new BP Rest API. Additionally, this release will introduce the first round of BuddyPress Blocks! Last, but not least, BuddyPress 6.0.0 will require at least PHP 5.6 and WordPress 4.8.&nbsp;</p>\n\n\n\n<p>Want to get involved? <a href=\"https://buddypress.org/2020/04/buddypress-6-0-0-release-candidate/\">Test the 6.0.0-RC here</a>! You can also help by <a href=\"https://translate.wordpress.org/projects/wp-plugins/buddypress/dev/\">translating BuddyPress into another language</a>, or let the team know of any issues you find, either in <a href=\"https://buddypress.org/support\">the support forums</a> and/or in their <a href=\"https://buddypress.trac.wordpress.org/\">development tracker</a>.&nbsp;</p>\n\n\n\n<h2>WordCamp US goes online, apply to speak!</h2>\n\n\n\n<p>WordCamp US will <a href=\"https://2020.us.wordcamp.org/2020/04/30/wordcamp-us-will-be-virtually-awesome/\">take place online due to the COVID-19 pandemic</a>. The event still runs from October 27-29, 2020, and will be free to anyone who wishes to attend. The team plans to offer&nbsp; what WCUS has historically brought to the community in person: sessions and workshops, Contributor Day, a hallway track, and of course, State of the Word.&nbsp;</p>\n\n\n\n<p>Interested in speaking at WCUS? The <a href=\"https://2020.us.wordcamp.org/2020/03/16/call-for-speakers-is-now-open/\">Call for Speakers</a> is still open! You can apply to speak on the <a href=\"https://2020.wcus-speakers.org/\">speaker application site</a> until May 31, 2020 at 11:59 pm CDT (UTC-5).&nbsp;</p>\n\n\n\n<p>Additionally, the <a href=\"https://2020.us.wordcamp.org/2020/03/23/call-for-cities-for-wcus-2021-2022/\">Call for Cities is also open</a>. If your community is interested in hosting WordCamp US in 2021 &amp; 2022, please <a href=\"https://wordcampcentral.survey.fm/wcus-2021-2022\">fill out this application</a>.&nbsp;</p>\n\n\n\n<p>For the latest information about WordCamp US, sign up for updates on the <a href=\"https://2020.us.wordcamp.org/\">website</a>, or follow <a href=\"https://www.facebook.com/WordCampUSA/\">Facebook</a>, <a href=\"https://twitter.com/WordCampUS\">Twitter</a>, or <a href=\"https://www.instagram.com/wordcampus/?hl=en\">Instagram</a>.&nbsp;</p>\n\n\n\n<h2>WordCamp Europe 2020 goes virtual&nbsp;</h2>\n\n\n\n<p>Last month, WordCamp Europe decided to postpone its Porto event to 2021. This April, the WCEU organizing team announced that the <a href=\"https://2020.europe.wordcamp.org/2020/04/06/wordcamp-europe-2020-is-moving-online/\">2020 WordCamp will be online</a>! WordCamp Europe 2020 Online will take place from June 4-6, 2020, and tickets will be free. There will be a <a href=\"https://make.wordpress.org/updates/2020/04/15/wordcamp-europe-2020-contributor-day-update/\">virtual Contributor Day</a> on June 4, and then two half days of live-streamed talks and workshops. To participate, get your free ticket <a href=\"https://2020.europe.wordcamp.org/tickets/\">here</a>.&nbsp;</p>\n\n\n\n<p>To get the latest news for WordCamp Europe 2020 Online, follow on <a href=\"https://www.facebook.com/WCEurope/\">Facebook</a>, <a href=\"https://twitter.com/wceurope?lang=en\">Twitter</a>, <a href=\"https://www.linkedin.com/company/wordcampeurope/\">LinkedIn</a>, or on <a href=\"https://www.instagram.com/wceurope/?hl=en\">Instagram</a>.&nbsp;</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading</h2>\n\n\n\n<ul><li><a href=\"https://make.wordpress.org/core/2020/04/08/wordpress-5-5-call-for-tickets/\">The WordPress 5.5 release cycle has officially been kicked off with a Call for Tickets</a>.</li><li><a href=\"https://make.wordpress.org/themes/2020/04/03/proposal-github-theme-review/\">Read the proposal for a new GitHub Theme review process.</a>.</li><li><a href=\"https://wordpress.tv/event/wpblocktalk-april-2020/\">Did you miss WPBlockTalk, or want to watch that really interesting session again? All talks are available on WordPress.tv!</a></li><li><a href=\"https://make.wordpress.org/core/2020/04/01/feature-plugin-proposal-wp-consent-api/\">The Core team has introduced a proposal for a new Consent API as a feature plugin</a>.</li><li><a href=\"https://make.wordpress.org/updates/2020/04/30/quarterly-updates-q1-2020/\">All WordPress contribution teams have reported on their recent work in the first quarterly update of 2020</a>.</li></ul>\n\n\n\n<p><em>Have a story that we should include 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:\"Mon, 04 May 2020 09:31: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:10:\"Angela Jin\";s: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:48:\"BuddyPress: BuddyPress 6.0.0 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=311439\";s:7:\"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/2020/05/buddypress-6-0-0-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2943:\"<p>Hello,</p>\n\n\n\n<p>The second <a href=\"https://downloads.wordpress.org/plugin/buddypress.6.0.0-RC2.zip\">release candidate for BuddyPress 6.0.0</a> is now available for an ultimate round of testing!</p>\n\n\n\n<p>Since the <a href=\"https://buddypress.org/2020/04/buddypress-6-0-0-release-candidate/\">first release candidate</a> and thanks to the <a href=\"https://make.wordpress.org/polyglots/\">WordPress Polyglots Team</a> (Many thanks to <a href=\"https://profiles.wordpress.org/tobifjellner/\">@tobifjellner</a> &amp; <a href=\"https://profiles.wordpress.org/ocean90/\">@ocean90</a>), we&#8217;ve found an issue involving the translation of our new BuddyPress Blocks. The BP Blocks are using <a href=\"https://make.wordpress.org/core/2018/11/09/new-javascript-i18n-support-in-wordpress/\">JavaScript i18n</a> functions and a specific task of our build process was preventing <a href=\"https://make.wordpress.org/polyglots/handbook/tools/glotpress-translate-wordpress-org/\">GlotPress</a> from identifying the strings needing to be translated.</p>\n\n\n\n<p>We believe <a href=\"https://buddypress.trac.wordpress.org/ticket/8290\">we&#8217;ve fixed this issue</a> and this new release candidate will help us confirm it.</p>\n\n\n\n<p>BuddPress 6.0.0 is&nbsp;still slated for release&nbsp;on&nbsp;<strong>Thursday, May 14</strong>, and if you haven’t tried 6.0.0 yet,&nbsp;<strong>it&#8217;s probably your last chance to do so!</strong></p>\n\n\n\n<p>You can test the <a href=\"https://downloads.wordpress.org/plugin/buddypress.6.0.0-RC2.zip\">6.0.0-RC2</a> pre-release in 4 ways :</p>\n\n\n\n<ul><li>Try the <a href=\"https://wordpress.org/plugins/bp-beta-tester/\">BP Beta Tester</a> plugin.</li><li><a href=\"https://downloads.wordpress.org/plugin/buddypress.6.0.0-RC2.zip\">Download the release candidate here (zip file)</a>.</li><li>Check out our SVN repository: <code>svn co https://buddypress.svn.wordpress.org/trunk/</code></li><li>Clone our read-only Git repository: <code>git clone git://buddypress.git.wordpress.org/</code></li></ul>\n\n\n\n<p>A detailed changelog will be part of our official release note, but&nbsp;you can get a quick overview by reading the post about the&nbsp;<a href=\"https://buddypress.org/2020/03/buddypress-6-0-0-beta1/\">6.0.0 Beta1</a>&nbsp;release.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Polyglots contributors, there&#8217;s some extra work.</h2>\n\n\n\n<p>This release candidate should introduce around 50 new strings to translate (the ones that were not included previously due to the issue), so thanks in advance for your comprehension and for your help <span class=\"dashicons dashicons-heart\"></span>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>As usual, <strong>if you think you’ve found a bug</strong>, please let us know reporting it on&nbsp;<a href=\"https://buddypress.org/support\">the support forums</a>&nbsp;and/or&nbsp;on&nbsp;<a href=\"https://buddypress.trac.wordpress.org/\">our development tracker</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 03 May 2020 04:45: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:\"Mathieu Viet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:99:\"WPTavern: FOSS Responders Group Brings Financial Help to Open Source Ecosystem Affected by COVID-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=99213\";s:7:\"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:243:\"https://wptavern.com/foss-responders-group-brings-financial-help-to-open-source-ecosystem-affected-by-covid-19?utm_source=rss&utm_medium=rss&utm_campaign=foss-responders-group-brings-financial-help-to-open-source-ecosystem-affected-by-covid-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:2003:\"<p>The pandemic has caused economic hardships and upheaval in nearly every industry. Open source communities and contributors have been affected in a myriad of ways &ndash; whether it&rsquo;s a loss of donations, the burden of nonrefundable travel expenses for canceled conferences, or severely diminished business and fundraising opportunities. </p>\n\n\n\n<p><a href=\"https://fossresponders.com/\">FOSS Responders</a> is a working group of volunteers that aims to future-proof the open source infrastructure we rely on by helping sustain those who maintain the software. The group&rsquo;s website allows those in need to apply for emergency funds. FOSS Responders is <a href=\"https://opencollective.com/foss-responders\">raising money on Open Collective</a> and 100% of donations go to open source technologists in need. So far the group has an estimated annual budget of $8,145.05. Open Collective is also waiving its platform fees on COVID-19 solidarity collectives until the end of June.</p>\n\n\n\n<p>On May 22, FOSS Responders plans to host a <a href=\"https://opencollective.com/foss-responders/events/virtual-funding-event-q2-2020-4edd1e3a\">virtual funding event</a> to provide financial support for organizations affected by the profound economic disruptions caused by the pandemic. Organizers have a $5,000 goal for ticket revenue from general event ticket sales.</p>\n\n\n\n<p>In addition to providing emergency funds, the FOSS Responders group is aiming to address non-financial needs. Open source projects that relied heavily on events for fundraising need help amplifying their projects and recruiting volunteers. FOSS Responders is also creating a Resource Center for projects to find tips and tricks on how to manage fully virtual community interactions and events. Anyone with a skill or service to volunteer can get in touch on the <a href=\"https://fossresponders.com/\">FOSS Responders website</a> and the team will work as matchmakers to connect experts with projects that need help.</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:\"Fri, 01 May 2020 23:04:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:79:\"WPTavern: Block Lab Team Joins WP Engine, Looks to the Future of Block Building\";s:7:\"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=98935\";s:7:\"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:201:\"https://wptavern.com/block-lab-team-joins-wp-engine-looks-to-the-future-of-block-building?utm_source=rss&utm_medium=rss&utm_campaign=block-lab-team-joins-wp-engine-looks-to-the-future-of-block-building\";s: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:5636:\"<p class=\"has-drop-cap is-style-default\">The three-person Block Lab team of Luke Carbis, Ryan Kienstra, and Rob Stinson is <a href=\"https://getblocklab.com/the-block-lab-team-are-joining-wp-engine/\">joining WP Engine</a> to work on the company&rsquo;s block editor projects. WP Engine approached the team members after seeing how successful the <a href=\"https://getblocklab.com/\">Block Lab project</a> had grown and made them an offer.  The team will be able to continue building projects with solid financial backing.</p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/block-lab/\">Block Lab</a> is a plugin that was created to allow other developers to build blocks without needing to wade through the depths of complex JavaScript programming. It is a way to get your feet wet in the block development pool without diving in head first. The plugin has built a solid reputation based on user reviews. Out of 39 submissions, it has received 38 five-star ratings.</p>\n\n\n\n<p>&ldquo;From the start, Block Lab has been our answer to the question of &lsquo;how can I lower the barrier to entry for creating custom blocks,\'&rdquo; said Stinson. He said the plugin has done two important things for developers. It has given them an easy-to-use admin interface to work from and a simplified templating experience that is aligned with traditional workflows. &ldquo;It&rsquo;s helped folk who haven&rsquo;t had the time to summit the JS-all-the-things mountain or simply provide those that are looking for a standardized system that does a lot of the heavy lifting for them.&rdquo;</p>\n\n\n\n<p>The Block Lab plugin is being phased out, but the team assures that the plugin&rsquo;s current users will not be left in the dust. The plan is to continue supporting the plugin through bug and compatibility fixes for the next year. Pro users will also receive the same support until their license expires. In the long term outlook, the team plans to build a migration path to the new tools they will be building under the WP Engine banner.</p>\n\n\n\n<p>Stinson said that the plugin should work well for a long time to come because it was built by Carbis and Kienstra, two of the best engineers he has worked with. However, he stresses that the work they will be doing with WP Engine will exceed anything they have done with Block Lab.</p>\n\n\n\n<p>&ldquo;We&rsquo;ll be working on technology there that is focused on the Block Editor though, and a part of that will be taking what we&rsquo;ve done with Block Lab and introducing the feature set to the WP Engine suite of products,&rdquo; he said. &ldquo;The alignment will be close and will offer existing Block Lab users an easy migration experience.&rdquo;</p>\n\n\n\n<p>While the Block Lab plugin will see an end, the features the team has worked on will live on in some form.</p>\n\n\n\n<h2>A New Beginning</h2>\n\n\n\n<p class=\"has-drop-cap\">Before taking on roles with WP Engine, each member of the Block Lab team was paying the bills through agency and freelance work. Block Lab was merely a side project they were handling in their free time, but it was slowly growing both in scale and financially.</p>\n\n\n\n<p>&ldquo;Getting to a place where we could give it full-time focus was easily two to three years away though,&rdquo; said Stinson, &ldquo;and we have always been incredibly conscious of the things we wanted to be doing with it and how much the time factor was a limitation. With WP Engine, we&rsquo;re equipped to take the product vision we had for Block Lab and basically strap a rocket to it. Not only are we able to devote our full attention, but we also have the incredible support and resources of WP Engine behind us.&rdquo;</p>\n\n\n\n<p>Stinson is looking forward to the transition within the state of the current WordPress ecosystem. The team can walk into a fresh beginning with the full weight of a major company behind them. &ldquo;Between the classic way of building with WordPress and this new block-first frontier, being set up right now to build and contribute is incredible!&rdquo; he said.</p>\n\n\n\n<p>The team had an existing roadmap and backlog of features they wanted to develop. However, with Block Lab being only a side project, it meant those features would have taken much longer to build. They can now pursue them full time.</p>\n\n\n\n<p>&ldquo;We saw what Block Lab has currently as a necessary baseline for a plugin that equipped folks to create custom blocks, but what we have planned and are dreaming about goes so much further,&rdquo; said Stinson. &ldquo;Joining WP Engine unleashes us to chase down that work faster and with more focus. Another really exciting piece of this is that with our focus we are better positioned to offer insights and contribution to the larger block editor project through core and community contributions.&rdquo;</p>\n\n\n\n<p>The team now has the opportunity to be a pioneer in the years to come. They have proved they can build a useful tool on top of the block editor. The next step is seeing where they take it and whether they can get more developers to join them into a world of building blocks.</p>\n\n\n\n<p>&ldquo;The shift in thinking around how a website is structured towards one that is powered by &lsquo;blocks&rsquo; is a journey that the majority of the WP community is still on,&rdquo; said Stinson. &ldquo;A big part of my vision is having a larger portion of the community up to speed and onboard with this. With more people operating within that zone, more great work and tooling will be produced. By lowering the barrier to entry through Block Lab and what we have planned at WP Engine, it will help to get more people in that zone.&rdquo;</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, 01 May 2020 17:16:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:63:\"WPTavern: WordCamp US 2020 Goes Online, Cancels In-Person Event\";s:7:\"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=99149\";s:7:\"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:169:\"https://wptavern.com/wordcamp-us-2020-goes-online-cancels-in-person-event?utm_source=rss&utm_medium=rss&utm_campaign=wordcamp-us-2020-goes-online-cancels-in-person-event\";s: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:3758:\"<p>WordCamp US 2020 organizers have <a href=\"https://2020.us.wordcamp.org/2020/04/30/wordcamp-us-will-be-virtually-awesome/\">cancelled the in-person event</a> in favor of hosting it as an online-only conference. With more than a million confirmed coronavirus cases in the U.S. today, 63,000+ deaths, and <a href=\"https://www.cnn.com/2020/04/30/health/us-coronavirus-thursday/index.html\">31 states set to partially reopen</a> this weekend, the pandemic&rsquo;s trajectory throughout the country has become increasingly uncertain. </p>\n\n\n\n<p>Many statewide stay-at-home orders are expiring tomorrow, despite <a href=\"https://www.nbcnews.com/health/health-news/guidelines-call-14-day-drop-cases-reopen-no-state-has-n1194191\">no state having met the federal guidelines for reopening</a>. Some businesses are opting to reopen in a limited capacity, but the general populace is still wary of returning to their previous way of life. In the state of Missouri, where WordCamp US was to be hosted in 2020, there will be no limitations on social gatherings as of May 4, as long as individuals maintain social distancing. It&rsquo;s not yet possible to predict what will be happening in the area in October or how it might impact an event with international attendees. </p>\n\n\n\n<p>After organizers extended the WCUS speaker application deadline for another 1.5 months on April 17,  it seemed the general disinclination towards traveling and gathering in large groups had already taken hold. Booking hotels and travel arrangements five months in advance is still too much of a gamble for speakers and attendees. </p>\n\n\n\n<p>The WCUS organizing team emphasized the longterm health and safety of the WordPress community as their primary concern in today&rsquo;s <a href=\"https://2020.us.wordcamp.org/2020/04/30/wordcamp-us-will-be-virtually-awesome/\">announcement</a> about moving to an online-only event:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>The WCUS organizing team has been working with WordCamp Central and local health authorities to try to make sense of the current COVID-19 pandemic and what it means for our event in St. Louis this October. Throughout this, we have held the longterm health and safety of the WordPress community as the highest priority of our event. To move forward in a way that honors what is best for our community &ndash; both locally and globally &ndash; we have made the hard choice to convert WordCamp US 2020 to an online only event.&nbsp;</p></blockquote>\n\n\n\n<p>WCUS will still happen on the originally scheduled dates, October 27th &ndash; 29th. Organizers plan to run sessions, workshops, and a virtual Contributor Day, along with the annual State of the Word address from Matt Mullenweg. They are also putting together a hallway track, some form of swag, and creative ways for attendees to connect, which will be announced at a later date. </p>\n\n\n\n<p>WCUS is now free for anyone who wants to attend. Without the necessity to rent a venue, provide lunches, and other physical aspects of the event, sponsorships are easily able to cover the cost of streaming to an unlimited number of attendees. </p>\n\n\n\n<p>The <a href=\"https://2020.wcus-speakers.org/\">call for speakers</a> is open until May 31, 2020 at 11:59 pm CDT. WCUS is still accepting sponsorships and will be publishing a set of unique sponsorship packages for the virtual event. Organizers plan to put out a call for volunteers in the near future.  </p>\n\n\n\n<p>WordCamp US follows other major regional WordCamps in Asia and Europe that have canceled in-person events due to the pandemic. Several other upcoming WordCamps, including events in Spain, Kent, Denver, and Minneapolis / Saint Paul,&nbsp;have also announced that they are transitioning to online-only events.</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, 30 Apr 2020 22:49: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: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:103:\"WPTavern: Gutenberg 8.0 Merges Block and Pattern Inserter, Adds Inline Formats, and Updates Code 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=99130\";s:7:\"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:247:\"https://wptavern.com/gutenberg-8-0-merges-block-and-pattern-inserter-adds-inline-formats-and-updates-code-editor?utm_source=rss&utm_medium=rss&utm_campaign=gutenberg-8-0-merges-block-and-pattern-inserter-adds-inline-formats-and-updates-code-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:5033:\"<p class=\"has-drop-cap\">The team behind the Gutenberg plugin <a href=\"https://make.wordpress.org/core/2020/04/29/whats-new-in-gutenberg-29-april/\">shipped version 8.0 yesterday</a>. The update adds some nice user-facing changes, including a merged block and pattern inserter, new inline formatting options, and visual changes to the code editor. Over two dozen bug fixes were included in the release, along with several enhancements.</p>\n\n\n\n<p>Designers on the project <a href=\"https://github.com/WordPress/gutenberg/pull/21515\">updated the welcome box illustrations</a> to match the current UI. Because the welcome modal should already be dismissed for current users, only new users should see these changes.</p>\n\n\n\n<p>For theme authors, the post title and placeholder paragraph text for the block appender will <a href=\"https://github.com/WordPress/gutenberg/pull/21749\">inherit body font styles</a>. Previously, they had specific styles attached to them in the editor. The current downside is that the post title is not an <code>&lt;h1&gt;</code> element so it cannot automatically inherit styles for that element. However, that will change once the post title becomes a true block in the editor.</p>\n\n\n\n<p>The editor also now <a href=\"https://github.com/WordPress/gutenberg/pull/21608\">clears centered blocks</a> following a floated block. This is an opinionated design change, but it should not negatively affect most themes. However, theme authors should double-check their theme styles to be sure.</p>\n\n\n\n<h2>Updated Block and Pattern Inserter</h2>\n\n\n\n<img />Patterns available in the inserter.\n\n\n\n<p class=\"has-drop-cap\">The development team <a href=\"https://github.com/WordPress/gutenberg/pull/20951\">added patterns to the existing inserter</a>. Now, both blocks and patterns have an individual tab within a unified interface. This is yet another step in the evolution of the pattern system that should land in core WordPress this year.</p>\n\n\n\n<p>Right now, the experience is a two-steps-forward-one-step-back deal. The inserter&rsquo;s behavior has improved and it is great to see patterns merged into it. However, all blocks and patterns are within long lists that require scrolling to dig through. Block categories are no longer tabbed in version 8.0, which is a regression from previous versions. I am certain this will be resolved soon enough, but it is a little frustrating locating a block in the list at the moment.</p>\n\n\n\n<p>Merging patterns into the inserter is an ongoing process. There is still a lot of work to do before the final product is polished and included in core WordPress.</p>\n\n\n\n<p>The following are some key items that need to be addressed in upcoming versions of Gutenberg:</p>\n\n\n\n<ul><li>Patterns should be categorized the same as blocks.</li><li>The block search box should switch to a pattern search box when viewing patterns.</li><li>Pattern titles should be reintroduced in the interface (removed in 8.0).</li></ul>\n\n\n\n<p>Of course, there is a host of other minor and major issues the team will need to cover to nail down the user experience. For now, the interface for patterns continues to improve.</p>\n\n\n\n<h2>Subscript and Superscript Formats</h2>\n\n\n\n<img />Adding superscript text to the editor.\n\n\n\n<p class=\"has-drop-cap\">Gutenberg developers added <a href=\"https://github.com/WordPress/gutenberg/pull/21819\">two new inline formatting options</a> to the editor toolbar: subscript and superscript. These options allow users to add text such as X<sub>2</sub> and X<sup>2</sup>.  They work the same as bold, italic, inline code, and other options.</p>\n\n\n\n<p>The two formatting options represent their respective inline HTML tags, <code>&lt;sub&gt;</code> for subscript and <code>&lt;sup&gt;</code> for superscript. With the addition of the elements, the toolbar now covers most of the widely-used inline HTML tags. The only other tags that are low on my wish list are <code>&lt;abbr&gt;</code>, <code>&lt;del&gt;</code>, and <code>&lt;ins&gt;</code>, but I could live with those remaining firmly in plugin territory.</p>\n\n\n\n<h2>Improved Code Editor</h2>\n\n\n\n<img />Updated code-editing view.\n\n\n\n<p class=\"has-drop-cap\">The code editor <a href=\"https://github.com/WordPress/gutenberg/pull/21643\">received a much-needed overhaul</a> in the 8.0 update. Everything from the post title to the content is set in a monospace font, and the width of the code editing box spans the editing area. It should be a welcome change for those who need to switch to code view once in a while.</p>\n\n\n\n<p>The next step to polishing the code editor (and the HTML block) would be to add syntax highlighting. In the current version, the HTML output is plain text. Given the extra markup that the block editor produces, it can be a bit of a jumbled mess to wade through. Basic syntax highlighting would improve the experience several times over. There is a <a href=\"https://github.com/WordPress/gutenberg/issues/10423\">GitHub ticket</a> for adding the feature, but it has not seen any movement in several months.</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, 30 Apr 2020 19:48: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:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:46:\"BuddyPress: BuddyPress 6.0.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=311340\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://buddypress.org/2020/04/buddypress-6-0-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3360:\"<p>Hello BuddyPress community members!</p>\n\n\n\n<p>The first <a href=\"https://downloads.wordpress.org/plugin/buddypress.6.0.0-RC1.zip\">release candidate for BuddyPress 6.0.0</a> is now available for a last round of testing!</p>\n\n\n\n<p>This is an important milestone as we progress toward the BuddyPress 6.0.0 final release date. “Release Candidate” means that we think the new version is ready for release, but with more than 200,000 active installs, hundreds of BuddyPress plugins and Thousands of WordPress themes, it’s possible something was missed.</p>\n\n\n\n<div class=\"wp-block-image\"><img src=\"https://buddypress.org/wp-content/uploads/1/2020/04/bp-6-0-0-slated-1024x576.jpg\" alt=\"\" class=\"wp-image-311341\" /></div>\n\n\n\n<p>BuddPress 6.0.0 is&nbsp;slated for release&nbsp;on&nbsp;<strong>Thursday, May 14</strong>, but we need&nbsp;<em>your</em>&nbsp;help to get there—if you haven’t tried 6.0.0 yet,&nbsp;<strong>now is the time!</strong></p>\n\n\n\n<p>You can test the&nbsp;<a href=\"https://downloads.wordpress.org/plugin/buddypress.6.0.0-RC1.zip\">6.0.0-RC</a>&nbsp;pre-release in 4 ways :</p>\n\n\n\n<ul><li>Try the&nbsp;<a href=\"https://wordpress.org/plugins/bp-beta-tester/\">BP Beta Tester</a>&nbsp;plugin.</li><li><a href=\"https://downloads.wordpress.org/plugin/buddypress.6.0.0-RC1.zip\">Download the release candidate here (zip file)</a>.</li><li>Check out our SVN repository:&nbsp;<code>svn co https://buddypress.svn.wordpress.org/trunk/</code></li><li>Clone our read-only Git repository:&nbsp;<code>git clone git://buddypress.git.wordpress.org/</code></li></ul>\n\n\n\n<p>A detailed changelog will be part of our official release note, but&nbsp;you can get a quick overview by reading the post about the&nbsp;<a href=\"https://buddypress.org/2020/03/buddypress-6-0-0-beta1/\">6.0.0 Beta1</a>&nbsp;release.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Plugin and Theme Developers</h2>\n\n\n\n<p>Please test your plugins and themes against BuddyPress 6.0.0. If you find compatibility problems, please be sure to post to this specific&nbsp;<a href=\"https://buddypress.org/support/topic/buddypress-6-0-0-release-candidate/\">support topic</a>&nbsp;so we can figure those out before the final release. We strongly advise you to have a look at the <a href=\"https://bpdevel.wordpress.com/category/development-notes/6-0/\">6.0.0 development notes</a> to figure out what to focus on during your testing.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2>Polyglots, we need you!</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp-plugins/buddypress/\">Help us translate BuddyPress into many languages!</a> This release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#string-freeze\">string freeze</a> point of the 6.0.0 release schedule. For your information, we are now using WP CLI to generate the buddypress.pot file and you&#8217;ll see we&#8217;ve paid attention to add translators comments to all the strings needing some.</p>\n\n\n\n<p><strong>If you think you’ve found a bug</strong>, please let us know reporting it on&nbsp;<a href=\"https://buddypress.org/support\">the support forums</a>&nbsp;and/or&nbsp;on&nbsp;<a href=\"https://buddypress.trac.wordpress.org/\">our development tracker</a>.</p>\n\n\n\n<p>Thanks in advance for giving the release candidate a test drive!</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, 30 Apr 2020 00:45:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:76:\"WPTavern: WordPress 5.4.1 Addresses 7 Security Issues and Fixes Several Bugs\";s:7:\"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=99123\";s:7:\"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:197:\"https://wptavern.com/wordpress-5-4-1-addresses-7-security-issues-and-fixes-several-bugs?utm_source=rss&utm_medium=rss&utm_campaign=wordpress-5-4-1-addresses-7-security-issues-and-fixes-several-bugs\";s: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:5888:\"<p class=\"has-drop-cap\">WordPress 5.4.1, <a href=\"https://wordpress.org/news/2020/04/wordpress-5-4-1/\">a security and maintenance release</a>, dropped today. The release addresses seven security issues, which were all responsibly disclosed to the WordPress security team. Core developers also included several fixes for code regressions in the previous version 5.4 release and ported bug fixes to the block editor from the Gutenberg plugin.</p>\n\n\n\n<p>End-users with automatic updates enabled should begin seeing their sites updated shortly. Other users should update as soon as possible to make sure they are running a version of WordPress with the latest security fixes.</p>\n\n\n\n<p>The WordPress support team has published the <a href=\"https://wordpress.org/support/wordpress-version/version-5-4-1/\">full release documentation</a> for those who wish to view it.</p>\n\n\n\n<p>Security fixes were added to every major version of WordPress from 5.4 back to 3.7.  The following vulnerabilities were addressed:</p>\n\n\n\n<ul><li>Password reset tokens were not correctly invalidated.</li><li>Some private posts could be viewed without authentication.</li><li>Two cross-site scripting (XSS) vulnerabilities in the customizer.</li><li>XSS issue in the search block.</li><li>XSS issue in the WordPress object cache.</li><li>XSS issue with file uploads.</li><li>XSS issue in the block editor for WordPress 5.4 Release Candidates 1 and 2 (fixed in 5.4 RC5).</li></ul>\n\n\n\n<h2>Block Editor Updates</h2>\n\n\n\n<p class=\"has-drop-cap\">Several fixes were high priority enough from the Gutenberg plugin to port to the WordPress 5.4.1 release. The biggest user-facing issues were a broken block duplication keyboard shortcut, misaligned buttons blocks, and odd scrolling behavior when attempting to edit text in a long block.</p>\n\n\n\n<p>The following is a full list of the issues the development team addressed:</p>\n\n\n\n<ul><li>Fixed the <code>Ctrl</code> + <code>Shift</code> + <code>D</code> keyboard shortcut for duplicating a block, which no longer throws an error.</li><li>Adds correct margins when aligning the buttons block left or right.</li><li>Prevents the editor from scrolling to the top when clicking to edit a large block, such as a long list.</li><li>No longer hides the toolbar for plugins that have text inputs in the toolbar.</li><li>Stops a JavaScript crash with the latest posts block when an image has missing dimensions.</li><li>Escapes the HTML class for the RSS and search blocks to prevent malformed markup.</li></ul>\n\n\n\n<p>To review the code changes to the block editor in-depth, see the <a href=\"https://github.com/WordPress/gutenberg/pulls?q=is%3Apr+sort%3Aupdated-desc+label%3A%22Backport+to+WP+Core%22+is%3Aclosed\">full ticket list</a>.</p>\n\n\n\n<h2>Other Core WordPress Changes</h2>\n\n\n\n<p class=\"has-drop-cap\">Users who run their browsers in dark mode can rejoice if they also use the core WordPress favicon. The team <a href=\"https://core.trac.wordpress.org/ticket/49798\">introduced an updated favicon</a> with a light background so that it no longer washes out. It is a minor fix but makes the famed WordPress logo look more professional.</p>\n\n\n\n<p>The heading level, which was previously set to <code>&lt;h3&gt;</code>, has been <a href=\"https://core.trac.wordpress.org/ticket/49838\">bumped up one level</a> on the WordPress admin freedoms screen (<code>wp-admin/freedoms.php</code>). This change provides the proper heading level and should help screen-reading users better navigate the page.</p>\n\n\n\n<p>For users on the Edge or iOS Safari browsers who <a href=\"https://core.trac.wordpress.org/ticket/49753\">could not select files in the media library</a>, it was due to a CSS issue that hid the input. This should no longer be an issue in the new update.</p>\n\n\n\n<p>WordPress 5.4.1 addressed some regressions from the previous version. One revolves around posting by email when no post title was added. In that scenario, the <a href=\"https://core.trac.wordpress.org/ticket/49853\">email subject should have been used as the title</a>, but this was broken by a code change in WordPress 5.4. For developers, the <code>category_link</code> and <code>tag_link</code> filter hooks were <a href=\"https://core.trac.wordpress.org/ticket/49759\">mistakenly deprecated</a> previously and are now once again good to use without throwing a notice.</p>\n\n\n\n<p>Plugin developers have a few bug fixes to look forward to. The <code>WP_Site_Health</code> object is now instantiated after the <code>plugins_loaded</code> and <code>after_setup_theme</code> hooks, which means they can perform necessary actions <a href=\"https://core.trac.wordpress.org/ticket/49824\">before the site health is checked</a>. The deprecated <code>wp_get_user_request_data()</code> function is now <a href=\"https://core.trac.wordpress.org/ticket/49802\">correctly loaded on the front end</a>, which was causing errors with plugins such as BuddyPress.</p>\n\n\n\n<p>In a larger design change, plugin authors who <a href=\"https://core.trac.wordpress.org/ticket/49772\">add custom content to the privacy policy guide</a> can use more HTML elements. In WordPress 5.4, the guide design was updated to add a white background behind the suggested text. However, the new code only applied to paragraphs. Now, the design supports tables, lists, and other elements that are commonly used. Unordered lists also have bullet points to distinguish them from paragraphs.</p>\n\n\n\n<p>The development team fixed two issues with the REST API. The first <a href=\"https://core.trac.wordpress.org/ticket/49645\">corrected an issue</a> with the <code>get_item</code> permissions check. The second fixed the <code>_fields</code> filtering. The core code now uses the <code>rest_is_field_included()</code> function to <a href=\"https://core.trac.wordpress.org/ticket/49648\">determine which fields to include</a> to permit filtering by nested field properties.</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, 29 Apr 2020 20:39: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:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:35:\"WordPress.org blog: WordPress 5.4.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=8553\";s:7:\"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://wordpress.org/news/2020/04/wordpress-5-4-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6919:\"<p>WordPress 5.4.1 is now available!</p>\n\n\n\n<p>This security and maintenance release features 17 <a href=\"https://core.trac.wordpress.org/query?milestone=5.4.1&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priorityhttps://core.trac.wordpress.org/query?milestone=5.4.1&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">bug fixes</a> in addition to 7 security fixes. Because this is a <strong>security release</strong>, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated.</p>\n\n\n\n<p>WordPress 5.4.1 is a short-cycle security and maintenance release. The next major release will be version 5.5.</p>\n\n\n\n<p>You can download WordPress 5.4.1 by downloading from WordPress.org, or visit your Dashboard → Updates and click Update Now.</p>\n\n\n\n<p>If you have sites that support automatic background updates, they’ve already started the update process.</p>\n\n\n\n<h3>Security Updates</h3>\n\n\n\n<p>Seven security issues affect WordPress versions 5.4 and earlier. If you haven’t yet updated to 5.4, all WordPress versions since 3.7 have also been updated to fix the following security issues:</p>\n\n\n\n<ul><li>Props to <a href=\"https://hackerone.com/hijibiji\">Muaz Bin Abdus Sattar</a> and <a href=\"https://hackerone.com/dyennez\">Jannes</a> who both independently reported an issue where password reset tokens were not properly invalidated.</li><li>Props to <a href=\"https://github.com/ka1n4t\">ka1n4t</a> for finding an issue where certain private posts can be viewed unauthenticated.</li><li>Props to <a href=\"https://evanricafort.com/\">Evan Ricafort</a> for discovering an XSS issue in the Customizer</li><li>Props to Ben Bidner from the WordPress Security Team who discovered an XSS issue in the search block.</li><li>Props to Nick Daugherty from <a href=\"https://wpvip.com\">WordPress VIP</a> / WordPress Security Team who discovered an XSS issue in <code>wp-object-cache</code>.</li><li>Props to Ronnie Goodrich (<a href=\"https://hackerone.com/kahoots\">Kahoots</a>) and <a href=\"http://pentestusa.com/\">Jason Medeiros</a> who independently reported an XSS issue in file uploads.</li><li>Props to <a href=\"https://weston.ruter.net/\">Weston Ruter</a> for fixing a stored XSS vulnerability in the WordPress customizer.</li><li>Additionally, an authenticated XSS issue in the block editor was discovered by Nguyen The Duc (<a href=\"https://twitter.com/ducnt_\">ducnt</a>) in WordPress 5.4 RC1 and RC2. It was fixed in 5.4 RC5. We wanted to be sure to give credit and thank them for all of their work in making WordPress more secure.</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>. This gave the security team time to fix the vulnerabilities before WordPress sites could be attacked.</p>\n\n\n\n<p>For more information, browse the <a href=\"https://core.trac.wordpress.org/query?milestone=5.4.1&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">full list of changes</a> on Trac, or check out the <a href=\"https://wordpress.org/support/wordpress-version/version-5-4-1/\">version 5.4.1 HelpHub documentation page</a>.</p>\n\n\n\n<p>In addition to the security researchers mentioned above, thank you to everyone who helped make WordPress 5.4.1 happen:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/aduth/\">Andrew Duthie</a>, <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a>, <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a>, <a href=\"https://profiles.wordpress.org/arnaudbroes/\">arnaudbroes</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten/\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/dhrrob/\">DhrRob</a>, <a href=\"https://profiles.wordpress.org/dono12/\">Dono12</a>, <a href=\"https://profiles.wordpress.org/dudo/\">dudo</a>, <a href=\"https://profiles.wordpress.org/ehtis/\">Ehtisham Siddiqui</a>, <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a>, <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a>, <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a>, <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/whyisjake/\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</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/jorgefilipecosta/\">Jorge Costa</a>, <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a>, <a href=\"https://profiles.wordpress.org/markrh/\">MarkRH</a>, <a href=\"https://profiles.wordpress.org/mattyrob/\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/batmoo/\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/nickdaugherty/\">Nick Daugherty</a>, <a href=\"https://profiles.wordpress.org/noahtallen/\">noahtallen</a>, <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a>, <a href=\"https://profiles.wordpress.org/westi/\">Peter Westwood</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/pikamander2/\">pikamander2</a>, <a href=\"https://profiles.wordpress.org/r-a-y/\">r-a-y</a>, <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a>, <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sorenbronsted/\">Søren Brønsted</a>, <a href=\"https://profiles.wordpress.org/sstoqnov/\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/isabel_brison/\">tellthemachines</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/treecutter/\">treecutter</a>, and <a href=\"https://profiles.wordpress.org/yohannp/\">yohannp</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, 29 Apr 2020 19:56: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jake Spurlock\";s: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:71:\"Akismet: Version 4.1.5 of the Akismet WordPress Plugin is Now Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://blog.akismet.com/?p=2068\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://blog.akismet.com/2020/04/29/version-4-1-5-of-the-akismet-wordpress-plugin-is-now-available/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1339:\"Version 4.1.5 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available. It contains the following changes:\n\n<!-- /wp:paragraph --><!-- wp:list -->\n<ul>\n 	<li>Based on user feedback, we have dropped the in-admin notice explaining the availability of the &#8220;privacy notice&#8221; option in the AKismet settings screen. The option itself is available, but after displaying the notice for the last 2 years, it is now considered a known fact.</li>\n 	<li>Updated the &#8220;Requires at least&#8221; to WP 4.6, based on recommendations from <a href=\"https://wp-info.org/tools/checkplugini18n.php?slug=akismet\" rel=\"nofollow\">https://wp-info.org/tools/checkplugini18n.php?slug=akismet</a></li>\n 	<li>Moved older changelog entries to a separate file to keep the size of this readme reasonable, also based on recommendations from <a href=\"https://wp-info.org/tools/checkplugini18n.php?slug=akismet\" rel=\"nofollow\">https://wp-info.org/tools/checkplugini18n.php?slug=akismet</a></li>\n</ul>\n<!-- /wp:list --><!-- wp:paragraph -->\n\nTo upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.\";s: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, 29 Apr 2020 13:12: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:14:\"Stephane Daury\";s: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:108:\"WPTavern: Tectonic Shifts in Retail Industry are Creating Unprecedented Opportunities for Independent Stores\";s:7:\"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=98957\";s:7:\"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:261:\"https://wptavern.com/tectonic-shifts-in-retail-industry-are-creating-unprecedented-opportunities-for-independent-stores?utm_source=rss&utm_medium=rss&utm_campaign=tectonic-shifts-in-retail-industry-are-creating-unprecedented-opportunities-for-independent-stores\";s: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:12689:\"<p>Major retailers that are part of the critical infrastructure for distributing household essentials, healthcare items, and shelf-stable food, are raking in the cash during this pandemic. While consumer spending at bars, restaurants, and places of entertainment has dropped precipitously, spending at Amazon and Walmart has increased considerably in the past few weeks. The companies cannot hire workers fast enough to meet consumer demand.</p>\n\n\n\n<p>According to a report from <a href=\"https://first.facteus.com/\">Facteus,</a> a firm that provides data from billions of transactions from over 1,000 financial services companies, Amazon and Walmart&rsquo;s year-over-year growth recently hit 80% and 18%, respectively in the past few weeks.</p>\n\n\n\n<div class=\"wp-block-image\"><img /></div>\n\n\n\n<p>The pandemic has worked as a catalyst for pre-existing trends, &ldquo;accelerating the retail reckoning,&rdquo; as Derek Thompson predicts in his recent article on how <a href=\"https://www.theatlantic.com/ideas/archive/2020/04/how-pandemic-will-change-face-retail/610738/\">The Pandemic Will Change American Retail Forever</a>. Brick and mortar storefronts are rapidly becoming obsolete in a world that is forcibly consigned to shopping from home.</p>\n\n\n\n<p>There are still many uncertainties about <em>SARS</em>&ndash;<em>CoV-2</em> and how humanity will safely find its way out of lockdown. Recovery from the virus may not confer long-term immunity and a vaccine may be more than a year away, likely pushing social distancing measures into 2021. Consumer behavior may be forever altered by this experience, as many people may continue to avoid in-person browsing at stores long after the worst is over. </p>\n\n\n\n<p class=\"is-style-highlight\">While it might seem like the retail titans are still uncontested in their domination, there are tectonic shifts happening in the retail industry that are giving smaller, independent stores an unprecedented opportunity to gain new customers online. Merchants that can adapt and excel at getting products to a homebound population stand to be the most resilient during this pandemic.</p>\n\n\n\n<p>In order to keep up with demand, Amazon has had to delay shipments of non-essential items by up to a month in some cases, prioritizing household basics and medical supplies. Major grocery retailers are <a href=\"https://www.digitalcommerce360.com/article/coronavirus-impact-online-retail/\">competing against one another to hire furloughed workers</a> in order to keep up with the demand for groceries with so many people eating at home. Independent stores that can be found online have the opportunity to step up and fill in the gaps where major retailers cannot meet the demand fast enough.</p>\n\n\n\n<p>People are more inclined to support small businesses right now in light of current circumstances. Amazon&rsquo;s severely strained relationship with buyers, sellers, affiliates, and employees is also contributing to consumers&rsquo; eagerness to support independent stores.</p>\n\n\n\n<p>On April 21, <a href=\"https://www.cnbc.com/2020/04/14/amazon-slashes-commission-rates-for-affiliate-program.html\">Amazon slashed commission rates</a> nearly in half for most product categories, negatively impacting media companies and publishers that have not diversified their affiliate revenue sources.</p>\n\n\n\n<p>Amazon&rsquo;s essential workers are planning to join others from Instacart, Whole Foods, Walmart, Target, and FedEx in <a href=\"https://theintercept.com/2020/04/28/coronavirus-may-1-strike-sickout-amazon-target-whole-foods/\">a strike on Friday</a>. They are protesting their employers&rsquo; record corporate profits which they say have come at the expense of workers&rsquo; health and safety. Many consumers have already grappled with a question of conscience in continuing to shop on Amazon after hearing reports of grueling labor conditions for years.</p>\n\n\n\n<p>Another major development in the retail industry has come to light as the result of a recent Wall Street Journal investigation, which revealed that <a href=\"https://www.wsj.com/articles/amazon-scooped-up-data-from-its-own-sellers-to-launch-competing-products-11587650015\">Amazon is using data from its sellers to launch competing products</a>. Merchants selling successfully on Amazon are not safe from having their products copied and their businesses effectively cannibalized.</p>\n\n\n\n<p>Documents obtained by the WSJ, along with interviews from more than 20 former employees of Amazon&rsquo;s private-label business, described how the marketplace operator uses third-party sellers&rsquo; data to gain a competitive advantage: </p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>In one instance, Amazon employees accessed documents and data about a bestselling car-trunk organizer sold by a third-party vendor. The information included total sales, how much the vendor paid Amazon for marketing and shipping, and how much Amazon made on each sale. Amazon&rsquo;s private-label arm later introduced its own car-trunk organizers.</p></blockquote>\n\n\n\n<p>The WSJ expos&eacute; details the great pressure that Amazon executives are under to deliver successful private-label products:</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Former executives said they were told frequently by management that Amazon brands should make up more than 10% of retail sales by 2022.&nbsp;Managers of different private-label product categories have been told to create $1 billion businesses for their segments, they said.</p></blockquote>\n\n\n\n<p>This practice of launching competing products with access to third-party sellers&rsquo; data has been happening for years but is an especially hostile tactic to employ in a time when Amazon&rsquo;s revenue is skyrocketing and small businesses are struggling to stay afloat. It is a sobering reminder of the value of hosting your own online store and the importance of owning your own data.</p>\n\n\n\n<p>There are some positive developments in the industry that should give small business owners confidence in maintaining independence from the dominant forces in online retail. </p>\n\n\n\n<p>Wired published an article this week titled <a href=\"https://www.wired.com/story/coronavirus-book-sales-indie/\">The Coronavirus Pandemic Is Changing How People Buy Books</a> by Kate Knibbs. She describes how one indie bookseller&rsquo;s e-commerce startup has found unlikely success in positioning itself as &ldquo;an easy way to buy books online without further enriching Jeff Bezos:&rdquo;</p>\n\n\n\n<blockquote class=\"wp-block-quote\"><p>Bookshop went from a well-intentioned startup facing an uphill battle to one of the most popular ways to buy books online in a matter of weeks.&nbsp;<em>The</em>&nbsp;<em>New York Times</em>, BuzzFeed, Vox, and&nbsp;<em>The New Republic</em>&nbsp;are all affiliate partners now. Its headcount has doubled in size. Hunter expects to hit $6 million in sales by May, eons ahead of its loftiest projections from January. If the company&rsquo;s performance holds steady, it could do $60 million in sales a year, although Hunter is assuming post-quarantine life will be different. &ldquo;I&rsquo;m sure that when things open back up, our sales will drop, maybe even cut in half,&rdquo; he says. &ldquo;But even then, we&rsquo;re still one of the top 10 bookstores in the US.&rdquo;</p></blockquote>\n\n\n\n<p>Yesterday, <a href=\"https://techcrunch.com/2020/04/28/shopify-launches-shop-a-new-mobile-shopping-app/\">Shopify launched its new Shop app</a>, touting modularized, distributed marketplaces as the future of e-commerce. The app allows shoppers to browse local merchants and make purchases. It provides a new vehicle of exposure for the company&rsquo;s 1m+ merchants on its platform. Businesses do not have to pay to have access to the app, nor do they pay commissions on the sales it generates.</p>\n\n\n\n<p>Google is also making it easier for smaller stores to be found on the web by <a href=\"https://wptavern.com/google-shopping-is-now-open-to-free-product-listings\">opening up the Shopping tab to free listings</a> and partnering with WooCommerce, Shopify, and BigCommerce. This essentially gives more free traffic to small businesses whose listings will break up the longstanding dominance of major online retailers in the Shopping tab. </p>\n\n\n\n<p>WordPress developers with e-commerce experience have the opportunity to build products and stores that will help traditional brick-and-mortar businesses&nbsp;start selling online quickly, so they can continue to find success in. the brave new world of online-first retail. WordPress has a plethora of plugin options for making e-commerce accessible to store owners, no matter how simple or complex the store&rsquo;s requirements.</p>\n\n\n\n<h2>Independent WooCommerce Stores Are Booming</h2>\n\n\n\n<p>One user in the WooCommerce community&rsquo;s Facebook group <a href=\"https://www.facebook.com/groups/advanced.woocommerce/permalink/3429259367088458/\">asked</a> how the coronavirus is impacting members&rsquo; e-commerce stores. Responses were varied based on the types of products that the merchants were selling, but the vast majority of responses from store owners and developers were positive reports of increased sales: </p>\n\n\n\n<ul><li>&ldquo;I have a client selling cleaning products. He got several pallets of hand sanitizer in and sold out in a week. He was doing about $2000 in sales a day.&rdquo;</li><li>&ldquo;My client does fruit and veg online. Went from &pound;4k a month trickling along as a side part of his business, to &pound;150k last month and the heading for the same this month.&rdquo;</li><li>&ldquo;We are selling plumbing and home improvement tools and items sales have quadrupled.&rdquo;</li><li>&ldquo;Positive impact. Highest sales for me on my indoor activities niche (puzzles, board games).&rdquo;</li><li>&ldquo;Sales are up more than 1000% &ndash; natural supplements&rdquo;</li><li>&ldquo;Built a cake delivery service to sell slices of cake locally&hellip;&hellip; &pound;4K in a day and sold out. It&rsquo;s crazy.&rdquo;</li><li>&ldquo;800% increase on a niche plant site I host&rdquo;</li><li>&ldquo;Compared to same month last year, up approx 250% (garden products)&rdquo;</li><li>&ldquo;3000% increase during the last month compared to monthly average over the last year. Natural health products&rdquo;</li><li>&ldquo;Our canvas printing site is up 20%&rdquo;</li><li>&ldquo;We are selling more Glass Bongs than ever. People are staying home and getting stoned.&rdquo;</li></ul>\n\n\n\n<p>Saad Munir, the CEO of an e-commerce marketing agency, manages 28 stores for their clients with $30-$500k sales per month in various niches. </p>\n\n\n\n<p>&ldquo;Some of them are popular brands of their niche,&rdquo; Munir said. &ldquo;We have seen a drop in sales of up to 80% in non-essential and medium luxury products, and a 400% increase in essential products. However, now non-essential and daily-use products have also started getting good sales since everyone is home and sticking to their devices during this social distancing. We also have clients of furniture e-commerce stores. This means high-ticket items. They have even seen increased sales in bedsets, sofas, etc. So, for sure online sales are increasing. We also on-boarded several new clients and most of these stores are in WooCommerce.&rdquo;</p>\n\n\n\n<p>In the WooCommerce Help &amp; Share group, one member <a href=\"https://www.facebook.com/groups/woohelp/permalink/3028955177330917/\">asked for help collating all his orders into one list</a> after his artisan cheese business increased exponentially overnight. Another member <a href=\"https://www.facebook.com/groups/woohelp/permalink/3024332674459834/\">asked for help optimizing his client&rsquo;s store</a> after their pre-COVID-19 revenue went from less than &pound;1k/month to almost &pound;2k sales per day.</p>\n\n\n\n<p>If independent self-hosted stores are able to perform well during this crisis, they have the opportunity to earn customers&rsquo; loyalty for continued business long after social distancing requirements are no longer necessary. It&rsquo;s a unique opportunity that may not have been possible on such an accelerated timeline without this exact set of circumstances.</p>\n\n\n\n<p>These recent shifts in online retail are the first cracks in the ice towards a web that is more friendly for smaller, independent stores. The trend towards buying all of life&rsquo;s necessities online has evolved overnight to include a wider spectrum of consumer demographics than ever before. Diverse independent stores are crucial for meeting this demand without losing the unique and varied shopping landscape that the pandemic has forced to be temporarily closed.</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, 29 Apr 2020 08:17:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:82:\"Post Status: Professional WordPress Plugin Development: Interview with the authors\";s:7:\"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=78739\";s:7:\"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:92:\"https://poststatus.com/professional-wordpress-plugin-development-interview-with-the-authors/\";s: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:1671:\"<p><em>Professional WordPress Plugin Development</em> was one of the most helpful books I\'ve ever read. To see a new edition with two returning authors, nine years after the original, is very exciting.</p>\n\n\n\n<p>This edition of the book will be sure to offer a great resource for developer education for years to come. Brad Williams, Justin Tadlock, and John James Jacoby are each extremely talented developers and communicators. The work they can accomplish together is even greater.</p>\n\n\n\n<p>Cory talks to them about their histories, the book, the process, and much more. We hope you enjoy this episode of Post Status Draft.</p>\n\n\n\n\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>You can <a href=\"https://amzn.to/3cWMJlB\">pre-order <em>Professional WordPress Plugin Development</em> now on Amazon</a>. It is slated to be released June 10th.</p>\n\n\n\n<ul><li><a href=\"https://strangework.com/2020/01/06/announcing-professional-wordpress-plugin-development-2nd-edition/\">Brad\'s announcement</a></li><li><a href=\"http://justintadlock.com/archives/2020/01/06/writing-a-wordpress-book-again\">Justin\'s announcement</a></li><li><a href=\"https://jjj.blog/2020/01/coauthoring-a-wordpress-plugin-development-book/\">John\'s announcement</a></li></ul>\n\n\n\n<h3>Episode Partner: <a href=\"https://poststatus.com/gravity\">Gravity Forms</a></h3>\n\n\n\n<p>Gravity Forms is the easiest-to-use and most trusted tool for creating advanced forms for your WordPress-powered website. I use Gravity Forms on every WordPress site I own, and I know I can always rely on its power, flexibility, and reliability.</p>\n\n\n\n<p><a href=\"https://poststatus.com/gravity\">Try Gravity Forms today.</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, 29 Apr 2020 04:27: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: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: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:82:\"WPTavern: David Vongries Takes Over as New Owner of the Kirki Customizer Framework\";s:7:\"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=99016\";s:7:\"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:209:\"https://wptavern.com/david-vongries-takes-over-as-new-owner-of-the-kirki-customizer-framework?utm_source=rss&utm_medium=rss&utm_campaign=david-vongries-takes-over-as-new-owner-of-the-kirki-customizer-framework\";s: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:8410:\"<p class=\"has-drop-cap\">Ari Stathopoulos sold <a href=\"https://kirki.org/\">Kirki</a>, his 6-year-old customizer framework, last week. The plugin is a widely-used tool for theme authors and currently has over 400,000 installations. It is also bundled as a drop-in package within an unknown number of themes, likely numbering in the hundreds. David Vongries, the owner of the <a href=\"https://wp-pagebuilderframework.com/\">Page Builder Framework theme</a>, has taken over the project.</p>\n\n\n\n<p>All of Kirki&rsquo;s customizer controls, including those that were previously commercial/premium, are now open under the <a href=\"https://github.com/kirki-framework\">Kirki Framework</a> GitHub organization.</p>\n\n\n\n<p>Stathopoulos <a href=\"https://twitter.com/aristath/status/1247931690162544640\">tweeted his decision</a> to seek a buyer on April 8. &ldquo;This is an announcement I never thought I&rsquo;d make,&rdquo; he wrote.  &ldquo;As much as it saddens me, I have decided to sell the Kirki #WordPress plugin.  With 500,000+ installations and included in hundreds of themes I no longer have the ability &ndash; as an individual developer &ndash; to maintain it. And even though I had big dreams and wanted to facilitate things for the WordPress editor as well, the plugin has grown beyond me&hellip;It is no longer possible for a single person to maintain such a beast.&rdquo;</p>\n\n\n\n<p>Between his fulltime day job, a representative role for the theme review team, and maintaining other open-source projects, Stathopoulos was pulling 16-hour days of work. Not to mention, he had the usual life elements he needed to make time for in his routine. The Kirki project was not something he could devote any extra time to. Stathopoulos said he knew that spending too much time behind the screen was detrimental to his mental and physical health. He needed to make changes for his personal well-being. Still, it was tough to let go of a project he had invested years into.</p>\n\n\n\n<p>&ldquo;Letting go of a project like that feels extremely weird!&rdquo; he said. &ldquo;It&rsquo;s a weird mix of sadness, stress, and relief. I feel sad because it&rsquo;s out of my control. I feel stressed because it&rsquo;s out of my control. And I feel relieved because it&rsquo;s out of my control.&rdquo;</p>\n\n\n\n<p>While he suspects the sadness and stress of letting go of his project will subside, he said he already feels relieved to no longer have the responsibility of managing such a huge project alone. &ldquo;I am no longer responsible for the hundreds of themes that use it; it&rsquo;s liberating,&rdquo; he said.</p>\n\n\n\n<h2>No Deal for the Highest Bidder</h2>\n\n\n\n<p class=\"has-drop-cap\">Stathopoulos did not want to let this passion project go to anyone. He wanted someone with the vision to see the project evolve. He had several offers for Kirki. Over 400,000 installations can make for a lucrative opportunity for someone with the right marketing skills. It would have been easy for him to take the highest bid and jump ship, but that is not his style.</p>\n\n\n\n<p>&ldquo;Kirki is a weird case,&rdquo; he said. &ldquo;It may have 400,000 installations and used by hundreds of themes both free and premium, but the actual &lsquo;clients&rsquo; are the theme authors, not the end-users. That fact limits the potential for monetizing the plugin ethically. There were quite a few bids, some were high, some were low, but what surprised me is that a lot of them were not interested in helping the community in any way.&rdquo;</p>\n\n\n\n<p>Stathopoulos said the majority of the offers were from buyers with no interest in growing the plugin. Most of them seemed to be looking for a quick buck. He steered clear of them because he did not want to see end-users blasted with obtrusive ads, upsells, or spam.</p>\n\n\n\n<p>&ldquo;In the end, I didn&rsquo;t go with the highest bid, which was 2.5 times the price I gave it for,&rdquo; he said. &ldquo;Though I admit I was seriously tempted to &lsquo;take the money and run.&rsquo; I went with what I felt was an ethical choice, someone who actually uses the project on a daily basis, wants to evolve it, and I feel will honor the open-source spirit and the six years of sweat.&rdquo;</p>\n\n\n\n<p>Stathopoulos decided to sell to Vongries. The two had previously worked together on multiple occasions on the Kirki project and he felt it was the right move.</p>\n\n\n\n<p>&ldquo;Once I decided that he should get it, the process went pretty smooth, and there were no hiccups,&rdquo; said Stathopoulos. &ldquo;The hard part was deciding who should get it.&rdquo;</p>\n\n\n\n<p>Vongries was almost a natural choice as a new owner. He and his team had been using Kirki since its inception. &ldquo;I think it&rsquo;s an incredible framework and it makes working with the WordPress customizer so much easier,&rdquo; he said.</p>\n\n\n\n<p>He reached out to Stathopoulos immediately upon seeing it was for sale. The two had a conversation soon thereafter and shared similar visions for the plugin.</p>\n\n\n\n<p>&ldquo;I always looked at Kirki as something special and wanted to get involved,&rdquo; said Vongries. &ldquo;Until recently though, I wouldn&rsquo;t have had the resources to do so, but since the team around MapSteps has grown it just all happened at the right time. Being a Kirki user myself, I looked at this from both perspectives &mdash; from a developer standpoint and as someone that has been using the plugin for years.&rdquo;</p>\n\n\n\n<h2>The Future of Kirki</h2>\n\n\n\n<p class=\"has-drop-cap\">Over the past 18 months, Stathopoulos has rewritten the plugin and split it into around 50 Composer packages. The plan was to make these packages installable as individual components for plugin and theme authors. Instead of bundling the entire Kirki library, developers can use the pieces they need. At this point, these components should be stable, but they have not been widely tested by theme authors, who are accustomed to working with the full framework.</p>\n\n\n\n<p>He was also excited about the potential move away from the customizer and working with full-site editing and global styles. Right now, it is unclear how the future of the Gutenberg project will impact the customizer. Many theme authors are now looking at it as a dying piece of the platform. Stathopoulos felt like there was still room to grow and transition into the new era.</p>\n\n\n\n<p>&ldquo;My vision for Kirki was to combine some things with full-site editing, and allow themes that were using Kirki to automatically get global styles when they land in WordPress core,&rdquo; he said. &ldquo;That would be truly amazing, and I&rsquo;m sure it will be possible to do once there is an API for global styles. If [Vongries] goes in that direction, there&rsquo;s definitely potential for monetization there, while at the same time he&rsquo;ll help people build better things. Can you imagine a painless transition to global styles for themes that use Kirki? That would be a great thing to see!&rdquo;</p>\n\n\n\n<p>However, the project is out of the former owner&rsquo;s hands now. It is Vongries&rsquo; vision that must lead the project moving forward.</p>\n\n\n\n<p>&ldquo;I respect Ari a lot and he has done an amazing job with Kirki,&rdquo; said Vongries. &ldquo;[Stathopoulos] said he would love to continue to contribute to the project, and he is more than welcome to do so.&rdquo;</p>\n\n\n\n<p>The immediate plan is to launch Kirki 4.0. It is nearly ready to roll out, awaiting some fine-tuning and final testing. Vongries and his team are also about to begin work on new extensions that bring more controls and functionality to the framework and, potentially, Gutenberg.</p>\n\n\n\n<p>&ldquo;We are going to explore how we can make the connection between the existing functionality in Kirki and the upcoming features in Gutenberg and Gutenberg in general,&rdquo; he said. &ldquo;At this point, we have some ideas about how we can adapt Kirki to the ever-changing WordPress platform. But for now, they are only ideas. We are certain that we will be able to provide a useful tool for developers, regardless of the direction WordPress and Gutenberg goes.&rdquo;</p>\n\n\n\n<p>The new team behind Kirki is still working on the long-term roadmap. It will be exciting to see where they take it. For now, it is still the go-to customizer framework for many theme authors. And, it is in the hands of someone who has been using the project for 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, 28 Apr 2020 18:39:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:77:\"WPTavern: WordCamp Europe 2020 Online Registration Now Open: Tickets are 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=98976\";s:7:\"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:197:\"https://wptavern.com/wordcamp-europe-2020-online-registration-now-open-tickets-are-free?utm_source=rss&utm_medium=rss&utm_campaign=wordcamp-europe-2020-online-registration-now-open-tickets-are-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2514:\"<p><a href=\"https://2020.europe.wordcamp.org/\">WordCamp Europe 2020</a> is just 37 days away. Organizers announced in April that the event, which was supposed to be hosted in Porto, is moving to be 100% online this year due to the COVID-19 pandemic. WCEU will kick off with a virtual Contributor Day on June 4, followed by two half days of talks and workshops broadcasted via livestream.</p>\n\n\n\n<p>WordCamp Europe is one of the largest regional WordCamps on the planet and has been hosted in many magnificent venues and inspiring cities over the years. The event routinely sells out of tickets and sponsor packages, as companies and attendees rally around this unique opportunity to connect across boundaries, uniting Europe through a shared love of WordPress. </p>\n\n\n\n<p>For the first time in the event&rsquo;s eight-year history, the European WordPress community will have to forego the in-person networking time that many have come to value as both a personal and professional highlight of the year. WCEU Organizers have worked for the better part of a decade to make it one of the most polished and efficient WordCamps. Now the team is forced to pivot and use their expertise to host a top-notch virtual event.</p>\n\n\n\n<p>Past local organizing teams have been successful at creating an intimate atmosphere that facilitates rewarding connections with a focus on hospitality. These in-person connections add context to remote interactions and conversations long after the event concludes. Reaching this same high level of interpersonal connectivity between attendees is going to be a challenge for this online edition, but WCEU organizers have a long track record of adapting to different environments.  Dozens of other WordPress meetups, WordCamps, and educational events are currently facing the same challenges and are <a href=\"https://make.wordpress.org/community/events/\">moving online</a>.</p>\n\n\n\n<p>Registering for a ticket to WCEU is optional but attendees who want to participate in the virtual networking, Q&amp;A sessions, and contributor day will have be registered. Organizers were expecting approximately 3,000 attendees but hosting the event online may affect those numbers in either direction.  <a href=\"https://2020.europe.wordcamp.org/tickets/\">Tickets are available for free</a> on the WCEU website, thanks to the event&rsquo;s sponsors. After eight hours of open registration, there are 4,257&nbsp;tickets remaining.  The event will return to Porto, Portugal, on June 3-5, 2021.</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:\"Mon, 27 Apr 2020 23:10: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:\"\";}}}}}}}}}}}}}}}}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:\"Tue, 26 May 2020 09:33:56 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Tue, 26 May 2020 09:15:08 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:\"20200520081220\";}", "no");
INSERT INTO `lt_options` VALUES("3007", "_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9", "1590528845", "no");
INSERT INTO `lt_options` VALUES("3008", "_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9", "1590485645", "no");
INSERT INTO `lt_options` VALUES("3009", "_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b", "1590528846", "no");
INSERT INTO `lt_options` VALUES("3010", "_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b", "<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2020/05/the-month-in-wordpress-april-2020/\'>The Month in WordPress: April 2020</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/shinobi-blocks-wordpress-plugin-adds-how-to-and-faq-blocks?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=shinobi-blocks-wordpress-plugin-adds-how-to-and-faq-blocks\'>WPTavern: Shinobi Blocks WordPress Plugin Adds How-To and FAQ Blocks</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/local-brings-back-support-for-apache-and-site-cloning?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=local-brings-back-support-for-apache-and-site-cloning\'>WPTavern: Local Brings Back Support for Apache and Site Cloning</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/should-wordpress-provide-an-api-for-third-party-editors?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=should-wordpress-provide-an-api-for-third-party-editors\'>WPTavern: Should WordPress Provide an API for Third-Party Editors?</a></li></ul></div>", "no");
INSERT INTO `lt_options` VALUES("3012", "_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a", "1590496452", "no");
INSERT INTO `lt_options` VALUES("3013", "_site_transient_poptags_40cd750bba9870f18aada2478b24840a", "O:8:\"stdClass\":100:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:4692;}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:4121;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2668;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2554;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:1962;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:1807;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:1792;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1485;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1475;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1473;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1450;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1426;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:1418;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1302;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1196;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1186;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1121;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1119;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1094;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:990;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:880;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:875;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:873;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:864;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:792;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:772;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:768;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:767;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:758;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:747;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:722;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:716;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:714;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:698;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:686;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:659;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:653;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:650;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:648;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:641;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:629;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:626;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:588;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:583;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:578;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:576;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:572;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:569;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:556;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:548;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:547;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:542;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:537;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:534;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:529;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:522;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:514;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:505;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:502;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:501;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:500;}s:9:\"gutenberg\";a:3:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:493;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:492;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:490;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:476;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:476;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:469;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:440;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:438;}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";i:438;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:432;}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";i:428;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:425;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:425;}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";i:423;}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";i:421;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:408;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:406;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:405;}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";i:397;}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"news\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";i:397;}s:14:\"contact-form-7\";a:3:{s:4:\"name\";s:14:\"contact form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:5:\"count\";i:394;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:388;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:385;}s:4:\"code\";a:3:{s:4:\"name\";s:4:\"code\";s:4:\"slug\";s:4:\"code\";s:5:\"count\";i:378;}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";i:377;}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";i:375;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:372;}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";i:369;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:364;}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";i:360;}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";i:357;}s:5:\"block\";a:3:{s:4:\"name\";s:5:\"block\";s:4:\"slug\";s:5:\"block\";s:5:\"count\";i:355;}s:9:\"elementor\";a:3:{s:4:\"name\";s:9:\"elementor\";s:4:\"slug\";s:9:\"elementor\";s:5:\"count\";i:351;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:346;}s:8:\"shipping\";a:3:{s:4:\"name\";s:8:\"shipping\";s:4:\"slug\";s:8:\"shipping\";s:5:\"count\";i:346;}s:16:\"custom-post-type\";a:3:{s:4:\"name\";s:16:\"custom post type\";s:4:\"slug\";s:16:\"custom-post-type\";s:5:\"count\";i:339;}s:16:\"google-analytics\";a:3:{s:4:\"name\";s:16:\"google analytics\";s:4:\"slug\";s:16:\"google-analytics\";s:5:\"count\";i:339;}s:11:\"advertising\";a:3:{s:4:\"name\";s:11:\"advertising\";s:4:\"slug\";s:11:\"advertising\";s:5:\"count\";i:335;}s:5:\"cache\";a:3:{s:4:\"name\";s:5:\"cache\";s:4:\"slug\";s:5:\"cache\";s:5:\"count\";i:334;}}", "no");
INSERT INTO `lt_options` VALUES("3028", "_site_transient_update_plugins", "O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1590544133;s:8:\"response\";a:3:{s:23:\"elementor/elementor.php\";O:8:\"stdClass\":12:{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.9.9\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.2.9.9.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:6:\"tested\";s:5:\"5.4.1\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:49:\"w.org/plugins/essential-addons-for-elementor-lite\";s:4:\"slug\";s:35:\"essential-addons-for-elementor-lite\";s:6:\"plugin\";s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";s:11:\"new_version\";s:5:\"4.0.0\";s:3:\"url\";s:66:\"https://wordpress.org/plugins/essential-addons-for-elementor-lite/\";s:7:\"package\";s:84:\"https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.4.0.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:88:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/icon-256x256.png?rev=2285897\";s:2:\"1x\";s:88:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/icon-128x128.png?rev=2285897\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:91:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/banner-1544x500.gif?rev=2295031\";s:2:\"1x\";s:90:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/banner-772x250.gif?rev=2295031\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.4.1\";s:12:\"requires_php\";s:3:\"5.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:53:\"facebook-for-woocommerce/facebook-for-woocommerce.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:38:\"w.org/plugins/facebook-for-woocommerce\";s:4:\"slug\";s:24:\"facebook-for-woocommerce\";s:6:\"plugin\";s:53:\"facebook-for-woocommerce/facebook-for-woocommerce.php\";s:11:\"new_version\";s:6:\"1.11.3\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/facebook-for-woocommerce/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/facebook-for-woocommerce.1.11.3.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:77:\"https://ps.w.org/facebook-for-woocommerce/assets/icon-256x256.png?rev=2040223\";s:2:\"1x\";s:69:\"https://ps.w.org/facebook-for-woocommerce/assets/icon.svg?rev=2040223\";s:3:\"svg\";s:69:\"https://ps.w.org/facebook-for-woocommerce/assets/icon.svg?rev=2040223\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.3.3\";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:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.1.9\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.9.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=2279696\";s:2:\"1x\";s:67:\"https://ps.w.org/contact-form-7/assets/icon-128x128.png?rev=2279696\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}}s:42:\"contact-form-cfdb7/contact-form-cfdb-7.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:32:\"w.org/plugins/contact-form-cfdb7\";s:4:\"slug\";s:18:\"contact-form-cfdb7\";s:6:\"plugin\";s:42:\"contact-form-cfdb7/contact-form-cfdb-7.php\";s:11:\"new_version\";s:7:\"1.2.4.8\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/contact-form-cfdb7/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-cfdb7.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/contact-form-cfdb7/assets/icon-256x256.png?rev=1619878\";s:2:\"1x\";s:71:\"https://ps.w.org/contact-form-cfdb7/assets/icon-128x128.png?rev=1619878\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:73:\"https://ps.w.org/contact-form-cfdb7/assets/banner-772x250.png?rev=1619902\";}s:11:\"banners_rtl\";a:0:{}}s:25:\"duplicator/duplicator.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:24:\"w.org/plugins/duplicator\";s:4:\"slug\";s:10:\"duplicator\";s:6:\"plugin\";s:25:\"duplicator/duplicator.php\";s:11:\"new_version\";s:6:\"1.3.34\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/duplicator/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/duplicator.1.3.34.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/duplicator/assets/icon-256x256.png?rev=2083921\";s:2:\"1x\";s:63:\"https://ps.w.org/duplicator/assets/icon-128x128.png?rev=2083921\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/duplicator/assets/banner-772x250.png?rev=2085472\";}s:11:\"banners_rtl\";a:0:{}}s:44:\"SNAP-Woocommerce-master/midtrans-gateway.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:34:\"w.org/plugins/midtrans-woocommerce\";s:4:\"slug\";s:20:\"midtrans-woocommerce\";s:6:\"plugin\";s:44:\"SNAP-Woocommerce-master/midtrans-gateway.php\";s:11:\"new_version\";s:6:\"2.18.3\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/midtrans-woocommerce/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/midtrans-woocommerce.2.18.3.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:73:\"https://ps.w.org/midtrans-woocommerce/assets/icon-128x128.png?rev=1516380\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:75:\"https://ps.w.org/midtrans-woocommerce/assets/banner-772x250.png?rev=1516380\";}s:11:\"banners_rtl\";a:0:{}}s:27:\"popup-maker/popup-maker.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/popup-maker\";s:4:\"slug\";s:11:\"popup-maker\";s:6:\"plugin\";s:27:\"popup-maker/popup-maker.php\";s:11:\"new_version\";s:6:\"1.10.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/popup-maker/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/popup-maker.1.10.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/popup-maker/assets/icon-256x256.jpg?rev=2045655\";s:2:\"1x\";s:64:\"https://ps.w.org/popup-maker/assets/icon-128x128.jpg?rev=2045655\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/popup-maker/assets/banner-1544x500.jpg?rev=2045655\";s:2:\"1x\";s:66:\"https://ps.w.org/popup-maker/assets/banner-772x250.jpg?rev=2045655\";}s:11:\"banners_rtl\";a:0:{}}s:31:\"custom-css-js/custom-css-js.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:27:\"w.org/plugins/custom-css-js\";s:4:\"slug\";s:13:\"custom-css-js\";s:6:\"plugin\";s:31:\"custom-css-js/custom-css-js.php\";s:11:\"new_version\";s:6:\"3.31.1\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/custom-css-js/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/custom-css-js.3.31.1.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/custom-css-js/assets/icon-128x128.png?rev=1303730\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/custom-css-js/assets/banner-1544x500.png?rev=1770945\";s:2:\"1x\";s:68:\"https://ps.w.org/custom-css-js/assets/banner-772x250.png?rev=1303730\";}s:11:\"banners_rtl\";a:0:{}}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"4.1.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.4.1.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.png?rev=2075035\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.png?rev=2075035\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2075035\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2075035\";}s:11:\"banners_rtl\";a:0:{}}}}", "no");
INSERT INTO `lt_options` VALUES("3029", "duplicator_settings", "a:16:{s:7:\"version\";s:6:\"1.3.34\";s:18:\"uninstall_settings\";b:1;s:15:\"uninstall_files\";b:1;s:16:\"uninstall_tables\";b:1;s:13:\"package_debug\";b:0;s:17:\"package_mysqldump\";b:1;s:22:\"package_mysqldump_path\";s:0:\"\";s:24:\"package_phpdump_qrylimit\";s:3:\"100\";s:17:\"package_zip_flush\";b:0;s:19:\"installer_name_mode\";s:6:\"simple\";s:20:\"storage_htaccess_off\";b:0;s:18:\"archive_build_mode\";i:2;s:17:\"skip_archive_scan\";b:0;s:21:\"unhook_third_party_js\";b:0;s:22:\"unhook_third_party_css\";b:0;s:17:\"active_package_id\";i:3;}", "yes");
INSERT INTO `lt_options` VALUES("3030", "duplicator_version_plugin", "1.3.34", "yes");
INSERT INTO `lt_options` VALUES("3031", "_transient_timeout_wc_upgrade_notice_4.1.1", "1590572686", "no");
INSERT INTO `lt_options` VALUES("3032", "_transient_wc_upgrade_notice_4.1.1", "", "no");
INSERT INTO `lt_options` VALUES("3034", "duplicator_package_active", "O:11:\"DUP_Package\":25:{s:7:\"Created\";s:19:\"2020-05-27 01:52:32\";s:7:\"Version\";s:6:\"1.3.34\";s:9:\"VersionWP\";s:5:\"5.4.1\";s:9:\"VersionDB\";s:6:\"5.7.30\";s:10:\"VersionPHP\";s:6:\"5.6.40\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:36:\"20200526_meetingmasterybycoachjoshua\";s:4:\"Hash\";s:35:\"80869e3fbefac33b1518_20200527015232\";s:8:\"NameHash\";s:72:\"20200526_meetingmasterybycoachjoshua_80869e3fbefac33b1518_20200527015232\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:60:\"/home/fitandpr/meetingmastery.lightrees.com/wp-snapshots/tmp\";s:8:\"StoreURL\";s:50:\"https://meetingmastery.lightrees.com/wp-snapshots/\";s:8:\"ScanFile\";s:82:\"20200526_meetingmasterybycoachjoshua_80869e3fbefac33b1518_20200527015232_scan.json\";s:10:\"TimerStart\";i:-1;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";i:0;s:6:\"WPUser\";N;s:7:\"Archive\";O:11:\"DUP_Archive\":21:{s:10:\"FilterDirs\";s:0:\"\";s:11:\"FilterFiles\";s:0:\"\";s:10:\"FilterExts\";s:0:\"\";s:13:\"FilterDirsAll\";a:0:{}s:14:\"FilterFilesAll\";a:0:{}s:13:\"FilterExtsAll\";a:0:{}s:8:\"FilterOn\";i:0;s:12:\"ExportOnlyDB\";i:0;s:4:\"File\";N;s:6:\"Format\";s:3:\"ZIP\";s:7:\"PackDir\";s:43:\"/home/fitandpr/meetingmastery.lightrees.com\";s:4:\"Size\";i:0;s:4:\"Dirs\";a:0:{}s:5:\"Files\";a:0:{}s:10:\"FilterInfo\";O:23:\"DUP_Archive_Filter_Info\":8:{s:4:\"Dirs\";O:34:\"DUP_Archive_Filter_Scope_Directory\":5:{s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:6:\"Global\";a:0:{}s:8:\"Instance\";a:0:{}}s:5:\"Files\";O:29:\"DUP_Archive_Filter_Scope_File\":6:{s:4:\"Size\";a:0:{}s:7:\"Warning\";a:0:{}s:10:\"Unreadable\";a:0:{}s:4:\"Core\";a:0:{}s:6:\"Global\";a:0:{}s:8:\"Instance\";a:0:{}}s:4:\"Exts\";O:29:\"DUP_Archive_Filter_Scope_Base\":3:{s:4:\"Core\";a:0:{}s:6:\"Global\";a:0:{}s:8:\"Instance\";a:0:{}}s:9:\"UDirCount\";i:0;s:10:\"UFileCount\";i:0;s:9:\"UExtCount\";i:0;s:8:\"TreeSize\";a:0:{}s:11:\"TreeWarning\";a:0:{}}s:14:\"RecursiveLinks\";a:0:{}s:10:\"file_count\";i:-1;s:10:\"\0*\0Package\";O:11:\"DUP_Package\":25:{s:7:\"Created\";s:19:\"2020-05-27 01:52:32\";s:7:\"Version\";s:6:\"1.3.34\";s:9:\"VersionWP\";s:5:\"5.4.1\";s:9:\"VersionDB\";s:6:\"5.7.30\";s:10:\"VersionPHP\";s:6:\"5.6.40\";s:9:\"VersionOS\";s:5:\"Linux\";s:2:\"ID\";N;s:4:\"Name\";s:36:\"20200526_meetingmasterybycoachjoshua\";s:4:\"Hash\";s:35:\"80869e3fbefac33b1518_20200527015232\";s:8:\"NameHash\";s:72:\"20200526_meetingmasterybycoachjoshua_80869e3fbefac33b1518_20200527015232\";s:4:\"Type\";i:0;s:5:\"Notes\";s:0:\"\";s:9:\"StorePath\";s:60:\"/home/fitandpr/meetingmastery.lightrees.com/wp-snapshots/tmp\";s:8:\"StoreURL\";s:50:\"https://meetingmastery.lightrees.com/wp-snapshots/\";s:8:\"ScanFile\";N;s:10:\"TimerStart\";i:-1;s:7:\"Runtime\";N;s:7:\"ExeSize\";N;s:7:\"ZipSize\";N;s:6:\"Status\";i:0;s:6:\"WPUser\";N;s:7:\"Archive\";r:23;s:9:\"Installer\";O:13:\"DUP_Installer\":11:{s:4:\"File\";N;s:4:\"Size\";i:0;s:10:\"OptsDBHost\";s:0:\"\";s:10:\"OptsDBPort\";s:0:\"\";s:10:\"OptsDBName\";s:0:\"\";s:10:\"OptsDBUser\";s:0:\"\";s:12:\"OptsSecureOn\";i:0;s:14:\"OptsSecurePass\";s:0:\"\";s:13:\"numFilesAdded\";i:0;s:12:\"numDirsAdded\";i:0;s:10:\"\0*\0Package\";r:63;}s:8:\"Database\";O:12:\"DUP_Database\":14:{s:4:\"Type\";s:5:\"MySQL\";s:4:\"Size\";N;s:4:\"File\";N;s:4:\"Path\";N;s:12:\"FilterTables\";s:0:\"\";s:8:\"FilterOn\";i:0;s:4:\"Name\";N;s:10:\"Compatible\";s:0:\"\";s:8:\"Comments\";s:28:\"MySQL Community Server (GPL)\";s:4:\"info\";O:16:\"DUP_DatabaseInfo\":15:{s:9:\"buildMode\";N;s:13:\"collationList\";a:0:{}s:17:\"isTablesUpperCase\";N;s:15:\"isNameUpperCase\";N;s:4:\"name\";N;s:15:\"tablesBaseCount\";N;s:16:\"tablesFinalCount\";N;s:14:\"tablesRowCount\";N;s:16:\"tablesSizeOnDisk\";N;s:18:\"varLowerCaseTables\";i:0;s:7:\"version\";N;s:14:\"versionComment\";N;s:18:\"tableWiseRowCounts\";a:0:{}s:33:\"\0DUP_DatabaseInfo\0intFieldsStruct\";a:0:{}s:42:\"\0DUP_DatabaseInfo\0indexProcessedSchemaSize\";a:0:{}}s:10:\"\0*\0Package\";r:63;s:25:\"\0DUP_Database\0dbStorePath\";N;s:23:\"\0DUP_Database\0EOFMarker\";s:0:\"\";s:26:\"\0DUP_Database\0networkFlush\";b:0;}s:13:\"BuildProgress\";O:18:\"DUP_Build_Progress\":12:{s:17:\"thread_start_time\";N;s:11:\"initialized\";b:0;s:15:\"installer_built\";b:0;s:15:\"archive_started\";b:0;s:20:\"archive_has_database\";b:0;s:13:\"archive_built\";b:0;s:21:\"database_script_built\";b:0;s:6:\"failed\";b:0;s:7:\"retries\";i:0;s:14:\"build_failures\";a:0:{}s:19:\"validation_failures\";a:0:{}s:27:\"\0DUP_Build_Progress\0package\";r:63;}}s:29:\"\0DUP_Archive\0tmpFilterDirsAll\";a:0:{}s:24:\"\0DUP_Archive\0wpCorePaths\";a:5:{i:0;s:52:\"/home/fitandpr/meetingmastery.lightrees.com/wp-admin\";i:1;s:62:\"/home/fitandpr/meetingmastery.lightrees.com/wp-content/uploads\";i:2;s:64:\"/home/fitandpr/meetingmastery.lightrees.com/wp-content/languages\";i:3;s:61:\"/home/fitandpr/meetingmastery.lightrees.com/wp-content/themes\";i:4;s:55:\"/home/fitandpr/meetingmastery.lightrees.com/wp-includes\";}s:29:\"\0DUP_Archive\0wpCoreExactPaths\";a:2:{i:0;s:43:\"/home/fitandpr/meetingmastery.lightrees.com\";i:1;s:54:\"/home/fitandpr/meetingmastery.lightrees.com/wp-content\";}}s:9:\"Installer\";r:86;s:8:\"Database\";r:98;s:13:\"BuildProgress\";r:128;}", "yes");
INSERT INTO `lt_options` VALUES("3141", "duplicator_ui_view_state", "a:3:{s:19:\"dup-pack-build-try1\";s:1:\"1\";s:19:\"dup-pack-build-try2\";s:1:\"1\";s:19:\"dup-pack-build-try3\";s:1:\"1\";}", "yes");
INSERT INTO `lt_options` VALUES("3203", "_site_transient_timeout_theme_roots", "1590545932", "no");
INSERT INTO `lt_options` VALUES("3204", "_site_transient_theme_roots", "a:2:{s:5:\"astra\";s:7:\"/themes\";s:9:\"lightrees\";s:7:\"/themes\";}", "no");
INSERT INTO `lt_options` VALUES("3205", "_transient_timeout__woocommerce_helper_updates", "1590587332", "no");
INSERT INTO `lt_options` VALUES("3206", "_transient__woocommerce_helper_updates", "a:4:{s:4:\"hash\";s:32:\"d751713988987e9331980363e24189ce\";s:7:\"updated\";i:1590544132;s:8:\"products\";a:0:{}s:6:\"errors\";a:1:{i:0;s:10:\"http-error\";}}", "no");
INSERT INTO `lt_options` VALUES("3207", "_transient_timeout_elementor_remote_info_api_data_2.9.8", "1590587335", "no");
INSERT INTO `lt_options` VALUES("3208", "_transient_elementor_remote_info_api_data_2.9.8", "a:4:{s:9:\"timestamp\";i:1590543083;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:\"\";}s:11:\"pro_widgets\";a:59:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:5;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:6;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:16;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:19;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:20;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:21;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:22;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:23;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:24;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:25;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:26;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:27;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:28;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:29;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:30;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:31;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:32;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:33;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:34;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:35;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:36;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:37;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:38;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:39;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:40;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:41;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:42;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:43;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:44;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:45;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:47;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:48;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:49;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:50;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:51;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:52;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:53;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:54;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:55;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:56;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:57;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:58;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{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.9.1\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.2.9.1.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";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:6:\"tested\";s:3:\"5.4\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:1:{i:0;a:1:{i:0;a:3:{s:4:\"type\";s:8:\"language\";s:9:\"languages\";a:27:{i:0;s:5:\"he_IL\";i:1;s:5:\"en_GB\";i:2;s:5:\"en_NZ\";i:3;s:5:\"en_ZA\";i:4;s:5:\"en_AU\";i:5;s:5:\"en_CA\";i:6;s:5:\"sv_SE\";i:7;s:5:\"da_DK\";i:8;s:5:\"fr_FR\";i:9;s:5:\"de_DE\";i:10;s:5:\"nl_NL\";i:11;s:5:\"nb_NO\";i:12;s:5:\"de_AT\";i:13;s:2:\"fi\";i:14;s:5:\"it_IT\";i:15;s:5:\"nn_NO\";i:16;s:5:\"de_CH\";i:17;s:5:\"en_GB\";i:18;s:5:\"is_IS\";i:19;s:2:\"ga\";i:20;s:5:\"fr_BE\";i:21;s:5:\"nl_BE\";i:22;s:3:\"ast\";i:23;s:5:\"lb_LU\";i:24;s:5:\"es_ES\";i:25;s:5:\"pt_PT\";i:26;s:3:\"mlt\";}s:8:\"operator\";s:2:\"in\";}}}}}", "no");
INSERT INTO `lt_options` VALUES("3214", "_transient_timeout_astra-theme-cron-test-ok", "1590547740", "no");
INSERT INTO `lt_options` VALUES("3215", "_transient_astra-theme-cron-test-ok", "1", "no");

/* INSERT TABLE DATA: lt_postmeta */
INSERT INTO `lt_postmeta` VALUES("1", "2", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("2", "3", "_wp_page_template", "default");
INSERT INTO `lt_postmeta` VALUES("3", "2", "_edit_lock", "1589790379:1");
INSERT INTO `lt_postmeta` VALUES("4", "2", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("5", "2", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("6", "2", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("7", "6", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("8", "6", "_elementor_template_type", "kit");
INSERT INTO `lt_postmeta` VALUES("9", "6", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("16", "8", "_wp_page_template", "default");
INSERT INTO `lt_postmeta` VALUES("17", "8", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("18", "8", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("19", "8", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("20", "2", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"ea4ee95\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Course yang menjabarkan tentang cara sukses meeting sampai eksekusi hasil meeting.\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"de32a20\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be4e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"8e207fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"74d66d8\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"SAYA MAU\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"icon_indent\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"89c9a17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d65a579\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika IYA, Online Course ini Sangat Cocok Untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b190c5c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.png\",\"id\":208},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39cd9e1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d41e223\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2183564\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Online Course<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b44c44b\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc4725\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"57a8e15\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"076cc25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Introduction\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3854626\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"4840845\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"8714220\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a49d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"f290582\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"20b2396\",\"elType\":\"widget\",\"settings\":{\"title\":\"Episode 1\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"669e3b6\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/HRItDrYQQWM\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"0b80e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3fad867\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6eb732\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"f240441\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"592bc2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Episode 2\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c069871\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/hZfgDKXD0ZM\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"a5c066e\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FDF101\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"dashed\",\"border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ae07ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course <span style=\\\"color: red;\\\">Gejala Penyakit Meeting<\\/span>\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_border\":\"dashed\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FF0000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_element_id\":\"join\"},\"elements\":[{\"id\":\"7873516\",\"elType\":\"widget\",\"settings\":{\"eael_pricing_table_title\":\"Gejala Penyakit Meeting\",\"eael_pricing_table_sub_title\":\"Online Course Tentang\",\"eael_pricing_table_style_2_icon_new\":{\"value\":\"\",\"library\":\"\"},\"eael_pricing_table_price\":\"370.000\",\"eael_pricing_table_onsale_price\":\"89\",\"eael_pricing_table_price_cur\":\"Rp \",\"eael_pricing_table_price_period\":\"\",\"eael_pricing_table_period_separator\":\"\",\"eael_pricing_table_items\":[{\"eael_pricing_table_item\":\"Sekali Bayar\",\"_id\":\"704805c\",\"eael_pricing_table_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_pricing_table_icon_mood\":\"yes\",\"eael_pricing_table_list_icon_color\":\"#009CE0\",\"eael_pricing_item_tooltip\":\"\",\"eael_pricing_item_tooltip_content\":\"I\'m a awesome tooltip!!\",\"eael_pricing_item_tooltip_side\":\"top\",\"eael_pricing_item_tooltip_trigger\":\"hover\",\"eael_pricing_item_tooltip_animation\":\"fade\",\"pricing_item_tooltip_animation_duration\":300,\"eael_pricing_table_toolip_arrow\":\"yes\",\"eael_pricing_item_tooltip_theme\":\"noir\"},{\"eael_pricing_table_item\":\"Free Ebook\",\"eael_pricing_table_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_pricing_table_icon_mood\":\"yes\",\"eael_pricing_table_list_icon_color\":\"#009CE0\",\"eael_pricing_item_tooltip\":\"\",\"eael_pricing_item_tooltip_content\":\"I\'m a awesome tooltip!!\",\"eael_pricing_item_tooltip_side\":\"top\",\"eael_pricing_item_tooltip_trigger\":\"hover\",\"eael_pricing_item_tooltip_animation\":\"fade\",\"pricing_item_tooltip_animation_duration\":300,\"eael_pricing_table_toolip_arrow\":\"yes\",\"eael_pricing_item_tooltip_theme\":\"noir\",\"_id\":\"c10a95b\"},{\"eael_pricing_table_item\":\"Diskon Khusus Pembayaran dengan Kartu Kredit\",\"eael_pricing_table_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_pricing_table_icon_mood\":\"yes\",\"eael_pricing_table_list_icon_color\":\"#009CE0\",\"eael_pricing_item_tooltip\":\"\",\"eael_pricing_item_tooltip_content\":\"I\'m a awesome tooltip!!\",\"eael_pricing_item_tooltip_side\":\"top\",\"eael_pricing_item_tooltip_trigger\":\"hover\",\"eael_pricing_item_tooltip_animation\":\"fade\",\"pricing_item_tooltip_animation_duration\":300,\"eael_pricing_table_toolip_arrow\":\"yes\",\"eael_pricing_item_tooltip_theme\":\"noir\",\"_id\":\"f91be16\"}],\"eael_pricing_table_button_show\":\"\",\"eael_pricing_table_btn\":\"Choose Plan\",\"eael_pricing_table_featured_tag_text\":\"Featured\",\"eael_pricing_table_content_alignment\":\"left\",\"eael_pricing_table_title_typography_typography\":\"custom\",\"eael_pricing_table_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_pricing_table_pricing_curr_color\":\"#009CE0\",\"eael_pricing_table_list_item_color\":\"#333333\",\"eael_pricing_table_list_item_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"eael-pricing-table\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"?add-to-cart=228\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"space_mobile\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_font_weight\":\"400\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("21", "9", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("22", "9", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("23", "9", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("24", "9", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("25", "9", "_elementor_data", "[{\"id\":\"39edfe11\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3e2ab17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5eeee26f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<!-- wp:paragraph -->\\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:quote -->\\n<blockquote class=\\\"wp-block-quote\\\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi\\u00f1a coladas. (And gettin\' caught in the rain.)<\\/p><\\/blockquote>\\n<!-- \\/wp:quote -->\\n\\n<!-- wp:paragraph -->\\n<p>...or something like this:<\\/p>\\n<!-- \\/wp:paragraph -->\\n\\n<!-- wp:quote -->\\n<blockquote class=\\\"wp-block-quote\\\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.<\\/p><\\/blockquote>\\n<!-- \\/wp:quote -->\\n\\n<!-- wp:paragraph -->\\n<p>As a new WordPress user, you should go to <a href=\\\"http:\\/\\/meetingmastery.lightrees.com\\/wp-admin\\/\\\">your dashboard<\\/a> to delete this page and create new pages for your content. Have fun!<\\/p>\\n<!-- \\/wp:paragraph -->\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("27", "10", "_wp_attached_file", "2020/04/logo.png");
INSERT INTO `lt_postmeta` VALUES("28", "10", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:238;s:6:\"height\";i:155;s:4:\"file\";s:16:\"2020/04/logo.png\";s:5:\"sizes\";a:3:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"logo-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"logo-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `lt_postmeta` VALUES("29", "2", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("30", "11", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("31", "11", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("32", "11", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("33", "11", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("34", "11", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("35", "11", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F7F7F7\";}");
INSERT INTO `lt_postmeta` VALUES("38", "12", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("39", "12", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("40", "12", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("41", "12", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("42", "12", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("43", "12", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#F7F7F7\";}");
INSERT INTO `lt_postmeta` VALUES("61", "14", "_wp_attached_file", "2020/04/background.jpg");
INSERT INTO `lt_postmeta` VALUES("62", "14", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:22:\"2020/04/background.jpg\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"background-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"background-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"background-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"background-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"background-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"background-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"background-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;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:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `lt_postmeta` VALUES("63", "15", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("64", "15", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("65", "15", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("66", "15", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("67", "15", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background.jpg\",\"id\":14},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\"},\"elements\":[{\"id\":\"764b2b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"8cbefff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meeting  Jarang, Hasil Gersang?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6438aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("68", "15", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("81", "17", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("82", "17", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("83", "17", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("84", "17", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("85", "17", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background.jpg\",\"id\":14},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"8cbefff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Apakah ini yang sering Anda Alami?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Apakah ini yang sering Anda Alami?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meeting  Jarang, Hasil Gersang?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69f1b78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meeting Sering, Hasil Kering?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("86", "17", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("99", "19", "_wp_attached_file", "2020/04/background-2.jpg");
INSERT INTO `lt_postmeta` VALUES("100", "19", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:24:\"2020/04/background-2.jpg\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"background-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"background-2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"background-2-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"background-2-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"background-2-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"background-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"background-2-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"background-2-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"background-2-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;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:{}}}");
INSERT INTO `lt_postmeta` VALUES("101", "20", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("102", "20", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("103", "20", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("104", "20", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("105", "20", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Apakah ini yang sering Anda Alami?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meeting  Jarang, Hasil Gersang?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69f1b78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meeting Sering, Hasil Kering?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cbefff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Iya, maka Anda mengalami gejala penyakit meeting!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("106", "20", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("110", "21", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("111", "21", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("112", "21", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("113", "21", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("114", "21", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Apakah ini yang sering Anda Alami?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9c457a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meeting  Jarang, Hasil Gersang?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69f1b78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meeting Sering, Hasil Kering?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77c2fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8cbefff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Iya, maka Anda mengalami gejala penyakit meeting!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("115", "21", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("119", "22", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("120", "22", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("121", "22", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("122", "22", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("123", "22", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Apakah ini yang sering Anda Alami?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9c457a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meeting  Jarang, Hasil Gersang?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69f1b78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meeting Sering, Hasil Kering?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77c2fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8cbefff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Iya, maka Anda mengalami gejala penyakit meeting!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("124", "22", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("128", "23", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("129", "23", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("130", "23", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("131", "23", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("132", "23", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Apakah ini yang sering Anda Alami?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9c457a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meeting  Jarang, Hasil Gersang?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69f1b78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meeting Sering, Hasil Kering?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77c2fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8cbefff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika <span style=\\\"color: #FFFF00;\\\">Iya<\\/span>, maka Anda <span style=\\\"color: #FFFF00;\\\">wajib membaca<\\/span> halaman ini <span style=\\\"color: #FFFF00;\\\">hingga selesai!<\\/span>\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.4,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\"},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("133", "23", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("137", "24", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("138", "24", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("139", "24", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("140", "24", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("141", "24", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Apakah ini yang sering Anda Alami?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Apakah ini yang sering Anda Alami?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9c457a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meeting  Jarang, Hasil Gersang?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69f1b78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meeting Sering, Hasil Kering?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77c2fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8cbefff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika <span style=\\\"color: #FFFF00;\\\">Iya<\\/span>, maka Anda <span style=\\\"color: #FFFF00;\\\">wajib membaca<\\/span> halaman ini <span style=\\\"color: #FFFF00;\\\">hingga selesai!<\\/span>\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.4,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("142", "24", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("146", "25", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("147", "25", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("148", "25", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("149", "25", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("150", "25", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Apakah ini yang sering Anda Alami?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9c457a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meeting  Jarang, Hasil Gersang?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69f1b78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meeting Sering, Hasil Kering?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77c2fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8cbefff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika <span style=\\\"color: #FFFF00;\\\">Iya<\\/span>, maka Anda <span style=\\\"color: #FFFF00;\\\">wajib membaca<\\/span> halaman ini <span style=\\\"color: #FFFF00;\\\">hingga selesai!<\\/span>\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.4,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Apakah ini yang sering Anda Alami?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("151", "25", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("164", "27", "_wp_attached_file", "2020/04/Man-Pointing-Finger-PNG-Pic.png");
INSERT INTO `lt_postmeta` VALUES("165", "27", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:610;s:6:\"height\";i:476;s:4:\"file\";s:39:\"2020/04/Man-Pointing-Finger-PNG-Pic.png\";s:5:\"sizes\";a:5:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:39:\"Man-Pointing-Finger-PNG-Pic-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:39:\"Man-Pointing-Finger-PNG-Pic-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:39:\"Man-Pointing-Finger-PNG-Pic-600x468.png\";s:5:\"width\";i:600;s:6:\"height\";i:468;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Man-Pointing-Finger-PNG-Pic-300x234.png\";s:5:\"width\";i:300;s:6:\"height\";i:234;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Man-Pointing-Finger-PNG-Pic-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}");
INSERT INTO `lt_postmeta` VALUES("169", "28", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("170", "28", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("171", "28", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("172", "28", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("173", "28", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Apakah ini yang sering Anda Alami?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9c457a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meeting  Jarang, Hasil Gersang?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69f1b78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meeting Sering, Hasil Kering?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77c2fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8cbefff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika <span style=\\\"color: #FFFF00;\\\">Iya<\\/span>, maka Anda <span style=\\\"color: #FFFF00;\\\">wajib membaca<\\/span> halaman ini <span style=\\\"color: #FFFF00;\\\">hingga selesai!<\\/span>\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.4,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pimpinan...\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5810e06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pimpinan...\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("174", "28", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("178", "29", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("179", "29", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("180", "29", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("181", "29", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("182", "29", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Apakah ini yang sering Anda Alami?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9c457a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meeting  Jarang, Hasil Gersang?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69f1b78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meeting Sering, Hasil Kering?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77c2fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8cbefff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika <span style=\\\"color: #FFFF00;\\\">Iya<\\/span>, maka Anda <span style=\\\"color: #FFFF00;\\\">wajib membaca<\\/span> halaman ini <span style=\\\"color: #FFFF00;\\\">hingga selesai!<\\/span>\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.4,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pimpinan...\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5810e06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka anda perlu baca ke bawah\\u2026 Kalau TIDAK, hmmm\\u2026 sepertinya anda tetap\\nperlu baca ke bawah\\u2026 supaya tidak mengalaminya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("183", "29", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("193", "31", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("194", "31", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("195", "31", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("196", "31", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("197", "31", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Apakah ini yang sering Anda Alami?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9c457a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meeting  Jarang, Hasil Gersang?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69f1b78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meeting Sering, Hasil Kering?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77c2fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8cbefff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika <span style=\\\"color: #FFFF00;\\\">Iya<\\/span>, maka Anda <span style=\\\"color: #FFFF00;\\\">wajib membaca<\\/span> halaman ini <span style=\\\"color: #FFFF00;\\\">hingga selesai!<\\/span>\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.4,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5810e06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka anda perlu baca ke bawah\\u2026 Kalau TIDAK, hmmm\\u2026 sepertinya anda tetap\\nperlu baca ke bawah\\u2026 supaya tidak mengalaminya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka anda perlu baca ke bawah\\u2026 Kalau TIDAK, hmmm\\u2026 sepertinya anda tetap\\nperlu baca ke bawah\\u2026 supaya tidak mengalaminya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("198", "31", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("200", "32", "_wp_attached_file", "2020/04/pointing-left.png");
INSERT INTO `lt_postmeta` VALUES("201", "32", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:854;s:4:\"file\";s:25:\"2020/04/pointing-left.png\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"pointing-left-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"pointing-left-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"pointing-left-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"pointing-left-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"pointing-left-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"pointing-left-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"pointing-left-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"pointing-left-1200x801.png\";s:5:\"width\";i:1200;s:6:\"height\";i:801;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:{}}}");
INSERT INTO `lt_postmeta` VALUES("209", "34", "_wp_attached_file", "2020/04/Mockup-Ebook.png");
INSERT INTO `lt_postmeta` VALUES("210", "34", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2020/04/Mockup-Ebook.png\";s:5:\"sizes\";a:4:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"Mockup-Ebook-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"Mockup-Ebook-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Mockup-Ebook-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Mockup-Ebook-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}");
INSERT INTO `lt_postmeta` VALUES("211", "35", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("212", "35", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("213", "35", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("214", "35", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("215", "35", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Apakah ini yang sering Anda Alami?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9c457a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meeting  Jarang, Hasil Gersang?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69f1b78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meeting Sering, Hasil Kering?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77c2fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8cbefff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika <span style=\\\"color: #FFFF00;\\\">Iya<\\/span>, maka Anda <span style=\\\"color: #FFFF00;\\\">wajib membaca<\\/span> halaman ini <span style=\\\"color: #FFFF00;\\\">hingga selesai!<\\/span>\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.4,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("216", "35", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("219", "36", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("220", "36", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("221", "36", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("222", "36", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("223", "36", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Apakah ini yang sering Anda Alami?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9c457a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meeting  Jarang, Hasil Gersang?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69f1b78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meeting Sering, Hasil Kering?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77c2fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8cbefff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika <span style=\\\"color: #FFFF00;\\\">Iya<\\/span>, maka Anda <span style=\\\"color: #FFFF00;\\\">wajib membaca<\\/span> halaman ini <span style=\\\"color: #FFFF00;\\\">hingga selesai!<\\/span>\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.4,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("224", "36", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("234", "38", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("235", "38", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("236", "38", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("237", "38", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("238", "38", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Apakah ini yang sering Anda Alami?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9c457a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meeting  Jarang, Hasil Gersang?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69f1b78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meeting Sering, Hasil Kering?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"77c2fe3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8cbefff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika <span style=\\\"color: #FFFF00;\\\">Iya<\\/span>, maka Anda <span style=\\\"color: #FFFF00;\\\">wajib membaca<\\/span> halaman ini <span style=\\\"color: #FFFF00;\\\">hingga selesai!<\\/span>\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.4,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("239", "38", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("241", "39", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("242", "39", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("243", "39", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("244", "39", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("245", "39", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Apakah ini yang sering Anda Alami?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.6,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9c457a\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meeting  Jarang, Hasil Gersang?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69f1b78\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meeting Sering, Hasil Kering?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8cbefff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika <span style=\\\"color: #FFFF00;\\\">Iya<\\/span>, maka Anda <span style=\\\"color: #FFFF00;\\\">wajib membaca<\\/span> halaman ini <span style=\\\"color: #FFFF00;\\\">hingga selesai!<\\/span>\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.4,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("246", "39", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("257", "41", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("258", "41", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("259", "41", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("260", "41", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("261", "41", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exclusive Ebook\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.6,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9fa1fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34},\"space\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"058cb3b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"warning\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"md\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("262", "41", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("264", "42", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("265", "42", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("266", "42", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("267", "42", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("268", "42", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exclusive Ebook\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.6,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9fa1fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34},\"space\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"058cb3b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("269", "42", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("280", "44", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("281", "44", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("282", "44", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("283", "44", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("284", "44", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exclusive Ebook\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.6,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9fa1fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34},\"space\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"058cb3b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#333333\",\"background_color\":\"#FFFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#E60606\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("285", "44", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("294", "46", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("295", "46", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("296", "46", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("297", "46", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("298", "46", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exclusive Ebook\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.6,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9fa1fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34},\"space\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"058cb3b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#333333\",\"background_color\":\"#FFFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#E60606\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("299", "46", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("301", "47", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("302", "47", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("303", "47", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("304", "47", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("305", "47", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exclusive Ebook\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.6,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9fa1fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34},\"space\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"058cb3b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#333333\",\"background_color\":\"#FFFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#E60606\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("306", "47", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("308", "48", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("309", "48", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("310", "48", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("311", "48", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("312", "48", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exclusive Ebook\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.6,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9fa1fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34},\"space\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"058cb3b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#333333\",\"background_color\":\"#FFFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#E60606\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("313", "48", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("315", "49", "_form", "[text* your-name placeholder \"Nama Anda (wajib)\"]\n[email* your-email placeholder \"Email Aktif (wajib)\"]\n[tel* no-wa placeholder \"No. WhatsApp (wajib)\"]\n\n[submit \"DAFTAR SEKARANG\"]");
INSERT INTO `lt_postmeta` VALUES("316", "49", "_mail", "a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:23:\"Lead Baru - [your-name]\";s:6:\"sender\";s:44:\"Lightrees Grup <no-reply@lt.tmp.pakar.co.id>\";s:9:\"recipient\";s:14:\"st@pakar.co.id\";s:4:\"body\";s:132:\"[your-name][your-email][no-wa]\n\n-- \nThis e-mail was sent from a contact form on Lightrees Grup (http://meetingmastery.lightrees.com)\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `lt_postmeta` VALUES("317", "49", "_mail_2", "a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:31:\"Lightrees Grup \"[your-subject]\"\";s:6:\"sender\";s:45:\"Lightrees Grup <wordpress@lt.tmp.pakar.co.id>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:130:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Lightrees Grup (http://meetingmastery.lightrees.com)\";s:18:\"additional_headers\";s:24:\"Reply-To: st@pakar.co.id\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}");
INSERT INTO `lt_postmeta` VALUES("318", "49", "_messages", "a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}");
INSERT INTO `lt_postmeta` VALUES("319", "49", "_additional_settings", "");
INSERT INTO `lt_postmeta` VALUES("320", "49", "_locale", "en_US");
INSERT INTO `lt_postmeta` VALUES("322", "50", "_pum_built_in", "default-theme");
INSERT INTO `lt_postmeta` VALUES("323", "50", "_pum_default_theme", "1");
INSERT INTO `lt_postmeta` VALUES("324", "50", "popup_theme_data_version", "3");
INSERT INTO `lt_postmeta` VALUES("325", "50", "popup_theme_settings", "a:67:{s:24:\"overlay_background_color\";s:7:\"#ffffff\";s:26:\"overlay_background_opacity\";i:100;s:13:\"atc_promotion\";N;s:17:\"container_padding\";i:18;s:23:\"container_border_radius\";i:0;s:26:\"container_background_color\";s:7:\"#f9f9f9\";s:28:\"container_background_opacity\";i:100;s:22:\"container_border_style\";s:4:\"none\";s:22:\"container_border_color\";s:7:\"#000000\";s:22:\"container_border_width\";i:1;s:25:\"container_boxshadow_color\";s:7:\"#020202\";s:27:\"container_boxshadow_opacity\";i:23;s:30:\"container_boxshadow_horizontal\";i:1;s:28:\"container_boxshadow_vertical\";i:1;s:24:\"container_boxshadow_blur\";i:3;s:26:\"container_boxshadow_spread\";i:0;s:25:\"container_boxshadow_inset\";s:2:\"no\";s:16:\"title_font_color\";s:7:\"#000000\";s:15:\"title_font_size\";i:32;s:17:\"title_line_height\";i:36;s:17:\"title_font_family\";s:7:\"inherit\";s:17:\"title_font_weight\";i:400;s:16:\"title_font_style\";s:6:\"normal\";s:16:\"title_text_align\";s:4:\"left\";s:22:\"title_textshadow_color\";s:7:\"#020202\";s:24:\"title_textshadow_opacity\";i:23;s:27:\"title_textshadow_horizontal\";i:0;s:25:\"title_textshadow_vertical\";i:0;s:21:\"title_textshadow_blur\";i:0;s:18:\"content_font_color\";s:7:\"#8c8c8c\";s:19:\"content_font_family\";s:7:\"inherit\";s:19:\"content_font_weight\";i:400;s:18:\"content_font_style\";s:7:\"inherit\";s:10:\"close_text\";s:5:\"CLOSE\";s:22:\"close_position_outside\";b:0;s:14:\"close_location\";s:8:\"topright\";s:18:\"close_position_top\";i:0;s:21:\"close_position_bottom\";i:0;s:19:\"close_position_left\";i:0;s:20:\"close_position_right\";i:0;s:13:\"close_padding\";i:8;s:12:\"close_height\";i:0;s:11:\"close_width\";i:0;s:19:\"close_border_radius\";i:0;s:22:\"close_background_color\";s:7:\"#00b7cd\";s:24:\"close_background_opacity\";i:100;s:16:\"close_font_color\";s:7:\"#ffffff\";s:15:\"close_font_size\";i:12;s:17:\"close_line_height\";i:36;s:17:\"close_font_family\";s:7:\"inherit\";s:17:\"close_font_weight\";i:400;s:16:\"close_font_style\";s:7:\"inherit\";s:18:\"close_border_style\";s:4:\"none\";s:18:\"close_border_color\";s:7:\"#ffffff\";s:18:\"close_border_width\";i:1;s:21:\"close_boxshadow_color\";s:7:\"#020202\";s:23:\"close_boxshadow_opacity\";i:23;s:26:\"close_boxshadow_horizontal\";i:1;s:24:\"close_boxshadow_vertical\";i:1;s:20:\"close_boxshadow_blur\";i:3;s:22:\"close_boxshadow_spread\";i:0;s:21:\"close_boxshadow_inset\";s:2:\"no\";s:22:\"close_textshadow_color\";s:7:\"#000000\";s:24:\"close_textshadow_opacity\";i:23;s:27:\"close_textshadow_horizontal\";i:0;s:25:\"close_textshadow_vertical\";i:0;s:21:\"close_textshadow_blur\";i:0;}");
INSERT INTO `lt_postmeta` VALUES("326", "51", "popup_theme_settings", "a:67:{s:24:\"overlay_background_color\";s:7:\"#000000\";s:26:\"overlay_background_opacity\";s:2:\"60\";s:17:\"container_padding\";s:2:\"18\";s:26:\"container_background_color\";s:7:\"#ffffff\";s:28:\"container_background_opacity\";s:3:\"100\";s:22:\"container_border_style\";s:5:\"solid\";s:22:\"container_border_color\";s:7:\"#000000\";s:22:\"container_border_width\";s:1:\"8\";s:23:\"container_border_radius\";s:1:\"3\";s:25:\"container_boxshadow_inset\";s:2:\"no\";s:30:\"container_boxshadow_horizontal\";s:1:\"0\";s:28:\"container_boxshadow_vertical\";s:1:\"0\";s:24:\"container_boxshadow_blur\";s:2:\"30\";s:26:\"container_boxshadow_spread\";s:1:\"0\";s:25:\"container_boxshadow_color\";s:7:\"#020202\";s:27:\"container_boxshadow_opacity\";s:3:\"100\";s:16:\"title_font_color\";s:7:\"#000000\";s:17:\"title_line_height\";s:2:\"36\";s:15:\"title_font_size\";s:2:\"32\";s:17:\"title_font_family\";s:7:\"inherit\";s:17:\"title_font_weight\";s:3:\"100\";s:16:\"title_font_style\";s:0:\"\";s:16:\"title_text_align\";s:4:\"left\";s:27:\"title_textshadow_horizontal\";s:1:\"0\";s:25:\"title_textshadow_vertical\";s:1:\"0\";s:21:\"title_textshadow_blur\";s:1:\"0\";s:22:\"title_textshadow_color\";s:7:\"#020202\";s:24:\"title_textshadow_opacity\";s:2:\"23\";s:18:\"content_font_color\";s:7:\"#000000\";s:19:\"content_font_family\";s:7:\"inherit\";s:19:\"content_font_weight\";s:3:\"100\";s:18:\"content_font_style\";s:0:\"\";s:10:\"close_text\";s:7:\"&times;\";s:14:\"close_location\";s:8:\"topright\";s:18:\"close_position_top\";s:3:\"-13\";s:19:\"close_position_left\";s:1:\"0\";s:21:\"close_position_bottom\";s:1:\"0\";s:20:\"close_position_right\";s:3:\"-13\";s:13:\"close_padding\";s:1:\"0\";s:12:\"close_height\";s:2:\"26\";s:11:\"close_width\";s:2:\"26\";s:22:\"close_background_color\";s:7:\"#000000\";s:24:\"close_background_opacity\";s:3:\"100\";s:16:\"close_font_color\";s:7:\"#ffffff\";s:17:\"close_line_height\";s:2:\"24\";s:15:\"close_font_size\";s:2:\"24\";s:17:\"close_font_family\";s:5:\"Arial\";s:17:\"close_font_weight\";s:3:\"100\";s:16:\"close_font_style\";s:0:\"\";s:18:\"close_border_style\";s:5:\"solid\";s:18:\"close_border_color\";s:7:\"#ffffff\";s:18:\"close_border_width\";s:1:\"2\";s:19:\"close_border_radius\";s:2:\"26\";s:21:\"close_boxshadow_inset\";s:2:\"no\";s:26:\"close_boxshadow_horizontal\";s:1:\"0\";s:24:\"close_boxshadow_vertical\";s:1:\"0\";s:20:\"close_boxshadow_blur\";s:2:\"15\";s:22:\"close_boxshadow_spread\";s:1:\"1\";s:21:\"close_boxshadow_color\";s:7:\"#020202\";s:23:\"close_boxshadow_opacity\";s:2:\"75\";s:27:\"close_textshadow_horizontal\";s:1:\"0\";s:25:\"close_textshadow_vertical\";s:1:\"0\";s:21:\"close_textshadow_blur\";s:1:\"0\";s:22:\"close_textshadow_color\";s:7:\"#000000\";s:24:\"close_textshadow_opacity\";s:2:\"23\";s:13:\"atc_promotion\";N;s:22:\"close_position_outside\";i:0;}");
INSERT INTO `lt_postmeta` VALUES("327", "51", "popup_theme_data_version", "3");
INSERT INTO `lt_postmeta` VALUES("328", "51", "_pum_built_in", "lightbox");
INSERT INTO `lt_postmeta` VALUES("329", "52", "popup_theme_settings", "a:67:{s:24:\"overlay_background_color\";s:7:\"#000000\";s:26:\"overlay_background_opacity\";s:2:\"70\";s:17:\"container_padding\";s:2:\"28\";s:26:\"container_background_color\";s:7:\"#ffffff\";s:28:\"container_background_opacity\";s:3:\"100\";s:22:\"container_border_style\";s:4:\"none\";s:22:\"container_border_color\";s:7:\"#000000\";s:22:\"container_border_width\";s:1:\"1\";s:23:\"container_border_radius\";s:1:\"5\";s:25:\"container_boxshadow_inset\";s:2:\"no\";s:30:\"container_boxshadow_horizontal\";s:1:\"0\";s:28:\"container_boxshadow_vertical\";s:2:\"10\";s:24:\"container_boxshadow_blur\";s:2:\"25\";s:26:\"container_boxshadow_spread\";s:1:\"4\";s:25:\"container_boxshadow_color\";s:7:\"#020202\";s:27:\"container_boxshadow_opacity\";s:2:\"50\";s:16:\"title_font_color\";s:7:\"#315b7c\";s:17:\"title_line_height\";s:2:\"36\";s:15:\"title_font_size\";s:2:\"34\";s:17:\"title_font_family\";s:7:\"inherit\";s:17:\"title_font_weight\";s:3:\"100\";s:16:\"title_font_style\";s:0:\"\";s:16:\"title_text_align\";s:4:\"left\";s:27:\"title_textshadow_horizontal\";s:1:\"0\";s:25:\"title_textshadow_vertical\";s:1:\"0\";s:21:\"title_textshadow_blur\";s:1:\"0\";s:22:\"title_textshadow_color\";s:7:\"#020202\";s:24:\"title_textshadow_opacity\";s:2:\"23\";s:18:\"content_font_color\";s:7:\"#2d2d2d\";s:19:\"content_font_family\";s:7:\"inherit\";s:19:\"content_font_weight\";s:3:\"100\";s:18:\"content_font_style\";s:0:\"\";s:10:\"close_text\";s:2:\"×\";s:14:\"close_location\";s:8:\"topright\";s:18:\"close_position_top\";s:1:\"8\";s:19:\"close_position_left\";s:1:\"0\";s:21:\"close_position_bottom\";s:1:\"0\";s:20:\"close_position_right\";s:1:\"8\";s:13:\"close_padding\";s:1:\"4\";s:12:\"close_height\";s:2:\"28\";s:11:\"close_width\";s:2:\"28\";s:22:\"close_background_color\";s:7:\"#315b7c\";s:24:\"close_background_opacity\";s:3:\"100\";s:16:\"close_font_color\";s:7:\"#ffffff\";s:17:\"close_line_height\";s:2:\"20\";s:15:\"close_font_size\";s:2:\"20\";s:17:\"close_font_family\";s:15:\"Times New Roman\";s:17:\"close_font_weight\";s:3:\"100\";s:16:\"close_font_style\";s:0:\"\";s:18:\"close_border_style\";s:4:\"none\";s:18:\"close_border_color\";s:7:\"#ffffff\";s:18:\"close_border_width\";s:1:\"1\";s:19:\"close_border_radius\";s:2:\"42\";s:21:\"close_boxshadow_inset\";s:2:\"no\";s:26:\"close_boxshadow_horizontal\";s:1:\"0\";s:24:\"close_boxshadow_vertical\";s:1:\"0\";s:20:\"close_boxshadow_blur\";s:1:\"0\";s:22:\"close_boxshadow_spread\";s:1:\"0\";s:21:\"close_boxshadow_color\";s:7:\"#020202\";s:23:\"close_boxshadow_opacity\";s:2:\"23\";s:27:\"close_textshadow_horizontal\";s:1:\"0\";s:25:\"close_textshadow_vertical\";s:1:\"0\";s:21:\"close_textshadow_blur\";s:1:\"0\";s:22:\"close_textshadow_color\";s:7:\"#000000\";s:24:\"close_textshadow_opacity\";s:2:\"23\";s:13:\"atc_promotion\";N;s:22:\"close_position_outside\";i:0;}");
INSERT INTO `lt_postmeta` VALUES("330", "52", "popup_theme_data_version", "3");
INSERT INTO `lt_postmeta` VALUES("331", "52", "_pum_built_in", "enterprise-blue");
INSERT INTO `lt_postmeta` VALUES("332", "53", "popup_theme_settings", "a:67:{s:24:\"overlay_background_color\";s:7:\"#000000\";s:26:\"overlay_background_opacity\";s:2:\"75\";s:17:\"container_padding\";s:2:\"30\";s:26:\"container_background_color\";s:7:\"#ffffff\";s:28:\"container_background_opacity\";s:3:\"100\";s:22:\"container_border_style\";s:5:\"solid\";s:22:\"container_border_color\";s:7:\"#81d742\";s:22:\"container_border_width\";s:2:\"14\";s:23:\"container_border_radius\";s:2:\"80\";s:25:\"container_boxshadow_inset\";s:2:\"no\";s:30:\"container_boxshadow_horizontal\";s:1:\"0\";s:28:\"container_boxshadow_vertical\";s:1:\"0\";s:24:\"container_boxshadow_blur\";s:1:\"0\";s:26:\"container_boxshadow_spread\";s:1:\"0\";s:25:\"container_boxshadow_color\";s:7:\"#020202\";s:27:\"container_boxshadow_opacity\";s:1:\"0\";s:16:\"title_font_color\";s:7:\"#2d2d2d\";s:17:\"title_line_height\";s:2:\"36\";s:15:\"title_font_size\";s:2:\"32\";s:17:\"title_font_family\";s:10:\"Montserrat\";s:17:\"title_font_weight\";s:3:\"100\";s:16:\"title_font_style\";s:0:\"\";s:16:\"title_text_align\";s:4:\"left\";s:27:\"title_textshadow_horizontal\";s:1:\"0\";s:25:\"title_textshadow_vertical\";s:1:\"0\";s:21:\"title_textshadow_blur\";s:1:\"0\";s:22:\"title_textshadow_color\";s:7:\"#020202\";s:24:\"title_textshadow_opacity\";s:2:\"23\";s:18:\"content_font_color\";s:7:\"#2d2d2d\";s:19:\"content_font_family\";s:7:\"inherit\";s:19:\"content_font_weight\";s:3:\"100\";s:18:\"content_font_style\";s:0:\"\";s:10:\"close_text\";s:2:\"×\";s:14:\"close_location\";s:8:\"topright\";s:18:\"close_position_top\";s:3:\"-30\";s:19:\"close_position_left\";s:3:\"-30\";s:21:\"close_position_bottom\";s:1:\"0\";s:20:\"close_position_right\";s:3:\"-30\";s:13:\"close_padding\";s:1:\"0\";s:12:\"close_height\";s:1:\"0\";s:11:\"close_width\";s:1:\"0\";s:22:\"close_background_color\";s:7:\"#ffffff\";s:24:\"close_background_opacity\";s:3:\"100\";s:16:\"close_font_color\";s:7:\"#2d2d2d\";s:17:\"close_line_height\";s:2:\"28\";s:15:\"close_font_size\";s:2:\"32\";s:17:\"close_font_family\";s:15:\"Times New Roman\";s:17:\"close_font_weight\";s:3:\"100\";s:16:\"close_font_style\";s:0:\"\";s:18:\"close_border_style\";s:4:\"none\";s:18:\"close_border_color\";s:7:\"#ffffff\";s:18:\"close_border_width\";s:1:\"1\";s:19:\"close_border_radius\";s:2:\"28\";s:21:\"close_boxshadow_inset\";s:2:\"no\";s:26:\"close_boxshadow_horizontal\";s:1:\"0\";s:24:\"close_boxshadow_vertical\";s:1:\"0\";s:20:\"close_boxshadow_blur\";s:1:\"0\";s:22:\"close_boxshadow_spread\";s:1:\"0\";s:21:\"close_boxshadow_color\";s:7:\"#020202\";s:23:\"close_boxshadow_opacity\";s:2:\"23\";s:27:\"close_textshadow_horizontal\";s:1:\"0\";s:25:\"close_textshadow_vertical\";s:1:\"0\";s:21:\"close_textshadow_blur\";s:1:\"0\";s:22:\"close_textshadow_color\";s:7:\"#000000\";s:24:\"close_textshadow_opacity\";s:2:\"23\";s:13:\"atc_promotion\";N;s:22:\"close_position_outside\";i:0;}");
INSERT INTO `lt_postmeta` VALUES("333", "53", "popup_theme_data_version", "3");
INSERT INTO `lt_postmeta` VALUES("334", "53", "_pum_built_in", "hello-box");
INSERT INTO `lt_postmeta` VALUES("335", "54", "popup_theme_settings", "a:67:{s:24:\"overlay_background_color\";s:7:\"#000000\";s:26:\"overlay_background_opacity\";s:2:\"50\";s:17:\"container_padding\";s:2:\"18\";s:26:\"container_background_color\";s:7:\"#1e73be\";s:28:\"container_background_opacity\";s:3:\"100\";s:22:\"container_border_style\";s:4:\"none\";s:22:\"container_border_color\";s:7:\"#000000\";s:22:\"container_border_width\";s:1:\"1\";s:23:\"container_border_radius\";s:1:\"0\";s:25:\"container_boxshadow_inset\";s:2:\"no\";s:30:\"container_boxshadow_horizontal\";s:1:\"0\";s:28:\"container_boxshadow_vertical\";s:2:\"10\";s:24:\"container_boxshadow_blur\";s:2:\"25\";s:26:\"container_boxshadow_spread\";s:1:\"0\";s:25:\"container_boxshadow_color\";s:7:\"#020202\";s:27:\"container_boxshadow_opacity\";s:2:\"50\";s:16:\"title_font_color\";s:7:\"#ffffff\";s:17:\"title_line_height\";s:2:\"28\";s:15:\"title_font_size\";s:2:\"26\";s:17:\"title_font_family\";s:10:\"Sans-Serif\";s:17:\"title_font_weight\";s:3:\"100\";s:16:\"title_font_style\";s:0:\"\";s:16:\"title_text_align\";s:4:\"left\";s:27:\"title_textshadow_horizontal\";s:1:\"0\";s:25:\"title_textshadow_vertical\";s:1:\"0\";s:21:\"title_textshadow_blur\";s:1:\"0\";s:22:\"title_textshadow_color\";s:7:\"#020202\";s:24:\"title_textshadow_opacity\";s:2:\"23\";s:18:\"content_font_color\";s:7:\"#ffffff\";s:19:\"content_font_family\";s:7:\"inherit\";s:19:\"content_font_weight\";s:3:\"100\";s:18:\"content_font_style\";s:0:\"\";s:10:\"close_text\";s:2:\"×\";s:14:\"close_location\";s:8:\"topright\";s:18:\"close_position_top\";s:1:\"0\";s:19:\"close_position_left\";s:1:\"0\";s:21:\"close_position_bottom\";s:1:\"0\";s:20:\"close_position_right\";s:1:\"0\";s:13:\"close_padding\";s:1:\"0\";s:12:\"close_height\";s:2:\"24\";s:11:\"close_width\";s:2:\"24\";s:22:\"close_background_color\";s:7:\"#eeee22\";s:24:\"close_background_opacity\";s:3:\"100\";s:16:\"close_font_color\";s:7:\"#1e73be\";s:17:\"close_line_height\";s:2:\"24\";s:15:\"close_font_size\";s:2:\"32\";s:17:\"close_font_family\";s:15:\"Times New Roman\";s:17:\"close_font_weight\";s:3:\"100\";s:16:\"close_font_style\";s:0:\"\";s:18:\"close_border_style\";s:4:\"none\";s:18:\"close_border_color\";s:7:\"#ffffff\";s:18:\"close_border_width\";s:1:\"1\";s:19:\"close_border_radius\";s:1:\"0\";s:21:\"close_boxshadow_inset\";s:2:\"no\";s:26:\"close_boxshadow_horizontal\";s:2:\"-1\";s:24:\"close_boxshadow_vertical\";s:1:\"1\";s:20:\"close_boxshadow_blur\";s:1:\"1\";s:22:\"close_boxshadow_spread\";s:1:\"0\";s:21:\"close_boxshadow_color\";s:7:\"#020202\";s:23:\"close_boxshadow_opacity\";s:2:\"10\";s:27:\"close_textshadow_horizontal\";s:2:\"-1\";s:25:\"close_textshadow_vertical\";s:1:\"1\";s:21:\"close_textshadow_blur\";s:1:\"1\";s:22:\"close_textshadow_color\";s:7:\"#000000\";s:24:\"close_textshadow_opacity\";s:2:\"10\";s:13:\"atc_promotion\";N;s:22:\"close_position_outside\";i:0;}");
INSERT INTO `lt_postmeta` VALUES("336", "54", "popup_theme_data_version", "3");
INSERT INTO `lt_postmeta` VALUES("337", "54", "_pum_built_in", "cutting-edge");
INSERT INTO `lt_postmeta` VALUES("338", "55", "popup_theme_settings", "a:67:{s:24:\"overlay_background_color\";s:7:\"#ffffff\";s:26:\"overlay_background_opacity\";s:2:\"50\";s:17:\"container_padding\";s:2:\"18\";s:26:\"container_background_color\";s:7:\"#fffbef\";s:28:\"container_background_opacity\";s:3:\"100\";s:22:\"container_border_style\";s:6:\"outset\";s:22:\"container_border_color\";s:7:\"#dd3333\";s:22:\"container_border_width\";s:2:\"20\";s:23:\"container_border_radius\";s:1:\"0\";s:25:\"container_boxshadow_inset\";s:3:\"yes\";s:30:\"container_boxshadow_horizontal\";s:1:\"1\";s:28:\"container_boxshadow_vertical\";s:1:\"1\";s:24:\"container_boxshadow_blur\";s:1:\"3\";s:26:\"container_boxshadow_spread\";s:1:\"0\";s:25:\"container_boxshadow_color\";s:7:\"#020202\";s:27:\"container_boxshadow_opacity\";s:2:\"97\";s:16:\"title_font_color\";s:7:\"#000000\";s:17:\"title_line_height\";s:2:\"36\";s:15:\"title_font_size\";s:2:\"32\";s:17:\"title_font_family\";s:7:\"inherit\";s:17:\"title_font_weight\";s:3:\"100\";s:16:\"title_font_style\";s:0:\"\";s:16:\"title_text_align\";s:4:\"left\";s:27:\"title_textshadow_horizontal\";s:1:\"0\";s:25:\"title_textshadow_vertical\";s:1:\"0\";s:21:\"title_textshadow_blur\";s:1:\"0\";s:22:\"title_textshadow_color\";s:7:\"#020202\";s:24:\"title_textshadow_opacity\";s:2:\"23\";s:18:\"content_font_color\";s:7:\"#2d2d2d\";s:19:\"content_font_family\";s:7:\"inherit\";s:19:\"content_font_weight\";s:3:\"100\";s:18:\"content_font_style\";s:0:\"\";s:10:\"close_text\";s:2:\"×\";s:14:\"close_location\";s:8:\"topright\";s:18:\"close_position_top\";s:3:\"-20\";s:19:\"close_position_left\";s:3:\"-20\";s:21:\"close_position_bottom\";s:1:\"0\";s:20:\"close_position_right\";s:3:\"-20\";s:13:\"close_padding\";s:1:\"0\";s:12:\"close_height\";s:2:\"20\";s:11:\"close_width\";s:2:\"20\";s:22:\"close_background_color\";s:7:\"#000000\";s:24:\"close_background_opacity\";s:2:\"55\";s:16:\"close_font_color\";s:7:\"#ffffff\";s:17:\"close_line_height\";s:2:\"18\";s:15:\"close_font_size\";s:2:\"16\";s:17:\"close_font_family\";s:6:\"Tahoma\";s:17:\"close_font_weight\";s:3:\"700\";s:16:\"close_font_style\";s:0:\"\";s:18:\"close_border_style\";s:4:\"none\";s:18:\"close_border_color\";s:7:\"#ffffff\";s:18:\"close_border_width\";s:1:\"1\";s:19:\"close_border_radius\";s:1:\"0\";s:21:\"close_boxshadow_inset\";s:2:\"no\";s:26:\"close_boxshadow_horizontal\";s:1:\"0\";s:24:\"close_boxshadow_vertical\";s:1:\"0\";s:20:\"close_boxshadow_blur\";s:1:\"0\";s:22:\"close_boxshadow_spread\";s:1:\"0\";s:21:\"close_boxshadow_color\";s:7:\"#020202\";s:23:\"close_boxshadow_opacity\";s:2:\"23\";s:27:\"close_textshadow_horizontal\";s:1:\"0\";s:25:\"close_textshadow_vertical\";s:1:\"0\";s:21:\"close_textshadow_blur\";s:1:\"0\";s:22:\"close_textshadow_color\";s:7:\"#000000\";s:24:\"close_textshadow_opacity\";s:2:\"23\";s:13:\"atc_promotion\";N;s:22:\"close_position_outside\";i:0;}");
INSERT INTO `lt_postmeta` VALUES("339", "55", "popup_theme_data_version", "3");
INSERT INTO `lt_postmeta` VALUES("340", "55", "_pum_built_in", "framed-border");
INSERT INTO `lt_postmeta` VALUES("343", "50", "_edit_lock", "1588154276:1");
INSERT INTO `lt_postmeta` VALUES("344", "51", "_edit_lock", "1588154291:1");
INSERT INTO `lt_postmeta` VALUES("345", "54", "_edit_lock", "1588154325:1");
INSERT INTO `lt_postmeta` VALUES("346", "57", "data_version", "3");
INSERT INTO `lt_postmeta` VALUES("347", "57", "popup_open_count", "93");
INSERT INTO `lt_postmeta` VALUES("348", "57", "_edit_last", "1");
INSERT INTO `lt_postmeta` VALUES("349", "57", "_edit_lock", "1589382001:1");
INSERT INTO `lt_postmeta` VALUES("350", "57", "popup_title", "");
INSERT INTO `lt_postmeta` VALUES("351", "57", "popup_settings", "a:39:{s:8:\"triggers\";a:1:{i:0;a:2:{s:4:\"type\";s:10:\"click_open\";s:8:\"settings\";a:1:{s:15:\"extra_selectors\";s:7:\".daftar\";}}}s:8:\"theme_id\";s:2:\"52\";s:4:\"size\";s:6:\"medium\";s:20:\"responsive_min_width\";s:2:\"0%\";s:20:\"responsive_max_width\";s:4:\"100%\";s:12:\"custom_width\";s:5:\"640px\";s:13:\"custom_height\";s:5:\"380px\";s:14:\"animation_type\";s:4:\"fade\";s:15:\"animation_speed\";s:3:\"350\";s:16:\"animation_origin\";s:10:\"center top\";s:10:\"open_sound\";s:4:\"none\";s:12:\"custom_sound\";s:0:\"\";s:8:\"location\";s:6:\"center\";s:12:\"position_top\";s:3:\"100\";s:15:\"position_bottom\";s:1:\"0\";s:13:\"position_left\";s:1:\"0\";s:14:\"position_right\";s:1:\"0\";s:6:\"zindex\";s:10:\"1999999999\";s:10:\"close_text\";s:0:\"\";s:18:\"close_button_delay\";s:1:\"0\";s:30:\"close_on_form_submission_delay\";s:1:\"0\";s:10:\"conditions\";a:0:{}s:7:\"cookies\";a:0:{}s:17:\"disable_on_mobile\";b:0;s:17:\"disable_on_tablet\";b:0;s:18:\"custom_height_auto\";b:0;s:18:\"scrollable_content\";b:0;s:21:\"position_from_trigger\";b:0;s:14:\"position_fixed\";b:0;s:16:\"overlay_disabled\";b:0;s:9:\"stackable\";b:0;s:18:\"disable_reposition\";b:0;s:24:\"close_on_form_submission\";b:0;s:22:\"close_on_overlay_click\";b:0;s:18:\"close_on_esc_press\";b:0;s:17:\"close_on_f4_press\";b:0;s:19:\"disable_form_reopen\";b:0;s:21:\"disable_accessibility\";b:0;s:10:\"theme_slug\";s:15:\"enterprise-blue\";}");
INSERT INTO `lt_postmeta` VALUES("352", "59", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("353", "59", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("354", "59", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("355", "59", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("356", "59", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exclusive Ebook\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.6,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9fa1fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34},\"space\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"058cb3b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#333333\",\"background_color\":\"#FFFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#E60606\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("357", "59", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("359", "60", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("360", "60", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("361", "60", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("362", "60", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("363", "60", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exclusive Ebook\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.6,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9fa1fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34},\"space\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"058cb3b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#333333\",\"background_color\":\"#FFFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#E60606\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("364", "60", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("367", "57", "popup_open_count_total", "93");
INSERT INTO `lt_postmeta` VALUES("368", "57", "popup_last_opened", "1589796210");
INSERT INTO `lt_postmeta` VALUES("369", "62", "_wp_attached_file", "2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png");
INSERT INTO `lt_postmeta` VALUES("370", "62", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:752;s:6:\"height\";i:752;s:4:\"file\";s:53:\"2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\";s:5:\"sizes\";a:5:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:53:\"CI1902140152019-02-14_11_32_13photo_thumb-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:53:\"CI1902140152019-02-14_11_32_13photo_thumb-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:53:\"CI1902140152019-02-14_11_32_13photo_thumb-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"CI1902140152019-02-14_11_32_13photo_thumb-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"CI1902140152019-02-14_11_32_13photo_thumb-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}");
INSERT INTO `lt_postmeta` VALUES("371", "63", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("372", "63", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("373", "63", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("374", "63", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("375", "63", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exclusive Ebook\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.6,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9fa1fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34},\"space\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"058cb3b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#333333\",\"background_color\":\"#FFFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#E60606\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"bd59ead\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"46a5585\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"25bef9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"93ae344\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> adalah seorang Certified Business Coach\\u2122 dan Strategic Partner GRATYO\\u00ae World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa \\u201cLife is the ultimate goal of Business, not the other way around\\u201d, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("376", "63", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("380", "64", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("381", "64", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("382", "64", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("383", "64", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("384", "64", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exclusive Ebook\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.6,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9fa1fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34},\"space\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"058cb3b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#333333\",\"background_color\":\"#FFFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#E60606\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.1,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"bd59ead\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"46a5585\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"25bef9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"93ae344\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> adalah seorang Certified Business Coach\\u2122 dan Strategic Partner GRATYO\\u00ae World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa \\u201cLife is the ultimate goal of Business, not the other way around\\u201d, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("385", "64", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("389", "65", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("390", "65", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("391", "65", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("392", "65", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("393", "65", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exclusive Ebook\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.6,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9fa1fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34},\"space\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"058cb3b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#333333\",\"background_color\":\"#FFFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#E60606\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.1,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> adalah seorang Certified Business Coach\\u2122 dan Strategic Partner GRATYO\\u00ae World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa \\u201cLife is the ultimate goal of Business, not the other way around\\u201d, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("394", "65", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("398", "66", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("399", "66", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("400", "66", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("401", "66", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("402", "66", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exclusive Ebook\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.6,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9fa1fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34},\"space\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"058cb3b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#333333\",\"background_color\":\"#FFFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#E60606\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.1,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> adalah seorang Certified Business Coach\\u2122 dan Strategic Partner GRATYO\\u00ae World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa \\u201cLife is the ultimate goal of Business, not the other way around\\u201d, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("403", "66", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("407", "67", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("408", "67", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("409", "67", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("410", "67", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("411", "67", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exclusive Ebook\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.6,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9fa1fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34},\"space\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"058cb3b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#333333\",\"background_color\":\"#FFFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#E60606\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.1,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> adalah seorang Certified Business Coach\\u2122 dan Strategic Partner GRATYO\\u00ae World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa \\u201cLife is the ultimate goal of Business, not the other way around\\u201d, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("412", "67", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("416", "68", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("417", "68", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("418", "68", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("419", "68", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("420", "68", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exclusive Ebook\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.6,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9fa1fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34},\"space\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"058cb3b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#333333\",\"background_color\":\"#FFFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#E60606\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.1,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> adalah seorang Certified Business Coach\\u2122 dan Strategic Partner GRATYO\\u00ae World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa \\u201cLife is the ultimate goal of Business, not the other way around\\u201d, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#0294D4\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"80c6c09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("421", "68", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("425", "69", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("426", "69", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("427", "69", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("428", "69", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("429", "69", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exclusive Ebook\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.6,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9fa1fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34},\"space\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"058cb3b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#333333\",\"background_color\":\"#FFFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#E60606\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.1,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> adalah seorang Certified Business Coach\\u2122 dan Strategic Partner GRATYO\\u00ae World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa \\u201cLife is the ultimate goal of Business, not the other way around\\u201d, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#0294D4\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"80c6c09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("430", "69", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("434", "70", "_edit_last", "1");
INSERT INTO `lt_postmeta` VALUES("435", "70", "options", "a:5:{s:4:\"type\";s:6:\"header\";s:7:\"linking\";s:4:\"both\";s:4:\"side\";s:8:\"frontend\";s:8:\"language\";s:4:\"html\";s:8:\"priority\";s:1:\"5\";}");
INSERT INTO `lt_postmeta` VALUES("436", "70", "_edit_lock", "1588212863:1");
INSERT INTO `lt_postmeta` VALUES("437", "71", "_edit_last", "1");
INSERT INTO `lt_postmeta` VALUES("438", "71", "options", "a:5:{s:4:\"type\";s:9:\"body_open\";s:7:\"linking\";s:4:\"both\";s:4:\"side\";s:8:\"frontend\";s:8:\"language\";s:4:\"html\";s:8:\"priority\";s:1:\"5\";}");
INSERT INTO `lt_postmeta` VALUES("439", "71", "_edit_lock", "1588208422:1");
INSERT INTO `lt_postmeta` VALUES("448", "73", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("449", "73", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("450", "73", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("451", "73", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("452", "73", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exclusive Ebook\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.6,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9fa1fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34},\"space\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"058cb3b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#333333\",\"background_color\":\"#FFFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#E60606\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"946632f\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.1,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> adalah seorang Certified Business Coach\\u2122 dan Strategic Partner GRATYO\\u00ae World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa \\u201cLife is the ultimate goal of Business, not the other way around\\u201d, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#0294D4\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"80c6c09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("453", "73", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("456", "71", "_wp_trash_meta_status", "publish");
INSERT INTO `lt_postmeta` VALUES("457", "71", "_wp_trash_meta_time", "1588208565");
INSERT INTO `lt_postmeta` VALUES("458", "71", "_wp_desired_post_slug", "tracking");
INSERT INTO `lt_postmeta` VALUES("459", "74", "_edit_last", "1");
INSERT INTO `lt_postmeta` VALUES("460", "74", "options", "a:5:{s:4:\"type\";s:6:\"footer\";s:7:\"linking\";s:4:\"both\";s:4:\"side\";s:8:\"frontend\";s:8:\"language\";s:4:\"html\";s:8:\"priority\";s:1:\"5\";}");
INSERT INTO `lt_postmeta` VALUES("461", "74", "_edit_lock", "1589786528:1");
INSERT INTO `lt_postmeta` VALUES("462", "75", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("463", "75", "_elementor_template_type", "page");
INSERT INTO `lt_postmeta` VALUES("464", "75", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("465", "76", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("466", "76", "_elementor_template_type", "page");
INSERT INTO `lt_postmeta` VALUES("467", "76", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("468", "75", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("469", "75", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("470", "75", "_elementor_data", "[{\"id\":\"ed731\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5ddef15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4d0d4857\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7df41e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"f8a1660\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2ccaae35\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b2a03c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"5f968d28\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"205311d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5bfe20e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exclusive Ebook\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.6,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75f4cc37\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31d0c34e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34},\"space\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c7fc0ba\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7a56d955\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3b41c377\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29a1cecd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#333333\",\"background_color\":\"#FFFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#E60606\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"609f2121\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"eaac241\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f09df32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"115c7d32\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6107380c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43ae1897\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b729f79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5c581375\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"581cb0de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"18188ed5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4eda5a6b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2c44580d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2205c4c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3225c5c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e3cf181\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"545997cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3267d9ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"34738c44\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"995c79b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35cd4da8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1eb5c25e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5de35ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1899847c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"67862b7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15302583\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11efc95\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"41f97116\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.1,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48f7d67e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3428f32e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"298bb4da\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"68cefe1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cfd77a9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b92414c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1eef8f98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bf4754c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2320d4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2acd3df0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"33e812e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"62d0ba76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> adalah seorang Certified Business Coach\\u2122 dan Strategic Partner GRATYO\\u00ae World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa \\u201cLife is the ultimate goal of Business, not the other way around\\u201d, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"153bb04\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#0294D4\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d8929b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79777aed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("471", "77", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("472", "77", "_elementor_template_type", "page");
INSERT INTO `lt_postmeta` VALUES("473", "77", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("474", "77", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("475", "77", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("476", "77", "_elementor_data", "[{\"id\":\"ed731\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"5ddef15\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4d0d4857\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7df41e41\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"f8a1660\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"2ccaae35\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3b2a03c3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"5f968d28\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"205311d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5bfe20e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exclusive Ebook\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.6,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75f4cc37\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31d0c34e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34},\"space\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3c7fc0ba\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"7a56d955\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3b41c377\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29a1cecd\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#333333\",\"background_color\":\"#FFFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#E60606\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"609f2121\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"eaac241\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f09df32\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"115c7d32\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6107380c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43ae1897\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b729f79\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5c581375\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"581cb0de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"18188ed5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4eda5a6b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2c44580d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2205c4c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3225c5c2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e3cf181\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"545997cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3267d9ac\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"34738c44\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"995c79b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"35cd4da8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1eb5c25e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5de35ee2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1899847c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"67862b7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"15302583\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"11efc95\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"41f97116\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.1,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48f7d67e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3428f32e\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"298bb4da\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"68cefe1b\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cfd77a9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b92414c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1eef8f98\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":4,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bf4754c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2320d4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2acd3df0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"33e812e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"62d0ba76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> adalah seorang Certified Business Coach\\u2122 dan Strategic Partner GRATYO\\u00ae World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa \\u201cLife is the ultimate goal of Business, not the other way around\\u201d, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"153bb04\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#0294D4\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d8929b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"79777aed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("477", "75", "_elementor_controls_usage", "a:8:{s:6:\"column\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:21;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"space\";i:4;s:12:\"space_mobile\";i:2;s:12:\"space_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}s:14:\"section_layout\";a:1:{s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:13;s:14:\"padding_mobile\";i:7;s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;s:18:\"background_color_b\";i:1;s:23:\"background_color_b_stop\";i:1;s:24:\"background_gradient_type\";i:1;s:28:\"background_gradient_position\";i:1;s:16:\"background_image\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:10;s:11:\"header_size\";i:10;s:5:\"align\";i:10;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:11:\"title_color\";i:10;s:21:\"typography_typography\";i:10;s:22:\"typography_font_family\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_font_weight\";i:8;s:27:\"typography_font_size_mobile\";i:7;s:27:\"typography_font_size_tablet\";i:1;s:21:\"typography_font_style\";i:2;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:27:\"typography_font_size_mobile\";i:2;s:22:\"typography_font_weight\";i:2;s:17:\"button_text_color\";i:2;s:16:\"background_color\";i:2;s:11:\"hover_color\";i:2;s:29:\"button_background_hover_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:2;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:3;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:3;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:3;s:9:\"icon_size\";i:3;}s:18:\"section_text_style\";a:4:{s:10:\"text_color\";i:3;s:26:\"icon_typography_typography\";i:3;s:27:\"icon_typography_font_family\";i:3;s:25:\"icon_typography_font_size\";i:3;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_mobile\";i:2;s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}}}}");
INSERT INTO `lt_postmeta` VALUES("480", "6", "_elementor_css", "a:6:{s:4:\"time\";i:1588212166;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;s:0:\"\";s:3:\"css\";s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("482", "79", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("483", "79", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("484", "79", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("485", "79", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("486", "79", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exclusive Ebook\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.6,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9fa1fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34},\"space\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"058cb3b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#333333\",\"background_color\":\"#FFFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#E60606\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"946632f\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.6,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.1,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> adalah seorang Certified Business Coach\\u2122 dan Strategic Partner GRATYO\\u00ae World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa \\u201cLife is the ultimate goal of Business, not the other way around\\u201d, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.7,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#0294D4\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"80c6c09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("487", "79", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("488", "79", "_elementor_css", "a:5:{s:4:\"time\";i:1588212166;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("490", "80", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("491", "80", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("492", "80", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("493", "80", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("494", "80", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exclusive Ebook\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.6,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9fa1fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34},\"space\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"058cb3b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#333333\",\"background_color\":\"#FFFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#E60606\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"946632f\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> adalah seorang Certified Business Coach\\u2122 dan Strategic Partner GRATYO\\u00ae World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa \\u201cLife is the ultimate goal of Business, not the other way around\\u201d, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.7,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#0294D4\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"80c6c09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("495", "80", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("497", "81", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("498", "81", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("499", "81", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("500", "81", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("501", "81", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exclusive Ebook\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9fa1fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34},\"space\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"058cb3b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#333333\",\"background_color\":\"#FFFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#E60606\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"946632f\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":3.1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> adalah seorang Certified Business Coach\\u2122 dan Strategic Partner GRATYO\\u00ae World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa \\u201cLife is the ultimate goal of Business, not the other way around\\u201d, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.7,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#0294D4\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"80c6c09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("502", "81", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("504", "82", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("505", "82", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("506", "82", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("507", "82", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("508", "82", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exclusive Ebook\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9fa1fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34},\"space\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"058cb3b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#333333\",\"background_color\":\"#FFFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#E60606\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"946632f\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> adalah seorang Certified Business Coach\\u2122 dan Strategic Partner GRATYO\\u00ae World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa \\u201cLife is the ultimate goal of Business, not the other way around\\u201d, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#0294D4\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"80c6c09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("509", "82", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("512", "83", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("513", "83", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("514", "83", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("515", "83", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("516", "83", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exclusive Ebook\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9fa1fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34},\"space\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"058cb3b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#333333\",\"background_color\":\"#FFFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#E60606\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"946632f\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> adalah seorang Certified Business Coach\\u2122 dan Strategic Partner GRATYO\\u00ae World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa \\u201cLife is the ultimate goal of Business, not the other way around\\u201d, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#0294D4\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"80c6c09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("517", "83", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("518", "83", "_elementor_css", "a:5:{s:4:\"time\";i:1588214129;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("522", "57", "_elementor_template_type", "wp-post");
INSERT INTO `lt_postmeta` VALUES("523", "57", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("524", "57", "_wp_page_template", "default");
INSERT INTO `lt_postmeta` VALUES("525", "57", "site-sidebar-layout", "default");
INSERT INTO `lt_postmeta` VALUES("526", "57", "site-content-layout", "default");
INSERT INTO `lt_postmeta` VALUES("527", "57", "theme-transparent-header-meta", "default");
INSERT INTO `lt_postmeta` VALUES("528", "84", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("529", "84", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("530", "84", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("531", "84", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("532", "84", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4eaf41a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exclusive Ebook\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a9fa1fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34},\"space\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"058cb3b\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#333333\",\"background_color\":\"#FFFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#E60606\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"946632f\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> adalah seorang Certified Business Coach\\u2122 dan Strategic Partner GRATYO\\u00ae World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa \\u201cLife is the ultimate goal of Business, not the other way around\\u201d, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#0294D4\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"80c6c09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("533", "84", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("534", "84", "_elementor_css", "a:5:{s:4:\"time\";i:1588215716;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("537", "87", "_edit_last", "1");
INSERT INTO `lt_postmeta` VALUES("538", "87", "options", "a:5:{s:4:\"type\";s:6:\"header\";s:7:\"linking\";s:8:\"external\";s:8:\"priority\";s:1:\"5\";s:4:\"side\";s:8:\"frontend\";s:8:\"language\";s:3:\"css\";}");
INSERT INTO `lt_postmeta` VALUES("539", "87", "_edit_lock", "1588218623:1");
INSERT INTO `lt_postmeta` VALUES("540", "88", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("541", "88", "_elementor_template_type", "page");
INSERT INTO `lt_postmeta` VALUES("542", "88", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("543", "89", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("544", "89", "_elementor_template_type", "page");
INSERT INTO `lt_postmeta` VALUES("545", "89", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("546", "88", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("547", "88", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("548", "88", "_elementor_data", "[{\"id\":\"2e1b2bc4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c3ee467\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"357ca995\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66e2218e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"503d0fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1dbcca7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3cf9d4b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"48dc19f3\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1608841e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"77b5813a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exclusive Ebook\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a0a66ea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fa69e87\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34},\"space\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75343e8e\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2533de90\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7739dfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2b158df7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#333333\",\"background_color\":\"#FFFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#E60606\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77466cc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"60d74b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"534775e6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fa6b980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"229f1620\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79ca7ace\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7793e7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"403a465\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22404b7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6442b665\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6acc2eb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46844bf5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d8fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3e60f9a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"54011ed9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"62e183cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ba1b253\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"499afb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"73b9b074\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6dfaedc7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b45bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"39617653\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f39e3b7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"63c9fb3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23ae33fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26c9b8ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdedd8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6bd173dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7863f10d\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2b52d7d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"334ef9e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ae8b804\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"32a00c91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f02197c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71afdc32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"491354c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"21326ab0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4a894472\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2286c595\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> adalah seorang Certified Business Coach\\u2122 dan Strategic Partner GRATYO\\u00ae World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa \\u201cLife is the ultimate goal of Business, not the other way around\\u201d, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1bd3c74\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#0294D4\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"598c8c71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"56f2243\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("549", "90", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("550", "90", "_elementor_template_type", "page");
INSERT INTO `lt_postmeta` VALUES("551", "90", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("552", "90", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("553", "90", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("554", "90", "_elementor_data", "[{\"id\":\"2e1b2bc4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2c3ee467\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"357ca995\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"66e2218e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"503d0fb3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1dbcca7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3cf9d4b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"48dc19f3\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"1608841e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"77b5813a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Exclusive Ebook\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a0a66ea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2.2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6fa69e87\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34},\"space\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"75343e8e\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"2533de90\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7739dfc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2b158df7\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#333333\",\"background_color\":\"#FFFF00\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#E60606\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"77466cc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"60d74b31\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"534775e6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1fa6b980\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"229f1620\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79ca7ace\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7793e7e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"403a465\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"22404b7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6442b665\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6acc2eb3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46844bf5\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"456d8fbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3e60f9a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"54011ed9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"62e183cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4ba1b253\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"499afb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"73b9b074\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6dfaedc7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b45bd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"39617653\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4f39e3b7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"63c9fb3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23ae33fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"26c9b8ce\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3fdedd8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6bd173dc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7863f10d\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"2b52d7d5\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"334ef9e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ae8b804\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"32a00c91\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5f02197c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71afdc32\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"491354c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"21326ab0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4a894472\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2286c595\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> adalah seorang Certified Business Coach\\u2122 dan Strategic Partner GRATYO\\u00ae World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa \\u201cLife is the ultimate goal of Business, not the other way around\\u201d, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1bd3c74\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#0294D4\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"598c8c71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"56f2243\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("555", "88", "_elementor_controls_usage", "a:8:{s:6:\"column\";a:3:{s:5:\"count\";i:21;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:21;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:5:\"space\";i:4;s:12:\"space_mobile\";i:2;s:12:\"space_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}s:14:\"section_layout\";a:1:{s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:12;s:14:\"padding_mobile\";i:7;s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:6;s:16:\"background_color\";i:6;s:18:\"background_color_b\";i:1;s:23:\"background_color_b_stop\";i:1;s:24:\"background_gradient_type\";i:1;s:28:\"background_gradient_position\";i:1;s:16:\"background_image\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:10;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:10;s:11:\"header_size\";i:10;s:5:\"align\";i:10;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:10;s:21:\"typography_typography\";i:10;s:22:\"typography_font_family\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_font_weight\";i:8;s:27:\"typography_font_size_mobile\";i:8;s:27:\"typography_font_size_tablet\";i:1;s:21:\"typography_font_style\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:14:\"_margin_mobile\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:27:\"typography_font_size_mobile\";i:2;s:22:\"typography_font_weight\";i:2;s:17:\"button_text_color\";i:2;s:16:\"background_color\";i:2;s:11:\"hover_color\";i:2;s:29:\"button_background_hover_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:2;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:3;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:3;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:3;s:9:\"icon_size\";i:3;}s:18:\"section_text_style\";a:4:{s:10:\"text_color\";i:3;s:26:\"icon_typography_typography\";i:3;s:27:\"icon_typography_font_family\";i:3;s:25:\"icon_typography_font_size\";i:3;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:27:\"typography_font_size_mobile\";i:2;s:22:\"typography_font_weight\";i:1;s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}}}}");
INSERT INTO `lt_postmeta` VALUES("556", "91", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("557", "91", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("558", "91", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("559", "91", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("560", "91", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2.2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=aRbW9ud2bI0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> adalah seorang Certified Business Coach\\u2122 dan Strategic Partner GRATYO\\u00ae World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa \\u201cLife is the ultimate goal of Business, not the other way around\\u201d, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#0294D4\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"80c6c09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("561", "91", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("562", "91", "_elementor_css", "a:5:{s:4:\"time\";i:1588216963;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("565", "2", "_oembed_8fe6df73fa6babfbf1c8ee3a646a3a61", "<iframe title=\"Meeting Sering tapi Hasil Kering? Meeting Jarang Hasil Gersang?\" width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/aRbW9ud2bI0?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>");
INSERT INTO `lt_postmeta` VALUES("566", "2", "_oembed_time_8fe6df73fa6babfbf1c8ee3a646a3a61", "1588237646");
INSERT INTO `lt_postmeta` VALUES("567", "92", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("568", "92", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("569", "92", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("570", "92", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("571", "92", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2.2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=aRbW9ud2bI0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sebelum Anda menonton Video Selanjutnya, Silahkan Download Ebook Ini.\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> adalah seorang Certified Business Coach\\u2122 dan Strategic Partner GRATYO\\u00ae World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa \\u201cLife is the ultimate goal of Business, not the other way around\\u201d, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#0294D4\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"80c6c09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("572", "92", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("573", "92", "_elementor_css", "a:5:{s:4:\"time\";i:1588237646;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:9;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("654", "104", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("655", "104", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("656", "104", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("657", "104", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("658", "104", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=aRbW9ud2bI0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sebelum Anda menonton Video Selanjutnya, Silahkan Download Ebook Ini.\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> adalah seorang Certified Business Coach\\u2122 dan Strategic Partner GRATYO\\u00ae World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa \\u201cLife is the ultimate goal of Business, not the other way around\\u201d, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#0294D4\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"80c6c09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("659", "104", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("660", "104", "_elementor_css", "a:5:{s:4:\"time\";i:1588240314;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:9;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("663", "105", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("664", "105", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("665", "105", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("666", "105", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("667", "105", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-14\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=aRbW9ud2bI0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sebelum Anda menonton Video Selanjutnya, Silahkan Download Ebook Ini.\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> adalah seorang Certified Business Coach\\u2122 dan Strategic Partner GRATYO\\u00ae World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa \\u201cLife is the ultimate goal of Business, not the other way around\\u201d, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#0294D4\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"80c6c09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("668", "105", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("669", "105", "_elementor_css", "a:5:{s:4:\"time\";i:1588240930;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:9;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("672", "106", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("673", "106", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("674", "106", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("675", "106", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("676", "106", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-14\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-4\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=aRbW9ud2bI0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sebelum Anda menonton Video Selanjutnya, Silahkan Download Ebook Ini.\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> adalah seorang Certified Business Coach\\u2122 dan Strategic Partner GRATYO\\u00ae World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa \\u201cLife is the ultimate goal of Business, not the other way around\\u201d, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#0294D4\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"80c6c09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("677", "106", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("678", "106", "_elementor_css", "a:5:{s:4:\"time\";i:1588241003;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:9;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("681", "107", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("682", "107", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("683", "107", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("684", "107", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("685", "107", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-14\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=aRbW9ud2bI0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sebelum Anda menonton Video Selanjutnya, Silahkan Download Ebook Ini.\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> adalah seorang Certified Business Coach\\u2122 dan Strategic Partner GRATYO\\u00ae World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa \\u201cLife is the ultimate goal of Business, not the other way around\\u201d, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#0294D4\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"80c6c09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("686", "107", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("687", "107", "_elementor_css", "a:5:{s:4:\"time\";i:1588241021;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:9;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("690", "108", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("691", "108", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("692", "108", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("693", "108", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("694", "108", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-14\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=aRbW9ud2bI0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sebelum Anda menonton Video Selanjutnya, Silahkan Download Ebook Ini.\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> adalah seorang Certified Business Coach\\u2122 dan Strategic Partner GRATYO\\u00ae World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa \\u201cLife is the ultimate goal of Business, not the other way around\\u201d, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#0294D4\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"80c6c09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("695", "108", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("696", "108", "_elementor_css", "a:5:{s:4:\"time\";i:1588241039;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:9;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("699", "109", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("700", "109", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("701", "109", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("702", "109", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("703", "109", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"d18dfe4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"4e643c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"e40a16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c7f988a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":37,\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d7e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=aRbW9ud2bI0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sebelum Anda menonton Video Selanjutnya, Silahkan Download Ebook Ini.\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> adalah seorang Certified Business Coach\\u2122 dan Strategic Partner GRATYO\\u00ae World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa \\u201cLife is the ultimate goal of Business, not the other way around\\u201d, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#0294D4\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"80c6c09\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("704", "109", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("705", "109", "_elementor_css", "a:5:{s:4:\"time\";i:1588241050;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:2:{i:0;s:8:\"fa-solid\";i:9;s:0:\"\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("744", "115", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("745", "115", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("746", "115", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("747", "115", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("748", "115", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=aRbW9ud2bI0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sebelum Anda menonton Video Selanjutnya, Silahkan Download Ebook Ini.\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> adalah seorang Certified Business Coach\\u2122 dan Strategic Partner GRATYO\\u00ae World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa \\u201cLife is the ultimate goal of Business, not the other way around\\u201d, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"d0377f9\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#0294D4\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d0fc3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("749", "115", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("751", "116", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("752", "116", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("753", "116", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("754", "116", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("755", "116", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=aRbW9ud2bI0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sebelum Anda menonton Video Selanjutnya, Silahkan Download Ebook Ini.\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> adalah seorang Certified Business Coach\\u2122 dan Strategic Partner GRATYO\\u00ae World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa \\u201cLife is the ultimate goal of Business, not the other way around\\u201d, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("756", "116", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("758", "117", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("759", "117", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("760", "117", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("761", "117", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("762", "117", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=aRbW9ud2bI0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Man-Pointing-Finger-PNG-Pic.png\",\"id\":27}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang pemimpin...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda jarang\\u2026. atau bahkan tidak pernah meeting? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur\\u2026. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/pointing-left.png\",\"id\":32},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sebelum Anda menonton Video Selanjutnya, Silahkan Download Ebook Ini.\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\" Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> adalah seorang Certified Business Coach\\u2122 dan Strategic Partner GRATYO\\u00ae World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa \\u201cLife is the ultimate goal of Business, not the other way around\\u201d, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("763", "117", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("774", "120", "_wp_attached_file", "2020/05/Asian-boss-angry.jpg");
INSERT INTO `lt_postmeta` VALUES("775", "120", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:750;s:6:\"height\";i:563;s:4:\"file\";s:28:\"2020/05/Asian-boss-angry.jpg\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"Asian-boss-angry-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"Asian-boss-angry-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"Asian-boss-angry-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"Asian-boss-angry-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Asian-boss-angry-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"Asian-boss-angry-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"Asian-boss-angry-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `lt_postmeta` VALUES("776", "121", "_wp_attached_file", "2020/05/men-s-white-and-black-striped-polo-shirt-1799790-scaled.jpg");
INSERT INTO `lt_postmeta` VALUES("777", "121", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:67:\"2020/05/men-s-white-and-black-striped-polo-shirt-1799790-scaled.jpg\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:67:\"men-s-white-and-black-striped-polo-shirt-1799790-scaled-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:67:\"men-s-white-and-black-striped-polo-shirt-1799790-scaled-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:67:\"men-s-white-and-black-striped-polo-shirt-1799790-scaled-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"men-s-white-and-black-striped-polo-shirt-1799790-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"men-s-white-and-black-striped-polo-shirt-1799790-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"men-s-white-and-black-striped-polo-shirt-1799790-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:60:\"men-s-white-and-black-striped-polo-shirt-1799790-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:62:\"men-s-white-and-black-striped-polo-shirt-1799790-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:62:\"men-s-white-and-black-striped-polo-shirt-1799790-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;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:{}}}");
INSERT INTO `lt_postmeta` VALUES("778", "122", "_wp_attached_file", "2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg");
INSERT INTO `lt_postmeta` VALUES("779", "122", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:74:\"2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\";s:5:\"sizes\";a:11:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:74:\"employee-three-women-sitting-beside-white-table-1181616-scaled-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:74:\"employee-three-women-sitting-beside-white-table-1181616-scaled-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:74:\"employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:67:\"employee-three-women-sitting-beside-white-table-1181616-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:68:\"employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:67:\"employee-three-women-sitting-beside-white-table-1181616-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:67:\"employee-three-women-sitting-beside-white-table-1181616-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:69:\"employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:69:\"employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:74:\"employee-three-women-sitting-beside-white-table-1181616-scaled-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:74:\"employee-three-women-sitting-beside-white-table-1181616-scaled-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `lt_postmeta` VALUES("780", "123", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("781", "123", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("782", "123", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("783", "123", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("784", "123", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus SAYA?\\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=aRbW9ud2bI0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sebelum Anda menonton Video Selanjutnya, Silahkan Download Ebook Ini.\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/div><p>\\u00a0<\\/p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("785", "123", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("787", "2", "_oembed_57fd468cb77944a379b85a68c03f6630", "{{unknown}}");
INSERT INTO `lt_postmeta` VALUES("789", "124", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("790", "124", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("791", "124", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("792", "124", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("793", "124", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus SAYA?<br>\\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=aRbW9ud2bI0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sebelum Anda menonton Video Selanjutnya, Silahkan Download Ebook Ini.\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/div><p>\\u00a0<\\/p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("794", "124", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("795", "124", "_elementor_css", "a:5:{s:4:\"time\";i:1589250481;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:4:{i:0;s:8:\"fa-solid\";i:9;s:0:\"\";i:10;s:9:\"fa-brands\";i:11;s:10:\"fa-regular\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("804", "126", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("805", "126", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("806", "126", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("807", "126", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("808", "126", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=aRbW9ud2bI0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online Gratis\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/div><p>\\u00a0<\\/p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("809", "126", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("811", "127", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("812", "127", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("813", "127", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("814", "127", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("815", "127", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=aRbW9ud2bI0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DOWNLOAD SEKARANG\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/div><p>\\u00a0<\\/p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("816", "127", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("818", "128", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("819", "128", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("820", "128", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("821", "128", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("822", "128", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=aRbW9ud2bI0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/Mockup-Ebook.png\",\"id\":34}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR GRATIS SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/div><p>\\u00a0<\\/p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("823", "128", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("834", "131", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("835", "131", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("836", "131", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("837", "131", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("838", "131", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=aRbW9ud2bI0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Kelas-Online-Gejala-Penyakit-Meeting.jpg\",\"id\":130}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/div><p>\\u00a0<\\/p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("839", "131", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("843", "133", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("844", "133", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("845", "133", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("846", "133", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("847", "133", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=aRbW9ud2bI0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Kelas-Online-Gejala-Penyakit-Meeting.jpg\",\"id\":132}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/div><p>\\u00a0<\\/p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("848", "133", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("850", "134", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("851", "134", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("852", "134", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("853", "134", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("854", "134", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=aRbW9ud2bI0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/div><p>\\u00a0<\\/p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("855", "134", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("857", "135", "_wp_attached_file", "2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg");
INSERT INTO `lt_postmeta` VALUES("858", "135", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:560;s:6:\"height\";i:560;s:4:\"file\";s:48:\"2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg\";s:5:\"sizes\";a:4:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Kelas-Online-Gejala-Penyakit-Meeting-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Kelas-Online-Gejala-Penyakit-Meeting-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Kelas-Online-Gejala-Penyakit-Meeting-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Kelas-Online-Gejala-Penyakit-Meeting-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;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:{}}}");
INSERT INTO `lt_postmeta` VALUES("859", "136", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("860", "136", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("861", "136", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("862", "136", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("863", "136", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=aRbW9ud2bI0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Kelas-Online-Gejala-Penyakit-Meeting.jpg\",\"id\":135}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/CI1902140152019-02-14_11_32_13photo_thumb.png\",\"id\":62},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/div><p>\\u00a0<\\/p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("864", "136", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("867", "137", "_wp_attached_file", "2020/05/Coach-Joshua-Susanto.jpg");
INSERT INTO `lt_postmeta` VALUES("868", "137", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:486;s:6:\"height\";i:1000;s:4:\"file\";s:32:\"2020/05/Coach-Joshua-Susanto.jpg\";s:5:\"sizes\";a:6:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"Coach-Joshua-Susanto-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"Coach-Joshua-Susanto-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Coach-Joshua-Susanto-146x300.jpg\";s:5:\"width\";i:146;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Coach-Joshua-Susanto-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"Coach-Joshua-Susanto-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"Coach-Joshua-Susanto-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"SM-N950F\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1553681747\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"6\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:16:\"0.03030303030303\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `lt_postmeta` VALUES("869", "138", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("870", "138", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("871", "138", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("872", "138", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("873", "138", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=aRbW9ud2bI0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Kelas-Online-Gejala-Penyakit-Meeting.jpg\",\"id\":135}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.jpg\",\"id\":137},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("874", "138", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("875", "138", "_elementor_css", "a:5:{s:4:\"time\";i:1589379509;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:4:{i:0;s:8:\"fa-solid\";i:9;s:0:\"\";i:10;s:9:\"fa-brands\";i:11;s:10:\"fa-regular\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("877", "139", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("878", "139", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("879", "139", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("880", "139", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("881", "139", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=aRbW9ud2bI0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Kelas-Online-Gejala-Penyakit-Meeting.jpg\",\"id\":135}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br \\/><br \\/><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.jpg\",\"id\":137},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("882", "139", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("884", "140", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("885", "140", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("886", "140", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("887", "140", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("888", "140", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=aRbW9ud2bI0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Kelas-Online-Gejala-Penyakit-Meeting.jpg\",\"id\":135}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br \\/><br \\/><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.jpg\",\"id\":137},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("889", "140", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("891", "141", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("892", "141", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("893", "141", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("894", "141", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("895", "141", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=aRbW9ud2bI0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Kelas-Online-Gejala-Penyakit-Meeting.jpg\",\"id\":135}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br \\/><br \\/><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.jpg\",\"id\":137},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18caa71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("896", "141", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("898", "142", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("899", "142", "_elementor_template_type", "page");
INSERT INTO `lt_postmeta` VALUES("900", "142", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("901", "143", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("902", "143", "_elementor_template_type", "page");
INSERT INTO `lt_postmeta` VALUES("903", "143", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("904", "142", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("905", "142", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("906", "142", "_elementor_data", "[{\"id\":\"6fa26036\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"765a8b28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6e0c9f40\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3ae7b78c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70d658c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ed09ca7\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1f72bf2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5d7c58ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"3a44928e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=aRbW9ud2bI0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6999135b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"28b03100\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"542943e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7c1cd281\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69c7ccbd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75c24cec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"43884cf2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"522f8e20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fcc1b03\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f4c77fc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e11ab8b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3399765a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"146cd212\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6aa84d09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"cd27f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ec224c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"26b09892\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"2e9ffdd6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79bfd05f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"706b570d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"413cab03\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"203e79d6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"101d6a45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4441563d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Kelas-Online-Gejala-Penyakit-Meeting.jpg\",\"id\":135}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"39d47289\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"71a833a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50dc7893\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"511bd5af\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"138b2722\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db9695b\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ad05673\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1484ee1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"140bed45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e84de67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f52630\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33415a60\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5fb20935\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br \\/><br \\/><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a578026\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6f7ec950\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.jpg\",\"id\":137},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a3baf27\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2730608e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3a48dde0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ae76d26\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"740f036c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c50f640\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c39470\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"3f6711e\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"1000acc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"26a2655f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2786dda4\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"686837e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec1e18c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"66e7e6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"74529d37\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6cca9a03\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"b2f5970\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"6a1ef9d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"2b26ca31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("907", "144", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("908", "144", "_elementor_template_type", "page");
INSERT INTO `lt_postmeta` VALUES("909", "144", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("910", "144", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("911", "144", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("912", "144", "_elementor_data", "[{\"id\":\"6fa26036\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"765a8b28\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6e0c9f40\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3ae7b78c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"70d658c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3ed09ca7\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1f72bf2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"5d7c58ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"3a44928e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=aRbW9ud2bI0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6999135b\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"28b03100\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"542943e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7c1cd281\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69c7ccbd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"75c24cec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"43884cf2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"522f8e20\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1fcc1b03\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f4c77fc\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e11ab8b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3399765a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"146cd212\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"6aa84d09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"cd27f69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ec224c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"26b09892\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"2e9ffdd6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79bfd05f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"706b570d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"413cab03\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"203e79d6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"101d6a45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4441563d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Kelas-Online-Gejala-Penyakit-Meeting.jpg\",\"id\":135}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"39d47289\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"71a833a5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50dc7893\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"511bd5af\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"138b2722\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4db9695b\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ad05673\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1484ee1b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"140bed45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2e84de67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f52630\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33415a60\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5fb20935\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br \\/><br \\/><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6a578026\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"6f7ec950\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.jpg\",\"id\":137},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4a3baf27\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2730608e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3a48dde0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ae76d26\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"740f036c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c50f640\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44c39470\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"3f6711e\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"1000acc3\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"26a2655f\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"download\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2786dda4\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"686837e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ec1e18c\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"66e7e6d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"74529d37\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"6cca9a03\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"b2f5970\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"6a1ef9d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"2b26ca31\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("913", "142", "_elementor_controls_usage", "a:9:{s:7:\"heading\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:12;s:11:\"header_size\";i:12;s:5:\"align\";i:12;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:12;s:21:\"typography_typography\";i:12;s:22:\"typography_font_family\";i:9;s:20:\"typography_font_size\";i:10;s:22:\"typography_font_weight\";i:10;s:27:\"typography_font_size_tablet\";i:1;s:27:\"typography_font_size_mobile\";i:10;s:21:\"typography_font_style\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:25;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:25;s:16:\"content_position\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:14:\"padding_mobile\";i:8;s:13:\"margin_mobile\";i:3;s:7:\"padding\";i:13;s:6:\"margin\";i:4;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:7;}s:14:\"section_layout\";a:1:{s:16:\"content_position\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:7;s:16:\"background_color\";i:7;s:18:\"background_color_b\";i:1;s:23:\"background_color_b_stop\";i:1;s:24:\"background_gradient_type\";i:1;s:28:\"background_gradient_position\";i:1;s:16:\"background_image\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:5:{s:11:\"youtube_url\";i:1;s:8:\"autoplay\";i:1;s:14:\"play_on_mobile\";i:1;s:14:\"modestbranding\";i:1;s:8:\"controls\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:5;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:12:\"space_tablet\";i:1;s:5:\"space\";i:2;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:4;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:3;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:4;s:9:\"icon_size\";i:3;}s:18:\"section_text_style\";a:4:{s:10:\"text_color\";i:4;s:26:\"icon_typography_typography\";i:3;s:27:\"icon_typography_font_family\";i:3;s:25:\"icon_typography_font_size\";i:3;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:27:\"typography_font_size_mobile\";i:2;s:22:\"typography_font_weight\";i:2;s:17:\"button_text_color\";i:2;s:16:\"background_color\";i:2;s:11:\"hover_color\";i:2;s:29:\"button_background_hover_color\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:12:\"_css_classes\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:27:\"typography_font_size_mobile\";i:2;s:22:\"typography_font_weight\";i:2;}}}}}");
INSERT INTO `lt_postmeta` VALUES("986", "57", "_wp_old_slug", "ebook-popup");
INSERT INTO `lt_postmeta` VALUES("987", "155", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("988", "155", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("989", "155", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("990", "155", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("991", "155", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=aRbW9ud2bI0\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Kelas-Online-Gejala-Penyakit-Meeting.jpg\",\"id\":135}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br \\/><br \\/><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.jpg\",\"id\":137},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18caa71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("992", "155", "_elementor_page_settings", "a:2:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";}");
INSERT INTO `lt_postmeta` VALUES("993", "155", "_elementor_css", "a:5:{s:4:\"time\";i:1589380878;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:4:{i:0;s:8:\"fa-solid\";i:9;s:0:\"\";i:11;s:9:\"fa-brands\";i:12;s:10:\"fa-regular\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("1062", "165", "_wp_attached_file", "woocommerce-placeholder.png");
INSERT INTO `lt_postmeta` VALUES("1063", "165", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `lt_postmeta` VALUES("1064", "170", "_edit_lock", "1589447877:1");
INSERT INTO `lt_postmeta` VALUES("1065", "170", "_edit_last", "1");
INSERT INTO `lt_postmeta` VALUES("1067", "171", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1068", "171", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1069", "171", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1070", "171", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1071", "171", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Kelas-Online-Gejala-Penyakit-Meeting.jpg\",\"id\":135}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br \\/><br \\/><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.jpg\",\"id\":137},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18caa71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1072", "171", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1073", "171", "_elementor_css", "a:5:{s:4:\"time\";i:1589387092;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:4:{i:0;s:8:\"fa-solid\";i:9;s:0:\"\";i:11;s:9:\"fa-brands\";i:12;s:10:\"fa-regular\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("1075", "2", "_oembed_fabb0049badea5ee163ecfef9fa31679", "<iframe title=\"Meeting Mastery: Teaser\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/MVm4TkH9ISQ?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>");
INSERT INTO `lt_postmeta` VALUES("1076", "2", "_oembed_time_fabb0049badea5ee163ecfef9fa31679", "1589439461");
INSERT INTO `lt_postmeta` VALUES("1077", "170", "_regular_price", "865000");
INSERT INTO `lt_postmeta` VALUES("1078", "170", "_sale_price", "499000");
INSERT INTO `lt_postmeta` VALUES("1079", "170", "total_sales", "0");
INSERT INTO `lt_postmeta` VALUES("1080", "170", "_tax_status", "taxable");
INSERT INTO `lt_postmeta` VALUES("1081", "170", "_tax_class", "");
INSERT INTO `lt_postmeta` VALUES("1082", "170", "_manage_stock", "no");
INSERT INTO `lt_postmeta` VALUES("1083", "170", "_backorders", "no");
INSERT INTO `lt_postmeta` VALUES("1084", "170", "_sold_individually", "yes");
INSERT INTO `lt_postmeta` VALUES("1085", "170", "_virtual", "yes");
INSERT INTO `lt_postmeta` VALUES("1086", "170", "_downloadable", "no");
INSERT INTO `lt_postmeta` VALUES("1087", "170", "_download_limit", "-1");
INSERT INTO `lt_postmeta` VALUES("1088", "170", "_download_expiry", "-1");
INSERT INTO `lt_postmeta` VALUES("1089", "170", "_stock", NULL);
INSERT INTO `lt_postmeta` VALUES("1090", "170", "_stock_status", "instock");
INSERT INTO `lt_postmeta` VALUES("1091", "170", "_wc_average_rating", "0");
INSERT INTO `lt_postmeta` VALUES("1092", "170", "_wc_review_count", "0");
INSERT INTO `lt_postmeta` VALUES("1093", "170", "_product_version", "4.1.0");
INSERT INTO `lt_postmeta` VALUES("1094", "170", "_price", "499000");
INSERT INTO `lt_postmeta` VALUES("1095", "170", "_wc_facebook_sync_enabled", "no");
INSERT INTO `lt_postmeta` VALUES("1096", "170", "site-sidebar-layout", "default");
INSERT INTO `lt_postmeta` VALUES("1097", "170", "site-content-layout", "default");
INSERT INTO `lt_postmeta` VALUES("1098", "170", "theme-transparent-header-meta", "default");
INSERT INTO `lt_postmeta` VALUES("1126", "2", "_oembed_b6fbc6df73e1bfe36b7a5076f2f814a6", "<iframe title=\"Meeting Mastery: Teaser\" width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/MVm4TkH9ISQ?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>");
INSERT INTO `lt_postmeta` VALUES("1127", "2", "_oembed_time_b6fbc6df73e1bfe36b7a5076f2f814a6", "1589440208");
INSERT INTO `lt_postmeta` VALUES("1137", "170", "_thumbnail_id", "135");
INSERT INTO `lt_postmeta` VALUES("1140", "177", "_order_key", "wc_order_4EZNFp1YE5mgw");
INSERT INTO `lt_postmeta` VALUES("1141", "177", "_customer_user", "1");
INSERT INTO `lt_postmeta` VALUES("1142", "177", "_payment_method", "midtrans");
INSERT INTO `lt_postmeta` VALUES("1143", "177", "_payment_method_title", "Online Payment via Midtrans");
INSERT INTO `lt_postmeta` VALUES("1144", "177", "_customer_ip_address", "114.124.168.222");
INSERT INTO `lt_postmeta` VALUES("1145", "177", "_customer_user_agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36");
INSERT INTO `lt_postmeta` VALUES("1146", "177", "_created_via", "checkout");
INSERT INTO `lt_postmeta` VALUES("1147", "177", "_cart_hash", "72da5eac6aeedf06f51aae8a329a7729");
INSERT INTO `lt_postmeta` VALUES("1148", "177", "_billing_first_name", "Sulistio");
INSERT INTO `lt_postmeta` VALUES("1149", "177", "_billing_last_name", "Test");
INSERT INTO `lt_postmeta` VALUES("1150", "177", "_billing_company", "PAKAR");
INSERT INTO `lt_postmeta` VALUES("1151", "177", "_billing_address_1", "PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan");
INSERT INTO `lt_postmeta` VALUES("1152", "177", "_billing_city", "Jakarta Barat");
INSERT INTO `lt_postmeta` VALUES("1153", "177", "_billing_state", "JK");
INSERT INTO `lt_postmeta` VALUES("1154", "177", "_billing_postcode", "11440");
INSERT INTO `lt_postmeta` VALUES("1155", "177", "_billing_country", "ID");
INSERT INTO `lt_postmeta` VALUES("1156", "177", "_billing_email", "st@pakar.co.id");
INSERT INTO `lt_postmeta` VALUES("1157", "177", "_billing_phone", "0215672564");
INSERT INTO `lt_postmeta` VALUES("1158", "177", "_shipping_first_name", "Sulistio");
INSERT INTO `lt_postmeta` VALUES("1159", "177", "_shipping_last_name", "Test");
INSERT INTO `lt_postmeta` VALUES("1160", "177", "_shipping_company", "PAKAR");
INSERT INTO `lt_postmeta` VALUES("1161", "177", "_shipping_address_1", "PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan");
INSERT INTO `lt_postmeta` VALUES("1162", "177", "_shipping_city", "Jakarta Barat");
INSERT INTO `lt_postmeta` VALUES("1163", "177", "_shipping_state", "JK");
INSERT INTO `lt_postmeta` VALUES("1164", "177", "_shipping_postcode", "11440");
INSERT INTO `lt_postmeta` VALUES("1165", "177", "_shipping_country", "ID");
INSERT INTO `lt_postmeta` VALUES("1166", "177", "_order_currency", "IDR");
INSERT INTO `lt_postmeta` VALUES("1167", "177", "_cart_discount", "0");
INSERT INTO `lt_postmeta` VALUES("1168", "177", "_cart_discount_tax", "0");
INSERT INTO `lt_postmeta` VALUES("1169", "177", "_order_shipping", "0");
INSERT INTO `lt_postmeta` VALUES("1170", "177", "_order_shipping_tax", "0");
INSERT INTO `lt_postmeta` VALUES("1171", "177", "_order_tax", "0");
INSERT INTO `lt_postmeta` VALUES("1172", "177", "_order_total", "499000");
INSERT INTO `lt_postmeta` VALUES("1173", "177", "_order_version", "4.1.0");
INSERT INTO `lt_postmeta` VALUES("1174", "177", "_prices_include_tax", "no");
INSERT INTO `lt_postmeta` VALUES("1175", "177", "_billing_address_index", "Sulistio Test PAKAR PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan  Jakarta Barat JK 11440 ID st@pakar.co.id 0215672564");
INSERT INTO `lt_postmeta` VALUES("1176", "177", "_shipping_address_index", "Sulistio Test PAKAR PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan  Jakarta Barat JK 11440 ID");
INSERT INTO `lt_postmeta` VALUES("1177", "177", "is_vat_exempt", "no");
INSERT INTO `lt_postmeta` VALUES("1178", "177", "_mt_payment_snap_token", "ea6ab07d-e5a5-4958-a253-cf2d7d59cea2");
INSERT INTO `lt_postmeta` VALUES("1179", "177", "_mt_payment_url", "https://app.sandbox.midtrans.com/snap/v2/vtweb/ea6ab07d-e5a5-4958-a253-cf2d7d59cea2");
INSERT INTO `lt_postmeta` VALUES("1180", "178", "_menu_item_type", "post_type");
INSERT INTO `lt_postmeta` VALUES("1181", "178", "_menu_item_menu_item_parent", "0");
INSERT INTO `lt_postmeta` VALUES("1182", "178", "_menu_item_object_id", "169");
INSERT INTO `lt_postmeta` VALUES("1183", "178", "_menu_item_object", "page");
INSERT INTO `lt_postmeta` VALUES("1184", "178", "_menu_item_target", "");
INSERT INTO `lt_postmeta` VALUES("1185", "178", "_menu_item_classes", "a:1:{i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("1186", "178", "_menu_item_xfn", "");
INSERT INTO `lt_postmeta` VALUES("1187", "178", "_menu_item_url", "");
INSERT INTO `lt_postmeta` VALUES("1190", "179", "_order_key", "wc_order_xF9A6G66E7Jbu");
INSERT INTO `lt_postmeta` VALUES("1191", "179", "_customer_user", "1");
INSERT INTO `lt_postmeta` VALUES("1192", "179", "_payment_method", "midtrans");
INSERT INTO `lt_postmeta` VALUES("1193", "179", "_payment_method_title", "Online Payment via Midtrans");
INSERT INTO `lt_postmeta` VALUES("1194", "179", "_customer_ip_address", "114.124.168.222");
INSERT INTO `lt_postmeta` VALUES("1195", "179", "_customer_user_agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36");
INSERT INTO `lt_postmeta` VALUES("1196", "179", "_created_via", "checkout");
INSERT INTO `lt_postmeta` VALUES("1197", "179", "_cart_hash", "72da5eac6aeedf06f51aae8a329a7729");
INSERT INTO `lt_postmeta` VALUES("1198", "179", "_billing_first_name", "Sulistio");
INSERT INTO `lt_postmeta` VALUES("1199", "179", "_billing_last_name", "Test");
INSERT INTO `lt_postmeta` VALUES("1200", "179", "_billing_company", "PAKAR");
INSERT INTO `lt_postmeta` VALUES("1201", "179", "_billing_address_1", "PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan");
INSERT INTO `lt_postmeta` VALUES("1202", "179", "_billing_city", "Jakarta Barat");
INSERT INTO `lt_postmeta` VALUES("1203", "179", "_billing_state", "JK");
INSERT INTO `lt_postmeta` VALUES("1204", "179", "_billing_postcode", "11440");
INSERT INTO `lt_postmeta` VALUES("1205", "179", "_billing_country", "ID");
INSERT INTO `lt_postmeta` VALUES("1206", "179", "_billing_email", "st@pakar.co.id");
INSERT INTO `lt_postmeta` VALUES("1207", "179", "_billing_phone", "0215672564");
INSERT INTO `lt_postmeta` VALUES("1208", "179", "_shipping_first_name", "Sulistio");
INSERT INTO `lt_postmeta` VALUES("1209", "179", "_shipping_last_name", "Test");
INSERT INTO `lt_postmeta` VALUES("1210", "179", "_shipping_company", "PAKAR");
INSERT INTO `lt_postmeta` VALUES("1211", "179", "_shipping_address_1", "PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan");
INSERT INTO `lt_postmeta` VALUES("1212", "179", "_shipping_city", "Jakarta Barat");
INSERT INTO `lt_postmeta` VALUES("1213", "179", "_shipping_state", "JK");
INSERT INTO `lt_postmeta` VALUES("1214", "179", "_shipping_postcode", "11440");
INSERT INTO `lt_postmeta` VALUES("1215", "179", "_shipping_country", "ID");
INSERT INTO `lt_postmeta` VALUES("1216", "179", "_order_currency", "IDR");
INSERT INTO `lt_postmeta` VALUES("1217", "179", "_cart_discount", "0");
INSERT INTO `lt_postmeta` VALUES("1218", "179", "_cart_discount_tax", "0");
INSERT INTO `lt_postmeta` VALUES("1219", "179", "_order_shipping", "0");
INSERT INTO `lt_postmeta` VALUES("1220", "179", "_order_shipping_tax", "0");
INSERT INTO `lt_postmeta` VALUES("1221", "179", "_order_tax", "0");
INSERT INTO `lt_postmeta` VALUES("1222", "179", "_order_total", "499000");
INSERT INTO `lt_postmeta` VALUES("1223", "179", "_order_version", "4.1.0");
INSERT INTO `lt_postmeta` VALUES("1224", "179", "_prices_include_tax", "no");
INSERT INTO `lt_postmeta` VALUES("1225", "179", "_billing_address_index", "Sulistio Test PAKAR PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan  Jakarta Barat JK 11440 ID st@pakar.co.id 0215672564");
INSERT INTO `lt_postmeta` VALUES("1226", "179", "_shipping_address_index", "Sulistio Test PAKAR PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan  Jakarta Barat JK 11440 ID");
INSERT INTO `lt_postmeta` VALUES("1227", "179", "is_vat_exempt", "no");
INSERT INTO `lt_postmeta` VALUES("1228", "179", "_mt_payment_snap_token", "222ef13c-1e76-4442-864f-1b136b1abce8");
INSERT INTO `lt_postmeta` VALUES("1229", "179", "_mt_payment_url", "https://app.sandbox.midtrans.com/snap/v2/vtweb/222ef13c-1e76-4442-864f-1b136b1abce8");
INSERT INTO `lt_postmeta` VALUES("1230", "180", "_wp_attached_file", "2020/04/cropped-logo.png");
INSERT INTO `lt_postmeta` VALUES("1231", "180", "_wp_attachment_context", "custom-logo");
INSERT INTO `lt_postmeta` VALUES("1232", "180", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:238;s:6:\"height\";i:155;s:4:\"file\";s:24:\"2020/04/cropped-logo.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"cropped-logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"cropped-logo-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"cropped-logo-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"ast-logo-size\";a:4:{s:4:\"file\";s:23:\"cropped-logo-100x65.png\";s:5:\"width\";i:100;s:6:\"height\";i:65;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:{}}}");
INSERT INTO `lt_postmeta` VALUES("1233", "181", "_wp_trash_meta_status", "publish");
INSERT INTO `lt_postmeta` VALUES("1234", "181", "_wp_trash_meta_time", "1589444320");
INSERT INTO `lt_postmeta` VALUES("1235", "167", "_edit_lock", "1589542255:1");
INSERT INTO `lt_postmeta` VALUES("1236", "167", "_edit_last", "1");
INSERT INTO `lt_postmeta` VALUES("1237", "167", "site-sidebar-layout", "default");
INSERT INTO `lt_postmeta` VALUES("1238", "167", "site-content-layout", "default");
INSERT INTO `lt_postmeta` VALUES("1239", "167", "theme-transparent-header-meta", "default");
INSERT INTO `lt_postmeta` VALUES("1240", "184", "_order_key", "wc_order_xuJ9wGmY8RNBs");
INSERT INTO `lt_postmeta` VALUES("1241", "184", "_customer_user", "1");
INSERT INTO `lt_postmeta` VALUES("1242", "184", "_payment_method", "midtrans");
INSERT INTO `lt_postmeta` VALUES("1243", "184", "_payment_method_title", "Online Payment via Midtrans");
INSERT INTO `lt_postmeta` VALUES("1244", "184", "_customer_ip_address", "114.124.168.222");
INSERT INTO `lt_postmeta` VALUES("1245", "184", "_customer_user_agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36");
INSERT INTO `lt_postmeta` VALUES("1246", "184", "_created_via", "checkout");
INSERT INTO `lt_postmeta` VALUES("1247", "184", "_cart_hash", "72da5eac6aeedf06f51aae8a329a7729");
INSERT INTO `lt_postmeta` VALUES("1248", "184", "_billing_first_name", "Sulistio");
INSERT INTO `lt_postmeta` VALUES("1249", "184", "_billing_last_name", "Test");
INSERT INTO `lt_postmeta` VALUES("1250", "184", "_billing_company", "PAKAR");
INSERT INTO `lt_postmeta` VALUES("1251", "184", "_billing_address_1", "PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan");
INSERT INTO `lt_postmeta` VALUES("1252", "184", "_billing_city", "Jakarta Barat");
INSERT INTO `lt_postmeta` VALUES("1253", "184", "_billing_state", "JK");
INSERT INTO `lt_postmeta` VALUES("1254", "184", "_billing_postcode", "11440");
INSERT INTO `lt_postmeta` VALUES("1255", "184", "_billing_country", "ID");
INSERT INTO `lt_postmeta` VALUES("1256", "184", "_billing_email", "st@pakar.co.id");
INSERT INTO `lt_postmeta` VALUES("1257", "184", "_billing_phone", "0215672564");
INSERT INTO `lt_postmeta` VALUES("1258", "184", "_shipping_first_name", "Sulistio");
INSERT INTO `lt_postmeta` VALUES("1259", "184", "_shipping_last_name", "Test");
INSERT INTO `lt_postmeta` VALUES("1260", "184", "_shipping_company", "PAKAR");
INSERT INTO `lt_postmeta` VALUES("1261", "184", "_shipping_address_1", "PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan");
INSERT INTO `lt_postmeta` VALUES("1262", "184", "_shipping_city", "Jakarta Barat");
INSERT INTO `lt_postmeta` VALUES("1263", "184", "_shipping_state", "JK");
INSERT INTO `lt_postmeta` VALUES("1264", "184", "_shipping_postcode", "11440");
INSERT INTO `lt_postmeta` VALUES("1265", "184", "_shipping_country", "ID");
INSERT INTO `lt_postmeta` VALUES("1266", "184", "_order_currency", "IDR");
INSERT INTO `lt_postmeta` VALUES("1267", "184", "_cart_discount", "0");
INSERT INTO `lt_postmeta` VALUES("1268", "184", "_cart_discount_tax", "0");
INSERT INTO `lt_postmeta` VALUES("1269", "184", "_order_shipping", "0");
INSERT INTO `lt_postmeta` VALUES("1270", "184", "_order_shipping_tax", "0");
INSERT INTO `lt_postmeta` VALUES("1271", "184", "_order_tax", "0");
INSERT INTO `lt_postmeta` VALUES("1272", "184", "_order_total", "499000");
INSERT INTO `lt_postmeta` VALUES("1273", "184", "_order_version", "4.1.0");
INSERT INTO `lt_postmeta` VALUES("1274", "184", "_prices_include_tax", "no");
INSERT INTO `lt_postmeta` VALUES("1275", "184", "_billing_address_index", "Sulistio Test PAKAR PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan  Jakarta Barat JK 11440 ID st@pakar.co.id 0215672564");
INSERT INTO `lt_postmeta` VALUES("1276", "184", "_shipping_address_index", "Sulistio Test PAKAR PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan  Jakarta Barat JK 11440 ID");
INSERT INTO `lt_postmeta` VALUES("1277", "184", "is_vat_exempt", "no");
INSERT INTO `lt_postmeta` VALUES("1278", "184", "_mt_payment_snap_token", "f69d6ca1-e4da-4692-9e36-bbcedab04fcb");
INSERT INTO `lt_postmeta` VALUES("1279", "184", "_mt_payment_url", "https://app.sandbox.midtrans.com/snap/v2/vtweb/f69d6ca1-e4da-4692-9e36-bbcedab04fcb");
INSERT INTO `lt_postmeta` VALUES("1280", "185", "_wp_trash_meta_status", "publish");
INSERT INTO `lt_postmeta` VALUES("1281", "185", "_wp_trash_meta_time", "1589446720");
INSERT INTO `lt_postmeta` VALUES("1307", "189", "_edit_lock", "1589777414:1");
INSERT INTO `lt_postmeta` VALUES("1308", "189", "_edit_last", "1");
INSERT INTO `lt_postmeta` VALUES("1309", "189", "options", "a:5:{s:4:\"type\";s:6:\"footer\";s:7:\"linking\";s:8:\"external\";s:8:\"priority\";s:1:\"5\";s:4:\"side\";s:8:\"frontend\";s:8:\"language\";s:2:\"js\";}");
INSERT INTO `lt_postmeta` VALUES("1310", "190", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1311", "190", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1312", "190", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1313", "190", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1314", "190", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Kelas-Online-Gejala-Penyakit-Meeting.jpg\",\"id\":135}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br \\/><br \\/><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.jpg\",\"id\":137},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18caa71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1315", "190", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1316", "190", "_elementor_css", "a:5:{s:4:\"time\";i:1589440208;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:4:{i:0;s:8:\"fa-solid\";i:9;s:0:\"\";i:11;s:9:\"fa-brands\";i:12;s:10:\"fa-regular\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("1318", "191", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1319", "191", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1320", "191", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1321", "191", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1322", "191", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Kelas-Online-Gejala-Penyakit-Meeting.jpg\",\"id\":135}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<span id=\\\"tutup\\\">03:00:00<\\/span>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br \\/><br \\/><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.jpg\",\"id\":137},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18caa71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1323", "191", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1326", "192", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1327", "192", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1328", "192", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1329", "192", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1330", "192", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Kelas-Online-Gejala-Penyakit-Meeting.jpg\",\"id\":135}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<span id=\\\"tutup\\\" class=\\\"eael-countdown-wrapper\\\">03:00:00<\\/span>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br \\/><br \\/><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.jpg\",\"id\":137},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18caa71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1331", "192", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1332", "192", "_elementor_css", "a:5:{s:4:\"time\";i:1589468503;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:4:{i:0;s:8:\"fa-solid\";i:9;s:0:\"\";i:11;s:9:\"fa-brands\";i:12;s:10:\"fa-regular\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("1335", "193", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1336", "193", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1337", "193", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1338", "193", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1339", "193", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Kelas-Online-Gejala-Penyakit-Meeting.jpg\",\"id\":135}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center;\\\"><span id=\\\"tutup\\\" style=\\\"font-size: 2em;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br \\/><br \\/><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.jpg\",\"id\":137},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18caa71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1340", "193", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1341", "193", "_elementor_css", "a:5:{s:4:\"time\";i:1589469142;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:4:{i:0;s:8:\"fa-solid\";i:9;s:0:\"\";i:11;s:9:\"fa-brands\";i:12;s:10:\"fa-regular\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("1344", "194", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1345", "194", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1346", "194", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1347", "194", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1348", "194", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Kelas-Online-Gejala-Penyakit-Meeting.jpg\",\"id\":135}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center;\\\"><span style=\\\"font-weight: bold;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br \\/><br \\/><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.jpg\",\"id\":137},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18caa71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1349", "194", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1350", "194", "_elementor_css", "a:5:{s:4:\"time\";i:1589469410;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:4:{i:0;s:8:\"fa-solid\";i:9;s:0:\"\";i:11;s:9:\"fa-brands\";i:12;s:10:\"fa-regular\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("1353", "195", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1354", "195", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1355", "195", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1356", "195", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1357", "195", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Kelas-Online-Gejala-Penyakit-Meeting.jpg\",\"id\":135}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br \\/><br \\/><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.jpg\",\"id\":137},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18caa71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1358", "195", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1359", "195", "_elementor_css", "a:5:{s:4:\"time\";i:1589471528;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:4:{i:0;s:8:\"fa-solid\";i:9;s:0:\"\";i:11;s:9:\"fa-brands\";i:12;s:10:\"fa-regular\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("1362", "196", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1363", "196", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1364", "196", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1365", "196", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1366", "196", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Kelas-Online-Gejala-Penyakit-Meeting.jpg\",\"id\":135}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br \\/><br \\/><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.jpg\",\"id\":137},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18caa71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"5b028fa\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1367", "196", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1368", "196", "_elementor_css", "a:5:{s:4:\"time\";i:1589471695;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:4:{i:0;s:8:\"fa-solid\";i:9;s:0:\"\";i:11;s:9:\"fa-brands\";i:12;s:10:\"fa-regular\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("1371", "197", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1372", "197", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1373", "197", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1374", "197", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1375", "197", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Kelas-Online-Gejala-Penyakit-Meeting.jpg\",\"id\":135}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br \\/><br \\/><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.jpg\",\"id\":137},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18caa71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"5b028fa\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup2\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1376", "197", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1377", "197", "_elementor_css", "a:5:{s:4:\"time\";i:1589471759;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:4:{i:0;s:8:\"fa-solid\";i:9;s:0:\"\";i:11;s:9:\"fa-brands\";i:12;s:10:\"fa-regular\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("1407", "201", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1408", "201", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1409", "201", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1410", "201", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1411", "201", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"join\"},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Kelas-Online-Gejala-Penyakit-Meeting.jpg\",\"id\":135}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br \\/><br \\/><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.jpg\",\"id\":137},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18caa71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"5b028fa\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup2\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1412", "201", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1413", "201", "_elementor_css", "a:5:{s:4:\"time\";i:1589471873;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:4:{i:0;s:8:\"fa-solid\";i:9;s:0:\"\";i:11;s:9:\"fa-brands\";i:12;s:10:\"fa-regular\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("1415", "202", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1416", "202", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1417", "202", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1418", "202", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1419", "202", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"join\"},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Kelas-Online-Gejala-Penyakit-Meeting.jpg\",\"id\":135}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br \\/><br \\/><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.jpg\",\"id\":137},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18caa71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1420", "202", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1429", "204", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1430", "204", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1431", "204", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1432", "204", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1433", "204", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"de32a20\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\"},\"elements\":[{\"id\":\"be4e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"8e207fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"89c9a17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d65a579\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b190c5c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"join\"},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Kelas-Online-Gejala-Penyakit-Meeting.jpg\",\"id\":135}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br \\/><br \\/><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.jpg\",\"id\":137},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18caa71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1434", "204", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1436", "205", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1437", "205", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1438", "205", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1439", "205", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1440", "205", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"de32a20\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be4e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"8e207fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"74d66d8\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1c3702b\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"89c9a17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d65a579\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b190c5c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"join\"},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Kelas-Online-Gejala-Penyakit-Meeting.jpg\",\"id\":135}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br \\/><br \\/><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.jpg\",\"id\":137},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18caa71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1441", "205", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1444", "206", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1445", "206", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1446", "206", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1447", "206", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1448", "206", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"de32a20\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be4e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"8e207fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"74d66d8\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1c3702b\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"89c9a17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d65a579\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b190c5c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"join\"},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Kelas-Online-Gejala-Penyakit-Meeting.jpg\",\"id\":135}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br \\/><br \\/><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.jpg\",\"id\":137},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18caa71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1449", "206", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1450", "206", "_elementor_css", "a:5:{s:4:\"time\";i:1589537674;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:12;s:9:\"fa-brands\";i:13;s:10:\"fa-regular\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("1452", "207", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1453", "207", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1454", "207", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1455", "207", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1456", "207", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"de32a20\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be4e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"8e207fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"74d66d8\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1c3702b\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"89c9a17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d65a579\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b190c5c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"join\"},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Kelas-Online-Gejala-Penyakit-Meeting.jpg\",\"id\":135}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\">Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br \\/><br \\/><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.jpg\",\"id\":137},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18caa71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1457", "207", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1459", "208", "_wp_attached_file", "2020/05/Coach-Joshua-Susanto.png");
INSERT INTO `lt_postmeta` VALUES("1460", "208", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:32:\"2020/05/Coach-Joshua-Susanto.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Coach-Joshua-Susanto-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Coach-Joshua-Susanto-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"Coach-Joshua-Susanto-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"Coach-Joshua-Susanto-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"Coach-Joshua-Susanto-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"Coach-Joshua-Susanto-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `lt_postmeta` VALUES("1461", "208", "_wp_attachment_image_alt", "Coach Joshua Susanto");
INSERT INTO `lt_postmeta` VALUES("1470", "210", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1471", "210", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1472", "210", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1473", "210", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1474", "210", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"de32a20\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be4e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"8e207fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"74d66d8\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1c3702b\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"89c9a17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d65a579\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b190c5c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"join\"},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Kelas-Online-Gejala-Penyakit-Meeting.jpg\",\"id\":135}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.png\",\"id\":208},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18caa71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1475", "210", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1476", "210", "_elementor_css", "a:5:{s:4:\"time\";i:1589539741;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:12;s:9:\"fa-brands\";i:13;s:10:\"fa-regular\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("1506", "167", "_wp_page_template", "default");
INSERT INTO `lt_postmeta` VALUES("1546", "220", "_wp_attached_file", "2020/05/online-course.jpg");
INSERT INTO `lt_postmeta` VALUES("1547", "220", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:667;s:6:\"height\";i:1000;s:4:\"file\";s:25:\"2020/05/online-course.jpg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"online-course-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"online-course-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"online-course-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"online-course-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"online-course-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"online-course-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"online-course-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"online-course-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `lt_postmeta` VALUES("1548", "221", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1549", "221", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1550", "221", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1551", "221", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1552", "221", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"de32a20\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be4e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"8e207fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"74d66d8\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1c3702b\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"89c9a17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d65a579\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b190c5c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FDCD01\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"join\"},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/online-course.jpg\",\"id\":220}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.png\",\"id\":208},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18caa71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1553", "221", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1556", "222", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1557", "222", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1558", "222", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1559", "222", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1560", "222", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"de32a20\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be4e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"8e207fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"74d66d8\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1c3702b\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"89c9a17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d65a579\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b190c5c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FDCD01\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"join\"},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/online-course.jpg\",\"id\":220}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.png\",\"id\":208},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18caa71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.3,\"sizes\":[]},\"typography_font_weight\":\"400\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1561", "222", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1563", "223", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1564", "223", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1565", "223", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1566", "223", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1567", "223", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"de32a20\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be4e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"8e207fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"74d66d8\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1c3702b\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"89c9a17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d65a579\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b190c5c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FDCD01\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"join\"},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/online-course.jpg\",\"id\":220}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.png\",\"id\":208},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18caa71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_font_weight\":\"400\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1568", "223", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1570", "224", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1571", "224", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1572", "224", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1573", "224", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1574", "224", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"de32a20\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be4e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"8e207fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"74d66d8\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1c3702b\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"89c9a17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d65a579\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b190c5c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FDCD01\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"join\"},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/online-course.jpg\",\"id\":220}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.png\",\"id\":208},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18caa71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"space_mobile\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_font_weight\":\"400\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1575", "224", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1579", "225", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1580", "225", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1581", "225", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1582", "225", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1583", "225", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"de32a20\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be4e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"8e207fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"74d66d8\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1c3702b\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"89c9a17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d65a579\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b190c5c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FDCD01\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"join\"},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/online-course.jpg\",\"id\":220}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.png\",\"id\":208},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18caa71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"space_mobile\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#F6BC0F\",\"text_color\":\"#F6BC0F\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_font_weight\":\"400\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1584", "225", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1585", "225", "_elementor_css", "a:5:{s:4:\"time\";i:1589769034;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:12;s:9:\"fa-brands\";i:13;s:10:\"fa-regular\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("1587", "226", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1588", "226", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1589", "226", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1590", "226", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1591", "226", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"de32a20\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be4e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"8e207fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"74d66d8\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1c3702b\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"89c9a17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d65a579\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b190c5c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FDCD01\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"join\"},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/online-course.jpg\",\"id\":220}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#download\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"_css_classes\":\"daftar\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.png\",\"id\":208},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18caa71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"space_mobile\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_font_weight\":\"400\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1592", "226", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1594", "227", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1595", "227", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1596", "227", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1597", "227", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1598", "227", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"de32a20\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be4e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"8e207fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"74d66d8\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1c3702b\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"89c9a17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d65a579\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b190c5c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FDCD01\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"join\"},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/online-course.jpg\",\"id\":220}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"?add-to-cart=170\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.png\",\"id\":208},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18caa71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"space_mobile\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_font_weight\":\"400\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1599", "227", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1602", "228", "_edit_lock", "1590078289:1");
INSERT INTO `lt_postmeta` VALUES("1603", "228", "_edit_last", "1");
INSERT INTO `lt_postmeta` VALUES("1604", "228", "_regular_price", "370000");
INSERT INTO `lt_postmeta` VALUES("1605", "228", "_sale_price", "250000");
INSERT INTO `lt_postmeta` VALUES("1606", "228", "total_sales", "7");
INSERT INTO `lt_postmeta` VALUES("1607", "228", "_tax_status", "taxable");
INSERT INTO `lt_postmeta` VALUES("1608", "228", "_tax_class", "");
INSERT INTO `lt_postmeta` VALUES("1609", "228", "_manage_stock", "no");
INSERT INTO `lt_postmeta` VALUES("1610", "228", "_backorders", "no");
INSERT INTO `lt_postmeta` VALUES("1611", "228", "_sold_individually", "yes");
INSERT INTO `lt_postmeta` VALUES("1612", "228", "_virtual", "yes");
INSERT INTO `lt_postmeta` VALUES("1613", "228", "_downloadable", "no");
INSERT INTO `lt_postmeta` VALUES("1614", "228", "_download_limit", "-1");
INSERT INTO `lt_postmeta` VALUES("1615", "228", "_download_expiry", "-1");
INSERT INTO `lt_postmeta` VALUES("1616", "228", "_stock", NULL);
INSERT INTO `lt_postmeta` VALUES("1617", "228", "_stock_status", "instock");
INSERT INTO `lt_postmeta` VALUES("1618", "228", "_wc_average_rating", "0");
INSERT INTO `lt_postmeta` VALUES("1619", "228", "_wc_review_count", "0");
INSERT INTO `lt_postmeta` VALUES("1620", "228", "_product_version", "4.1.0");
INSERT INTO `lt_postmeta` VALUES("1621", "228", "_price", "250000");
INSERT INTO `lt_postmeta` VALUES("1622", "228", "site-sidebar-layout", "default");
INSERT INTO `lt_postmeta` VALUES("1623", "228", "site-content-layout", "default");
INSERT INTO `lt_postmeta` VALUES("1624", "228", "theme-transparent-header-meta", "default");
INSERT INTO `lt_postmeta` VALUES("1625", "170", "_wp_trash_meta_status", "publish");
INSERT INTO `lt_postmeta` VALUES("1626", "170", "_wp_trash_meta_time", "1589771635");
INSERT INTO `lt_postmeta` VALUES("1627", "170", "_wp_desired_post_slug", "meeting-series");
INSERT INTO `lt_postmeta` VALUES("1628", "229", "_wp_attached_file", "2020/05/Kelas-Online-Gejala-Penyakit-Meeting.png");
INSERT INTO `lt_postmeta` VALUES("1629", "229", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:560;s:6:\"height\";i:560;s:4:\"file\";s:48:\"2020/05/Kelas-Online-Gejala-Penyakit-Meeting.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Kelas-Online-Gejala-Penyakit-Meeting-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Kelas-Online-Gejala-Penyakit-Meeting-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Kelas-Online-Gejala-Penyakit-Meeting-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Kelas-Online-Gejala-Penyakit-Meeting-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Kelas-Online-Gejala-Penyakit-Meeting-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Kelas-Online-Gejala-Penyakit-Meeting-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}");
INSERT INTO `lt_postmeta` VALUES("1630", "228", "_thumbnail_id", "229");
INSERT INTO `lt_postmeta` VALUES("1631", "230", "_wp_trash_meta_status", "publish");
INSERT INTO `lt_postmeta` VALUES("1632", "230", "_wp_trash_meta_time", "1589771781");
INSERT INTO `lt_postmeta` VALUES("1633", "231", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1634", "231", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1635", "231", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1636", "231", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1637", "231", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"de32a20\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be4e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"8e207fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"74d66d8\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1c3702b\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"89c9a17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d65a579\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b190c5c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FDCD01\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"join\"},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/online-course.jpg\",\"id\":220}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"?add-to-cart=228\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.png\",\"id\":208},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18caa71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"space_mobile\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_font_weight\":\"400\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1638", "231", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1639", "231", "_elementor_css", "a:5:{s:4:\"time\";i:1589771055;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:12;s:9:\"fa-brands\";i:13;s:10:\"fa-regular\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("1642", "232", "_order_key", "wc_order_hgRS3vQ1bTgiA");
INSERT INTO `lt_postmeta` VALUES("1643", "232", "_customer_user", "3");
INSERT INTO `lt_postmeta` VALUES("1644", "232", "_payment_method", "midtrans");
INSERT INTO `lt_postmeta` VALUES("1645", "232", "_payment_method_title", "Online Payment via Midtrans");
INSERT INTO `lt_postmeta` VALUES("1646", "232", "_customer_ip_address", "114.124.232.30");
INSERT INTO `lt_postmeta` VALUES("1647", "232", "_customer_user_agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36");
INSERT INTO `lt_postmeta` VALUES("1648", "232", "_created_via", "checkout");
INSERT INTO `lt_postmeta` VALUES("1649", "232", "_cart_hash", "f91bcfccc00fd0c651a0c3f4482d050b");
INSERT INTO `lt_postmeta` VALUES("1650", "232", "_billing_first_name", "PAKAR");
INSERT INTO `lt_postmeta` VALUES("1651", "232", "_billing_last_name", "Tes");
INSERT INTO `lt_postmeta` VALUES("1652", "232", "_billing_company", "PAKAR");
INSERT INTO `lt_postmeta` VALUES("1653", "232", "_billing_address_1", "PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan");
INSERT INTO `lt_postmeta` VALUES("1654", "232", "_billing_city", "Jakarta Barat");
INSERT INTO `lt_postmeta` VALUES("1655", "232", "_billing_state", "JK");
INSERT INTO `lt_postmeta` VALUES("1656", "232", "_billing_postcode", "11440");
INSERT INTO `lt_postmeta` VALUES("1657", "232", "_billing_country", "ID");
INSERT INTO `lt_postmeta` VALUES("1658", "232", "_billing_email", "yapicaw597@beiop.com");
INSERT INTO `lt_postmeta` VALUES("1659", "232", "_billing_phone", "0215672564");
INSERT INTO `lt_postmeta` VALUES("1660", "232", "_order_currency", "IDR");
INSERT INTO `lt_postmeta` VALUES("1661", "232", "_cart_discount", "0");
INSERT INTO `lt_postmeta` VALUES("1662", "232", "_cart_discount_tax", "0");
INSERT INTO `lt_postmeta` VALUES("1663", "232", "_order_shipping", "0");
INSERT INTO `lt_postmeta` VALUES("1664", "232", "_order_shipping_tax", "0");
INSERT INTO `lt_postmeta` VALUES("1665", "232", "_order_tax", "0");
INSERT INTO `lt_postmeta` VALUES("1666", "232", "_order_total", "250000");
INSERT INTO `lt_postmeta` VALUES("1667", "232", "_order_version", "4.1.0");
INSERT INTO `lt_postmeta` VALUES("1668", "232", "_prices_include_tax", "no");
INSERT INTO `lt_postmeta` VALUES("1669", "232", "_billing_address_index", "PAKAR Tes PAKAR PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan  Jakarta Barat JK 11440 ID yapicaw597@beiop.com 0215672564");
INSERT INTO `lt_postmeta` VALUES("1670", "232", "_shipping_address_index", "        ");
INSERT INTO `lt_postmeta` VALUES("1671", "232", "is_vat_exempt", "no");
INSERT INTO `lt_postmeta` VALUES("1672", "232", "_mt_payment_snap_token", "ed8ac0ef-a766-4c7a-b183-ffe38d16311c");
INSERT INTO `lt_postmeta` VALUES("1673", "232", "_mt_payment_url", "https://app.sandbox.midtrans.com/snap/v2/vtweb/ed8ac0ef-a766-4c7a-b183-ffe38d16311c");
INSERT INTO `lt_postmeta` VALUES("1674", "233", "_order_key", "wc_order_viuCE9W82Z43Q");
INSERT INTO `lt_postmeta` VALUES("1675", "233", "_customer_user", "3");
INSERT INTO `lt_postmeta` VALUES("1676", "233", "_payment_method", "midtrans");
INSERT INTO `lt_postmeta` VALUES("1677", "233", "_payment_method_title", "Online Payment via Midtrans");
INSERT INTO `lt_postmeta` VALUES("1678", "233", "_customer_ip_address", "114.124.232.30");
INSERT INTO `lt_postmeta` VALUES("1679", "233", "_customer_user_agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36");
INSERT INTO `lt_postmeta` VALUES("1680", "233", "_created_via", "checkout");
INSERT INTO `lt_postmeta` VALUES("1681", "233", "_cart_hash", "f91bcfccc00fd0c651a0c3f4482d050b");
INSERT INTO `lt_postmeta` VALUES("1682", "233", "_billing_first_name", "PAKAR");
INSERT INTO `lt_postmeta` VALUES("1683", "233", "_billing_last_name", "Tes");
INSERT INTO `lt_postmeta` VALUES("1684", "233", "_billing_company", "PAKAR");
INSERT INTO `lt_postmeta` VALUES("1685", "233", "_billing_address_1", "PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan");
INSERT INTO `lt_postmeta` VALUES("1686", "233", "_billing_city", "Jakarta Barat");
INSERT INTO `lt_postmeta` VALUES("1687", "233", "_billing_state", "JK");
INSERT INTO `lt_postmeta` VALUES("1688", "233", "_billing_postcode", "11440");
INSERT INTO `lt_postmeta` VALUES("1689", "233", "_billing_country", "ID");
INSERT INTO `lt_postmeta` VALUES("1690", "233", "_billing_email", "yapicaw597@beiop.com");
INSERT INTO `lt_postmeta` VALUES("1691", "233", "_billing_phone", "0215672564");
INSERT INTO `lt_postmeta` VALUES("1692", "233", "_order_currency", "IDR");
INSERT INTO `lt_postmeta` VALUES("1693", "233", "_cart_discount", "0");
INSERT INTO `lt_postmeta` VALUES("1694", "233", "_cart_discount_tax", "0");
INSERT INTO `lt_postmeta` VALUES("1695", "233", "_order_shipping", "0");
INSERT INTO `lt_postmeta` VALUES("1696", "233", "_order_shipping_tax", "0");
INSERT INTO `lt_postmeta` VALUES("1697", "233", "_order_tax", "0");
INSERT INTO `lt_postmeta` VALUES("1698", "233", "_order_total", "250000");
INSERT INTO `lt_postmeta` VALUES("1699", "233", "_order_version", "4.1.0");
INSERT INTO `lt_postmeta` VALUES("1700", "233", "_prices_include_tax", "no");
INSERT INTO `lt_postmeta` VALUES("1701", "233", "_billing_address_index", "PAKAR Tes PAKAR PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan  Jakarta Barat JK 11440 ID yapicaw597@beiop.com 0215672564");
INSERT INTO `lt_postmeta` VALUES("1702", "233", "_shipping_address_index", "        ");
INSERT INTO `lt_postmeta` VALUES("1703", "233", "is_vat_exempt", "no");
INSERT INTO `lt_postmeta` VALUES("1704", "233", "_mt_payment_snap_token", "64655019-6d28-444d-8726-104153e7eb4b");
INSERT INTO `lt_postmeta` VALUES("1705", "233", "_mt_payment_url", "https://app.sandbox.midtrans.com/snap/v2/vtweb/64655019-6d28-444d-8726-104153e7eb4b");
INSERT INTO `lt_postmeta` VALUES("1706", "234", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1707", "234", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1708", "234", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1709", "234", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1710", "234", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"de32a20\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be4e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"8e207fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"74d66d8\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1c3702b\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"89c9a17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d65a579\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b190c5c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FDCD01\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"join\"},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/online-course.jpg\",\"id\":220}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"?add-to-cart=228\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"0808063\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.png\",\"id\":208},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39cd9e1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d41e223\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2183564\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Akses Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b44c44b\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc4725\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"57a8e15\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"5dbe048\",\"elType\":\"widget\",\"settings\":{\"title\":\"Introduction\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3854626\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"4840845\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a59e95a\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b3c63c\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"1a8fef6\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c1ad8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Episode 1\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b28be\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"9677f2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f536b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9188945\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"bde3a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"20ff941\",\"elType\":\"widget\",\"settings\":{\"title\":\"Episode 2\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9ef4980\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"58b35bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"18caa71\",\"elType\":\"widget\",\"settings\":{\"title\":\"Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"space_mobile\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_font_weight\":\"400\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1711", "234", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1712", "234", "_elementor_css", "a:5:{s:4:\"time\";i:1589772056;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:12;s:9:\"fa-brands\";i:13;s:10:\"fa-regular\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("1722", "2", "_oembed_43c880a8f9ad9f4ba6d545c095de6b50", "<iframe title=\"Meeting Kering Hasil Kering : Introduction\" width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/VwBVp0vv_Mk?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>");
INSERT INTO `lt_postmeta` VALUES("1723", "2", "_oembed_time_43c880a8f9ad9f4ba6d545c095de6b50", "1589773607");
INSERT INTO `lt_postmeta` VALUES("1740", "238", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1741", "238", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1742", "238", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1743", "238", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1744", "238", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"de32a20\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be4e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"8e207fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"74d66d8\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"89c9a17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d65a579\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b190c5c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FDCD01\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"join\"},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/online-course.jpg\",\"id\":220}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"?add-to-cart=228\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.png\",\"id\":208},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39cd9e1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d41e223\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2183564\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Akses Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b44c44b\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc4725\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"57a8e15\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"5dbe048\",\"elType\":\"widget\",\"settings\":{\"title\":\"Introduction\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3854626\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"4840845\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a59e95a\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b3c63c\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"1a8fef6\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c1ad8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Episode 1\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b28be\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"9677f2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f536b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9188945\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"bde3a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"20ff941\",\"elType\":\"widget\",\"settings\":{\"title\":\"Episode 2\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9ef4980\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"58b35bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9ae07ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course <span style=\\\"color: red;\\\">Gejala Penyakit Meeting<\\/span>\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"space_mobile\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_font_weight\":\"400\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1745", "238", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1746", "238", "_elementor_css", "a:5:{s:4:\"time\";i:1589773606;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:12;s:9:\"fa-brands\";i:13;s:10:\"fa-regular\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("1749", "239", "_order_key", "wc_order_lq0HVeVzBnq6J");
INSERT INTO `lt_postmeta` VALUES("1750", "239", "_customer_user", "1");
INSERT INTO `lt_postmeta` VALUES("1751", "239", "_payment_method", "midtrans");
INSERT INTO `lt_postmeta` VALUES("1752", "239", "_payment_method_title", "Online Payment via Midtrans");
INSERT INTO `lt_postmeta` VALUES("1753", "239", "_customer_ip_address", "114.124.232.30");
INSERT INTO `lt_postmeta` VALUES("1754", "239", "_customer_user_agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36");
INSERT INTO `lt_postmeta` VALUES("1755", "239", "_created_via", "checkout");
INSERT INTO `lt_postmeta` VALUES("1756", "239", "_cart_hash", "f91bcfccc00fd0c651a0c3f4482d050b");
INSERT INTO `lt_postmeta` VALUES("1757", "239", "_billing_first_name", "Sulistio");
INSERT INTO `lt_postmeta` VALUES("1758", "239", "_billing_last_name", "Test");
INSERT INTO `lt_postmeta` VALUES("1759", "239", "_billing_company", "PAKAR");
INSERT INTO `lt_postmeta` VALUES("1760", "239", "_billing_address_1", "PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan");
INSERT INTO `lt_postmeta` VALUES("1761", "239", "_billing_city", "Jakarta Barat");
INSERT INTO `lt_postmeta` VALUES("1762", "239", "_billing_state", "JK");
INSERT INTO `lt_postmeta` VALUES("1763", "239", "_billing_postcode", "11440");
INSERT INTO `lt_postmeta` VALUES("1764", "239", "_billing_country", "ID");
INSERT INTO `lt_postmeta` VALUES("1765", "239", "_billing_email", "gixor80421@reqaxv.com");
INSERT INTO `lt_postmeta` VALUES("1766", "239", "_billing_phone", "0215672564");
INSERT INTO `lt_postmeta` VALUES("1767", "239", "_order_currency", "IDR");
INSERT INTO `lt_postmeta` VALUES("1768", "239", "_cart_discount", "0");
INSERT INTO `lt_postmeta` VALUES("1769", "239", "_cart_discount_tax", "0");
INSERT INTO `lt_postmeta` VALUES("1770", "239", "_order_shipping", "0");
INSERT INTO `lt_postmeta` VALUES("1771", "239", "_order_shipping_tax", "0");
INSERT INTO `lt_postmeta` VALUES("1772", "239", "_order_tax", "0");
INSERT INTO `lt_postmeta` VALUES("1773", "239", "_order_total", "250000");
INSERT INTO `lt_postmeta` VALUES("1774", "239", "_order_version", "4.1.0");
INSERT INTO `lt_postmeta` VALUES("1775", "239", "_prices_include_tax", "no");
INSERT INTO `lt_postmeta` VALUES("1776", "239", "_billing_address_index", "Sulistio Test PAKAR PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan  Jakarta Barat JK 11440 ID gixor80421@reqaxv.com 0215672564");
INSERT INTO `lt_postmeta` VALUES("1777", "239", "_shipping_address_index", "        ");
INSERT INTO `lt_postmeta` VALUES("1778", "239", "is_vat_exempt", "no");
INSERT INTO `lt_postmeta` VALUES("1779", "239", "_mt_payment_snap_token", "8ecff85d-cec6-4f1a-8b93-6f4fd9a578d6");
INSERT INTO `lt_postmeta` VALUES("1780", "239", "_mt_payment_url", "https://app.sandbox.midtrans.com/snap/v2/vtweb/8ecff85d-cec6-4f1a-8b93-6f4fd9a578d6");
INSERT INTO `lt_postmeta` VALUES("1781", "240", "_order_key", "wc_order_vBTE1zr7y2enH");
INSERT INTO `lt_postmeta` VALUES("1782", "240", "_customer_user", "1");
INSERT INTO `lt_postmeta` VALUES("1783", "240", "_payment_method", "midtrans");
INSERT INTO `lt_postmeta` VALUES("1784", "240", "_payment_method_title", "Online Payment via Midtrans");
INSERT INTO `lt_postmeta` VALUES("1785", "240", "_customer_ip_address", "114.124.232.30");
INSERT INTO `lt_postmeta` VALUES("1786", "240", "_customer_user_agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36");
INSERT INTO `lt_postmeta` VALUES("1787", "240", "_created_via", "checkout");
INSERT INTO `lt_postmeta` VALUES("1788", "240", "_cart_hash", "f91bcfccc00fd0c651a0c3f4482d050b");
INSERT INTO `lt_postmeta` VALUES("1789", "240", "_billing_first_name", "Sulistio");
INSERT INTO `lt_postmeta` VALUES("1790", "240", "_billing_last_name", "Test");
INSERT INTO `lt_postmeta` VALUES("1791", "240", "_billing_company", "PAKAR");
INSERT INTO `lt_postmeta` VALUES("1792", "240", "_billing_address_1", "PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan");
INSERT INTO `lt_postmeta` VALUES("1793", "240", "_billing_city", "Jakarta Barat");
INSERT INTO `lt_postmeta` VALUES("1794", "240", "_billing_state", "JK");
INSERT INTO `lt_postmeta` VALUES("1795", "240", "_billing_postcode", "11440");
INSERT INTO `lt_postmeta` VALUES("1796", "240", "_billing_country", "ID");
INSERT INTO `lt_postmeta` VALUES("1797", "240", "_billing_email", "gixor80421@reqaxv.com");
INSERT INTO `lt_postmeta` VALUES("1798", "240", "_billing_phone", "0215672564");
INSERT INTO `lt_postmeta` VALUES("1799", "240", "_order_currency", "IDR");
INSERT INTO `lt_postmeta` VALUES("1800", "240", "_cart_discount", "0");
INSERT INTO `lt_postmeta` VALUES("1801", "240", "_cart_discount_tax", "0");
INSERT INTO `lt_postmeta` VALUES("1802", "240", "_order_shipping", "0");
INSERT INTO `lt_postmeta` VALUES("1803", "240", "_order_shipping_tax", "0");
INSERT INTO `lt_postmeta` VALUES("1804", "240", "_order_tax", "0");
INSERT INTO `lt_postmeta` VALUES("1805", "240", "_order_total", "250000");
INSERT INTO `lt_postmeta` VALUES("1806", "240", "_order_version", "4.1.0");
INSERT INTO `lt_postmeta` VALUES("1807", "240", "_prices_include_tax", "no");
INSERT INTO `lt_postmeta` VALUES("1808", "240", "_billing_address_index", "Sulistio Test PAKAR PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan  Jakarta Barat JK 11440 ID gixor80421@reqaxv.com 0215672564");
INSERT INTO `lt_postmeta` VALUES("1809", "240", "_shipping_address_index", "        ");
INSERT INTO `lt_postmeta` VALUES("1810", "240", "is_vat_exempt", "no");
INSERT INTO `lt_postmeta` VALUES("1811", "240", "_mt_payment_snap_token", "0f69b516-557b-4a4e-89f8-c44976ff4e22");
INSERT INTO `lt_postmeta` VALUES("1812", "240", "_mt_payment_url", "https://app.sandbox.midtrans.com/snap/v2/vtweb/0f69b516-557b-4a4e-89f8-c44976ff4e22");
INSERT INTO `lt_postmeta` VALUES("1813", "240", "_wp_trash_meta_status", "wc-pending");
INSERT INTO `lt_postmeta` VALUES("1814", "240", "_wp_trash_meta_time", "1589776946");
INSERT INTO `lt_postmeta` VALUES("1815", "240", "_wp_desired_post_slug", "order-may-18-2020-0432-am");
INSERT INTO `lt_postmeta` VALUES("1816", "239", "_wp_trash_meta_status", "wc-pending");
INSERT INTO `lt_postmeta` VALUES("1817", "239", "_wp_trash_meta_time", "1589776946");
INSERT INTO `lt_postmeta` VALUES("1818", "239", "_wp_desired_post_slug", "order-may-18-2020-0410-am");
INSERT INTO `lt_postmeta` VALUES("1819", "233", "_wp_trash_meta_status", "wc-pending");
INSERT INTO `lt_postmeta` VALUES("1820", "233", "_wp_trash_meta_time", "1589776946");
INSERT INTO `lt_postmeta` VALUES("1821", "233", "_wp_desired_post_slug", "order-may-18-2020-0329-am");
INSERT INTO `lt_postmeta` VALUES("1822", "232", "_wp_trash_meta_status", "wc-pending");
INSERT INTO `lt_postmeta` VALUES("1823", "232", "_wp_trash_meta_time", "1589776946");
INSERT INTO `lt_postmeta` VALUES("1824", "232", "_wp_desired_post_slug", "order-may-18-2020-0323-am");
INSERT INTO `lt_postmeta` VALUES("1825", "184", "_wp_trash_meta_status", "wc-cancelled");
INSERT INTO `lt_postmeta` VALUES("1826", "184", "_wp_trash_meta_time", "1589776946");
INSERT INTO `lt_postmeta` VALUES("1827", "184", "_wp_desired_post_slug", "order-may-14-2020-0855-am");
INSERT INTO `lt_postmeta` VALUES("1828", "184", "_wp_trash_meta_comments_status", "a:1:{i:4;s:1:\"1\";}");
INSERT INTO `lt_postmeta` VALUES("1829", "179", "_wp_trash_meta_status", "wc-cancelled");
INSERT INTO `lt_postmeta` VALUES("1830", "179", "_wp_trash_meta_time", "1589776946");
INSERT INTO `lt_postmeta` VALUES("1831", "179", "_wp_desired_post_slug", "order-may-14-2020-0816-am");
INSERT INTO `lt_postmeta` VALUES("1832", "179", "_wp_trash_meta_comments_status", "a:1:{i:3;s:1:\"1\";}");
INSERT INTO `lt_postmeta` VALUES("1833", "177", "_wp_trash_meta_status", "wc-cancelled");
INSERT INTO `lt_postmeta` VALUES("1834", "177", "_wp_trash_meta_time", "1589776946");
INSERT INTO `lt_postmeta` VALUES("1835", "177", "_wp_desired_post_slug", "order-may-14-2020-0813-am");
INSERT INTO `lt_postmeta` VALUES("1836", "177", "_wp_trash_meta_comments_status", "a:1:{i:2;s:1:\"1\";}");
INSERT INTO `lt_postmeta` VALUES("1837", "241", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1838", "241", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1839", "241", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1840", "241", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1841", "241", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"de32a20\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be4e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"8e207fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"74d66d8\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"89c9a17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d65a579\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b190c5c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FDCD01\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"join\"},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/online-course.jpg\",\"id\":220}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fe74f15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dapatkan Harga Spesial:\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62c53b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rp 370.000\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"typography_text_decoration\":\"line-through\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"755580c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rp 250.000\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.9,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"?add-to-cart=228\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.png\",\"id\":208},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39cd9e1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d41e223\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2183564\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Akses Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b44c44b\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc4725\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"57a8e15\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"5dbe048\",\"elType\":\"widget\",\"settings\":{\"title\":\"Introduction\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3854626\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"4840845\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a59e95a\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b3c63c\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"1a8fef6\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c1ad8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Episode 1\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b28be\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"9677f2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f536b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9188945\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"bde3a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"20ff941\",\"elType\":\"widget\",\"settings\":{\"title\":\"Episode 2\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9ef4980\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"58b35bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9ae07ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course <span style=\\\"color: red;\\\">Gejala Penyakit Meeting<\\/span>\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"space_mobile\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_font_weight\":\"400\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1842", "241", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1843", "241", "_elementor_css", "a:5:{s:4:\"time\";i:1589774397;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:12;s:9:\"fa-brands\";i:13;s:10:\"fa-regular\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("1845", "242", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1846", "242", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1847", "242", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1848", "242", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1849", "242", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"de32a20\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be4e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"8e207fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"74d66d8\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"89c9a17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d65a579\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b190c5c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FDCD01\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"join\"},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/online-course.jpg\",\"id\":220}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fe74f15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dapatkan Harga Spesial:\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62c53b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rp 370.000\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"typography_text_decoration\":\"line-through\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"755580c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rp 250.000\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.9,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"?add-to-cart=228\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.png\",\"id\":208},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39cd9e1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d41e223\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2183564\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Akses Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b44c44b\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc4725\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"57a8e15\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"5dbe048\",\"elType\":\"widget\",\"settings\":{\"title\":\"Introduction\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3854626\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"4840845\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a59e95a\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b3c63c\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"1a8fef6\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c1ad8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Episode 1\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b28be\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"9677f2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f536b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9188945\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"bde3a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"20ff941\",\"elType\":\"widget\",\"settings\":{\"title\":\"Episode 2\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9ef4980\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"58b35bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9ae07ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course <span style=\\\"color: red;\\\">Gejala Penyakit Meeting<\\/span>\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"c15fccc\",\"elType\":\"widget\",\"settings\":{\"title\":\"100% Gratis Tanpa Biaya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"space_mobile\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_font_weight\":\"400\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1850", "242", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1853", "243", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1854", "243", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1855", "243", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1856", "243", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1857", "243", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"de32a20\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be4e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"8e207fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"74d66d8\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"89c9a17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d65a579\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b190c5c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FDCD01\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"join\"},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/online-course.jpg\",\"id\":220}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fe74f15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dapatkan Harga Spesial:\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62c53b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rp 370.000\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"typography_text_decoration\":\"line-through\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"755580c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rp 250.000\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.9,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"?add-to-cart=228\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.png\",\"id\":208},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39cd9e1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d41e223\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2183564\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Akses Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b44c44b\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc4725\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"57a8e15\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"5dbe048\",\"elType\":\"widget\",\"settings\":{\"title\":\"Introduction\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3854626\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"4840845\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a59e95a\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b3c63c\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"1a8fef6\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c1ad8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Episode 1\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b28be\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"9677f2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f536b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9188945\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"bde3a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"20ff941\",\"elType\":\"widget\",\"settings\":{\"title\":\"Episode 2\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9ef4980\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"58b35bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9ae07ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course <span style=\\\"color: red;\\\">Gejala Penyakit Meeting<\\/span>\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"space_mobile\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_font_weight\":\"400\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1858", "243", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1859", "243", "_elementor_css", "a:5:{s:4:\"time\";i:1589777563;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:12;s:9:\"fa-brands\";i:13;s:10:\"fa-regular\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("1861", "244", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1862", "244", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1863", "244", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1864", "244", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1865", "244", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"de32a20\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be4e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"8e207fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"74d66d8\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"89c9a17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d65a579\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b190c5c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FDCD01\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"join\"},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/online-course.jpg\",\"id\":220},\"space\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fe74f15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dapatkan Harga Spesial:\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62c53b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rp 370.000\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"typography_text_decoration\":\"line-through\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"755580c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rp 250.000\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.9,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"?add-to-cart=228\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.png\",\"id\":208},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39cd9e1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d41e223\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2183564\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Akses Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b44c44b\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc4725\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"57a8e15\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"5dbe048\",\"elType\":\"widget\",\"settings\":{\"title\":\"Introduction\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3854626\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"4840845\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"a59e95a\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0b3c63c\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"1a8fef6\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"d6c1ad8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Episode 1\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39b28be\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"9677f2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f536b0\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9188945\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"bde3a00\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"20ff941\",\"elType\":\"widget\",\"settings\":{\"title\":\"Episode 2\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.9,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9ef4980\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"58b35bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9ae07ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course <span style=\\\"color: red;\\\">Gejala Penyakit Meeting<\\/span>\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"space_mobile\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_font_weight\":\"400\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1866", "244", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1869", "245", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1870", "245", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1871", "245", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1872", "245", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1873", "245", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"de32a20\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be4e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"8e207fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"74d66d8\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"89c9a17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d65a579\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b190c5c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FDCD01\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"join\"},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"eb146a3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/online-course.jpg\",\"id\":220},\"space\":{\"unit\":\"%\",\"size\":92,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fe74f15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dapatkan Harga Spesial:\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62c53b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rp 370.000\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"typography_text_decoration\":\"line-through\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"755580c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rp 250.000\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.9,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"?add-to-cart=228\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.png\",\"id\":208},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39cd9e1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d41e223\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2183564\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Introduction Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b44c44b\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc4725\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"57a8e15\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"3854626\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"4840845\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9ae07ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course <span style=\\\"color: red;\\\">Gejala Penyakit Meeting<\\/span>\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"space_mobile\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_font_weight\":\"400\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1874", "245", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1875", "245", "_elementor_css", "a:5:{s:4:\"time\";i:1589777777;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:12;s:9:\"fa-brands\";i:13;s:10:\"fa-regular\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("1878", "246", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1879", "246", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1880", "246", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1881", "246", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1882", "246", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"de32a20\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be4e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"8e207fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"74d66d8\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"89c9a17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d65a579\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b190c5c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FDCD01\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"join\"},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_element_id\":\"join\"},\"elements\":[{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fe74f15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dapatkan Harga Spesial:\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62c53b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rp 370.000\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"typography_text_decoration\":\"line-through\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"755580c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rp 250.000\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.9,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"?add-to-cart=228\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.png\",\"id\":208},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39cd9e1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d41e223\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2183564\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Introduction Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b44c44b\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc4725\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"57a8e15\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"3854626\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"4840845\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9ae07ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course <span style=\\\"color: red;\\\">Gejala Penyakit Meeting<\\/span>\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"space_mobile\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_font_weight\":\"400\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1883", "246", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1884", "246", "_elementor_css", "a:5:{s:4:\"time\";i:1589778690;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:12;s:9:\"fa-brands\";i:13;s:10:\"fa-regular\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("1886", "247", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1887", "247", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1888", "247", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1889", "247", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1890", "247", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"de32a20\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be4e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"8e207fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"74d66d8\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"89c9a17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d65a579\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b190c5c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FDCD01\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1416d8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_element_id\":\"join\"},\"elements\":[{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fe74f15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dapatkan Harga Spesial:\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62c53b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rp 370.000\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"typography_text_decoration\":\"line-through\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"755580c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rp 250.000\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.9,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"?add-to-cart=228\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.png\",\"id\":208},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39cd9e1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d41e223\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2183564\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Introduction Kelas Online<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b44c44b\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc4725\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"57a8e15\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"3854626\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"4840845\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d398ad6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFF00\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d54a4a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9ae07ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course <span style=\\\"color: red;\\\">Gejala Penyakit Meeting<\\/span>\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2bc2f7c\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"40cc4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7bea917\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"978df4a\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5534e05\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"space_mobile\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_font_weight\":\"400\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1891", "247", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1894", "248", "_order_key", "wc_order_mw9Nw3EZWSUJx");
INSERT INTO `lt_postmeta` VALUES("1895", "248", "_customer_user", "1");
INSERT INTO `lt_postmeta` VALUES("1896", "248", "_payment_method", "midtrans");
INSERT INTO `lt_postmeta` VALUES("1897", "248", "_payment_method_title", "Online Payment via Midtrans");
INSERT INTO `lt_postmeta` VALUES("1898", "248", "_customer_ip_address", "114.124.232.30");
INSERT INTO `lt_postmeta` VALUES("1899", "248", "_customer_user_agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36");
INSERT INTO `lt_postmeta` VALUES("1900", "248", "_created_via", "checkout");
INSERT INTO `lt_postmeta` VALUES("1901", "248", "_cart_hash", "f91bcfccc00fd0c651a0c3f4482d050b");
INSERT INTO `lt_postmeta` VALUES("1902", "248", "_billing_first_name", "Sulistio");
INSERT INTO `lt_postmeta` VALUES("1903", "248", "_billing_last_name", "Test");
INSERT INTO `lt_postmeta` VALUES("1904", "248", "_billing_company", "PAKAR");
INSERT INTO `lt_postmeta` VALUES("1905", "248", "_billing_address_1", "PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan");
INSERT INTO `lt_postmeta` VALUES("1906", "248", "_billing_city", "Jakarta Barat");
INSERT INTO `lt_postmeta` VALUES("1907", "248", "_billing_state", "JK");
INSERT INTO `lt_postmeta` VALUES("1908", "248", "_billing_postcode", "11440");
INSERT INTO `lt_postmeta` VALUES("1909", "248", "_billing_country", "ID");
INSERT INTO `lt_postmeta` VALUES("1910", "248", "_billing_email", "gixor80421@reqaxv.com");
INSERT INTO `lt_postmeta` VALUES("1911", "248", "_billing_phone", "0215672564");
INSERT INTO `lt_postmeta` VALUES("1912", "248", "_order_currency", "IDR");
INSERT INTO `lt_postmeta` VALUES("1913", "248", "_cart_discount", "0");
INSERT INTO `lt_postmeta` VALUES("1914", "248", "_cart_discount_tax", "0");
INSERT INTO `lt_postmeta` VALUES("1915", "248", "_order_shipping", "0");
INSERT INTO `lt_postmeta` VALUES("1916", "248", "_order_shipping_tax", "0");
INSERT INTO `lt_postmeta` VALUES("1917", "248", "_order_tax", "0");
INSERT INTO `lt_postmeta` VALUES("1918", "248", "_order_total", "250000");
INSERT INTO `lt_postmeta` VALUES("1919", "248", "_order_version", "4.1.0");
INSERT INTO `lt_postmeta` VALUES("1920", "248", "_prices_include_tax", "no");
INSERT INTO `lt_postmeta` VALUES("1921", "248", "_billing_address_index", "Sulistio Test PAKAR PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan  Jakarta Barat JK 11440 ID gixor80421@reqaxv.com 0215672564");
INSERT INTO `lt_postmeta` VALUES("1922", "248", "_shipping_address_index", "        ");
INSERT INTO `lt_postmeta` VALUES("1923", "248", "is_vat_exempt", "no");
INSERT INTO `lt_postmeta` VALUES("1924", "248", "_mt_payment_snap_token", "4bef1719-6e74-4d3c-a5af-d968d4ba279c");
INSERT INTO `lt_postmeta` VALUES("1925", "248", "_mt_payment_url", "https://app.sandbox.midtrans.com/snap/v2/vtweb/4bef1719-6e74-4d3c-a5af-d968d4ba279c");
INSERT INTO `lt_postmeta` VALUES("1926", "249", "_order_key", "wc_order_ZEshhKz8ZdFdD");
INSERT INTO `lt_postmeta` VALUES("1927", "249", "_customer_user", "4");
INSERT INTO `lt_postmeta` VALUES("1928", "249", "_payment_method", "midtrans");
INSERT INTO `lt_postmeta` VALUES("1929", "249", "_payment_method_title", "Online Payment via Midtrans");
INSERT INTO `lt_postmeta` VALUES("1930", "249", "_customer_ip_address", "114.124.232.30");
INSERT INTO `lt_postmeta` VALUES("1931", "249", "_customer_user_agent", "Mozilla/5.0 (Linux; Android 8.0.0; SM-A750GN) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Mobile Safari/537.36");
INSERT INTO `lt_postmeta` VALUES("1932", "249", "_created_via", "checkout");
INSERT INTO `lt_postmeta` VALUES("1933", "249", "_cart_hash", "f91bcfccc00fd0c651a0c3f4482d050b");
INSERT INTO `lt_postmeta` VALUES("1934", "249", "_billing_first_name", "Sulistio");
INSERT INTO `lt_postmeta` VALUES("1935", "249", "_billing_last_name", "Tes");
INSERT INTO `lt_postmeta` VALUES("1936", "249", "_billing_address_1", "Jl. Kantin No 9");
INSERT INTO `lt_postmeta` VALUES("1937", "249", "_billing_address_2", "Pabaton");
INSERT INTO `lt_postmeta` VALUES("1938", "249", "_billing_city", "Bogor");
INSERT INTO `lt_postmeta` VALUES("1939", "249", "_billing_state", "JB");
INSERT INTO `lt_postmeta` VALUES("1940", "249", "_billing_postcode", "16121");
INSERT INTO `lt_postmeta` VALUES("1941", "249", "_billing_country", "ID");
INSERT INTO `lt_postmeta` VALUES("1942", "249", "_billing_email", "justestsaja@gmail.com");
INSERT INTO `lt_postmeta` VALUES("1943", "249", "_billing_phone", "+6282114441212");
INSERT INTO `lt_postmeta` VALUES("1944", "249", "_order_currency", "IDR");
INSERT INTO `lt_postmeta` VALUES("1945", "249", "_cart_discount", "0");
INSERT INTO `lt_postmeta` VALUES("1946", "249", "_cart_discount_tax", "0");
INSERT INTO `lt_postmeta` VALUES("1947", "249", "_order_shipping", "0");
INSERT INTO `lt_postmeta` VALUES("1948", "249", "_order_shipping_tax", "0");
INSERT INTO `lt_postmeta` VALUES("1949", "249", "_order_tax", "0");
INSERT INTO `lt_postmeta` VALUES("1950", "249", "_order_total", "250000");
INSERT INTO `lt_postmeta` VALUES("1951", "249", "_order_version", "4.1.0");
INSERT INTO `lt_postmeta` VALUES("1952", "249", "_prices_include_tax", "no");
INSERT INTO `lt_postmeta` VALUES("1953", "249", "_billing_address_index", "Sulistio Tes  Jl. Kantin No 9 Pabaton Bogor JB 16121 ID justestsaja@gmail.com +6282114441212");
INSERT INTO `lt_postmeta` VALUES("1954", "249", "_shipping_address_index", "        ");
INSERT INTO `lt_postmeta` VALUES("1955", "249", "is_vat_exempt", "no");
INSERT INTO `lt_postmeta` VALUES("1956", "249", "_mt_payment_snap_token", "25e40da3-bee5-475c-9548-56eab26a471b");
INSERT INTO `lt_postmeta` VALUES("1957", "249", "_mt_payment_url", "https://app.sandbox.midtrans.com/snap/v2/vtweb/25e40da3-bee5-475c-9548-56eab26a471b");
INSERT INTO `lt_postmeta` VALUES("1958", "2", "_oembed_73fc4c1cfbdca085a47249fe9d403dd6", "<iframe title=\"Meeting Kering Hasil Kering : Introduction\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/VwBVp0vv_Mk?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>");
INSERT INTO `lt_postmeta` VALUES("1959", "2", "_oembed_time_73fc4c1cfbdca085a47249fe9d403dd6", "1589779666");
INSERT INTO `lt_postmeta` VALUES("1966", "250", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1967", "250", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1968", "250", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1969", "250", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1970", "250", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"de32a20\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be4e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"8e207fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"74d66d8\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"89c9a17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d65a579\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika IYA, Online Course ini Sangat Cocok Untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b190c5c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.png\",\"id\":208},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39cd9e1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d41e223\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2183564\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Online Course<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b44c44b\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc4725\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"57a8e15\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"076cc25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Introduction\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3854626\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"4840845\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"8714220\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a49d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"f290582\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"20b2396\",\"elType\":\"widget\",\"settings\":{\"title\":\"Episode 1\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"669e3b6\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"0b80e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3fad867\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6eb732\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"f240441\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"592bc2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Episode 2\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c069871\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"a5c066e\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FDCD01\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9ae07ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course <span style=\\\"color: #ffffff;\\\">Gejala Penyakit Meeting<\\/span>\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_element_id\":\"join\"},\"elements\":[{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fe74f15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dapatkan Harga Spesial:\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62c53b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rp 370.000\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"typography_text_decoration\":\"line-through\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"755580c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rp 250.000\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.9,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"?add-to-cart=228\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"space_mobile\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_font_weight\":\"400\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1971", "250", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1972", "250", "_elementor_css", "a:5:{s:4:\"time\";i:1589778829;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:4:{i:0;s:0:\"\";i:1;s:8:\"fa-solid\";i:12;s:9:\"fa-brands\";i:13;s:10:\"fa-regular\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("1974", "228", "_wp_old_slug", "kelas-online-gejala-penyakit-meeting");
INSERT INTO `lt_postmeta` VALUES("1975", "251", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1976", "251", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1977", "251", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1978", "251", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1979", "251", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"de32a20\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be4e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"8e207fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"74d66d8\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"89c9a17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d65a579\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika IYA, Online Course ini Sangat Cocok Untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b190c5c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.png\",\"id\":208},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39cd9e1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d41e223\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2183564\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Online Course<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b44c44b\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc4725\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"57a8e15\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"076cc25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Introduction\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3854626\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"4840845\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"8714220\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a49d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"f290582\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"20b2396\",\"elType\":\"widget\",\"settings\":{\"title\":\"Episode 1\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"669e3b6\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"0b80e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3fad867\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6eb732\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"f240441\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"592bc2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Episode 2\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c069871\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"a5c066e\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FDF101\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9ae07ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course <span style=\\\"color: red;\\\">Gejala Penyakit Meeting<\\/span>\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_element_id\":\"join\"},\"elements\":[{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fe74f15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dapatkan Harga Spesial:\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62c53b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rp 370.000\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"typography_text_decoration\":\"line-through\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"755580c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rp 250.000\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.9,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"?add-to-cart=228\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"space_mobile\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_font_weight\":\"400\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1980", "251", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1989", "253", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1990", "253", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1991", "253", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1992", "253", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("1993", "253", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"ea4ee95\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Course yang menjabarkan tentang cara sukses meeting sampai eksekusi hasil meeting.\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"de32a20\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be4e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"8e207fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"74d66d8\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"SAYA MAU\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"icon_indent\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"89c9a17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d65a579\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika IYA, Online Course ini Sangat Cocok Untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b190c5c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.png\",\"id\":208},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39cd9e1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d41e223\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2183564\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Online Course<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b44c44b\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc4725\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"57a8e15\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"076cc25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Introduction\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3854626\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"4840845\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"8714220\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a49d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"f290582\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"20b2396\",\"elType\":\"widget\",\"settings\":{\"title\":\"Episode 1\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"669e3b6\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"0b80e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3fad867\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6eb732\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"f240441\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"592bc2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Episode 2\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c069871\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"a5c066e\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FDF101\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"9ae07ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course <span style=\\\"color: red;\\\">Gejala Penyakit Meeting<\\/span>\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_element_id\":\"join\"},\"elements\":[{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fe74f15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dapatkan Harga Spesial:\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62c53b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rp 370.000\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"typography_text_decoration\":\"line-through\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"755580c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rp 250.000\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.9,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"?add-to-cart=228\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"space_mobile\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_font_weight\":\"400\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("1994", "253", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("1996", "254", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("1997", "254", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("1998", "254", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("1999", "254", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("2000", "254", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"ea4ee95\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Course yang menjabarkan tentang cara sukses meeting sampai eksekusi hasil meeting.\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"de32a20\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be4e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"8e207fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"74d66d8\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"SAYA MAU\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"icon_indent\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"89c9a17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d65a579\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika IYA, Online Course ini Sangat Cocok Untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b190c5c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.png\",\"id\":208},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39cd9e1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d41e223\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2183564\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Online Course<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b44c44b\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc4725\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"57a8e15\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"076cc25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Introduction\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3854626\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"4840845\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"8714220\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a49d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"f290582\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"20b2396\",\"elType\":\"widget\",\"settings\":{\"title\":\"Episode 1\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"669e3b6\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"0b80e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3fad867\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6eb732\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"f240441\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"592bc2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Episode 2\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c069871\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"a5c066e\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FDF101\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"dashed\",\"border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ae07ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course <span style=\\\"color: red;\\\">Gejala Penyakit Meeting<\\/span>\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_border\":\"dashed\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FF0000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_element_id\":\"join\"},\"elements\":[{\"id\":\"5372a10\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"fe74f15\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dapatkan Harga Spesial:\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62c53b1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rp 370.000\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"typography_text_decoration\":\"line-through\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"755580c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rp 250.000\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.9,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2.3,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"?add-to-cart=228\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"space_mobile\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_font_weight\":\"400\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("2001", "254", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("2003", "255", "_edit_lock", "1589787272:1");
INSERT INTO `lt_postmeta` VALUES("2004", "255", "_edit_last", "1");
INSERT INTO `lt_postmeta` VALUES("2005", "255", "options", "a:5:{s:4:\"type\";s:6:\"footer\";s:7:\"linking\";s:4:\"both\";s:4:\"side\";s:8:\"frontend\";s:8:\"language\";s:4:\"html\";s:8:\"priority\";s:1:\"5\";}");
INSERT INTO `lt_postmeta` VALUES("2006", "256", "_wp_attached_file", "2020/05/whatsapp.png");
INSERT INTO `lt_postmeta` VALUES("2007", "256", "_wp_attachment_metadata", "a:5:{s:5:\"width\";i:70;s:6:\"height\";i:70;s:4:\"file\";s:20:\"2020/05/whatsapp.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:{}}}");
INSERT INTO `lt_postmeta` VALUES("2008", "256", "_edit_lock", "1589786627:1");
INSERT INTO `lt_postmeta` VALUES("2010", "257", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("2011", "257", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("2012", "257", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("2013", "257", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("2014", "257", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"ea4ee95\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Course yang menjabarkan tentang cara sukses meeting sampai eksekusi hasil meeting.\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"de32a20\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be4e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"8e207fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"74d66d8\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"SAYA MAU\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"icon_indent\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"89c9a17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d65a579\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika IYA, Online Course ini Sangat Cocok Untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b190c5c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.png\",\"id\":208},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39cd9e1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d41e223\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2183564\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Online Course<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b44c44b\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc4725\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"57a8e15\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"076cc25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Introduction\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3854626\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"4840845\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"8714220\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a49d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"f290582\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"20b2396\",\"elType\":\"widget\",\"settings\":{\"title\":\"Episode 1\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"669e3b6\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"0b80e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3fad867\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6eb732\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"f240441\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"592bc2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Episode 2\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c069871\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"a5c066e\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FDF101\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"dashed\",\"border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ae07ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course <span style=\\\"color: red;\\\">Gejala Penyakit Meeting<\\/span>\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_border\":\"dashed\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FF0000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_element_id\":\"join\"},\"elements\":[{\"id\":\"7873516\",\"elType\":\"widget\",\"settings\":{\"eael_pricing_table_title\":\"Gejala Penyakit Meeting\",\"eael_pricing_table_sub_title\":\"Online Course Tentang\",\"eael_pricing_table_style_2_icon_new\":{\"value\":\"\",\"library\":\"\"},\"eael_pricing_table_price\":\"370.000\",\"eael_pricing_table_onsale_price\":\"89\",\"eael_pricing_table_price_cur\":\"Rp \",\"eael_pricing_table_price_period\":\"\",\"eael_pricing_table_period_separator\":\"\",\"eael_pricing_table_items\":[{\"eael_pricing_table_item\":\"Sekali Bayar\",\"_id\":\"704805c\",\"eael_pricing_table_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_pricing_table_icon_mood\":\"yes\",\"eael_pricing_table_list_icon_color\":\"#009CE0\",\"eael_pricing_item_tooltip\":\"\",\"eael_pricing_item_tooltip_content\":\"I\'m a awesome tooltip!!\",\"eael_pricing_item_tooltip_side\":\"top\",\"eael_pricing_item_tooltip_trigger\":\"hover\",\"eael_pricing_item_tooltip_animation\":\"fade\",\"pricing_item_tooltip_animation_duration\":300,\"eael_pricing_table_toolip_arrow\":\"yes\",\"eael_pricing_item_tooltip_theme\":\"noir\"},{\"eael_pricing_table_item\":\"Free Ebook\",\"eael_pricing_table_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_pricing_table_icon_mood\":\"yes\",\"eael_pricing_table_list_icon_color\":\"#009CE0\",\"eael_pricing_item_tooltip\":\"\",\"eael_pricing_item_tooltip_content\":\"I\'m a awesome tooltip!!\",\"eael_pricing_item_tooltip_side\":\"top\",\"eael_pricing_item_tooltip_trigger\":\"hover\",\"eael_pricing_item_tooltip_animation\":\"fade\",\"pricing_item_tooltip_animation_duration\":300,\"eael_pricing_table_toolip_arrow\":\"yes\",\"eael_pricing_item_tooltip_theme\":\"noir\",\"_id\":\"c10a95b\"},{\"eael_pricing_table_item\":\"Diskon Khusus Pembayaran dengan Kartu Kredit\",\"eael_pricing_table_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_pricing_table_icon_mood\":\"yes\",\"eael_pricing_table_list_icon_color\":\"#009CE0\",\"eael_pricing_item_tooltip\":\"\",\"eael_pricing_item_tooltip_content\":\"I\'m a awesome tooltip!!\",\"eael_pricing_item_tooltip_side\":\"top\",\"eael_pricing_item_tooltip_trigger\":\"hover\",\"eael_pricing_item_tooltip_animation\":\"fade\",\"pricing_item_tooltip_animation_duration\":300,\"eael_pricing_table_toolip_arrow\":\"yes\",\"eael_pricing_item_tooltip_theme\":\"noir\",\"_id\":\"f91be16\"}],\"eael_pricing_table_button_show\":\"\",\"eael_pricing_table_btn\":\"Choose Plan\",\"eael_pricing_table_featured_tag_text\":\"Featured\",\"eael_pricing_table_content_alignment\":\"left\",\"eael_pricing_table_title_typography_typography\":\"custom\",\"eael_pricing_table_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_pricing_table_pricing_curr_color\":\"#009CE0\",\"eael_pricing_table_list_item_color\":\"#333333\",\"eael_pricing_table_list_item_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"eael-pricing-table\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"?add-to-cart=228\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"space_mobile\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_font_weight\":\"400\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("2015", "257", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("2016", "257", "_elementor_css", "a:5:{s:4:\"time\";i:1589786796;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:4:{i:0;s:10:\"fa-regular\";i:1;s:8:\"fa-solid\";i:10;s:0:\"\";i:11;s:9:\"fa-brands\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("2019", "258", "_wp_page_template", "elementor_canvas");
INSERT INTO `lt_postmeta` VALUES("2020", "258", "_elementor_edit_mode", "builder");
INSERT INTO `lt_postmeta` VALUES("2021", "258", "_elementor_template_type", "wp-page");
INSERT INTO `lt_postmeta` VALUES("2022", "258", "_elementor_version", "2.9.8");
INSERT INTO `lt_postmeta` VALUES("2023", "258", "_elementor_data", "[{\"id\":\"669456e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/background-2.jpg\",\"id\":19},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"90f0d8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"02b87c5\",\"elType\":\"section\",\"settings\":{\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"-8\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"41ca866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dde0605\",\"elType\":\"widget\",\"settings\":{\"title\":\"Semua harus <span style=\\\"color: #fff000\\\">SAYA<\\/span>?<br>\\nMeeting <span style=\\\"color: #fff000\\\">TAK<\\/span> ada <span style=\\\"color: #fff000\\\">GUNA<\\/span>-nya?<br>Eksekusi Hasil meeting <span style=\\\"color: #fff000\\\">SUSAH<\\/span>?\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3.2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a04ee\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"0da6ac3\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"b4e3a35\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"21d576a\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MVm4TkH9ISQ\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"autoplay\":\"yes\",\"play_on_mobile\":\"yes\",\"modestbranding\":\"yes\",\"controls\":\"\"},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"ea4ee95\",\"elType\":\"widget\",\"settings\":{\"title\":\"Online Course yang menjabarkan tentang cara sukses meeting sampai eksekusi hasil meeting.\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.6,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"6eae8ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"de32a20\",\"elType\":\"section\",\"settings\":{\"structure\":\"33\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"be4e194\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"8e207fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"74d66d8\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"SAYA MAU\",\"link\":{\"url\":\"#join\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\",\"selected_icon\":{\"value\":\"far fa-arrow-alt-circle-right\",\"library\":\"fa-regular\"},\"icon_indent\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"89c9a17\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e52df63\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"bba471b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e07e5fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pernah kah Anda merasa seperti ini?\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a2bc552\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d03f66c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5377571\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Asian-boss-angry.jpg\",\"id\":120}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"166a1fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9b88eb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda Pimpinan\\/Atasan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d03c8e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter<\\/b> di situ lagi <br>dan hasil nya <b>ga<\\/b> ada yang <b>nyata<\\/b>, <br>dan perusahaan <b>ga<\\/b> ada <b>perkembangan<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI <\\/b>nya <b>ga jalan-jalan<\\/b> dan susah banget maju \\u2026 Nah kan!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"Atau malah lebih parahnya anda<b> jarang<\\/b>\\u2026. atau bahkan tidak pernah <b>meeting<\\/b>? \",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"40da459\"},{\"text\":\"Anda merasa kok <b>semua nya harus saya<\\/b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli\\u2026\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"bb1b800\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"26dcac9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1900616\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"e114898\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ef0e0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.001},\"elements\":[{\"id\":\"3f8dc00\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika Anda seorang bawahan...\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"280972c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Apa anda sering merasa <b>muak<\\/b> dengan <b>meeting<\\/b> yang terlalu <b>sering<\\/b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya<\\/b>?\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Kalau pun meeting, <b>ga ada isi<\\/b> nya, mem<b>bosan<\\/b>kan, sampai membuat anda tertidur\\u2026. <br>atau, yang ada cuma <b>disalah-salahin<\\/b>, dimarah-marahin, ga jelas <b>mau nya apa sih<\\/b>!\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"}],\"space_between\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"65b3e38\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.928},\"elements\":[{\"id\":\"29bd408\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/employee-three-women-sitting-beside-white-table-1181616-scaled.jpg\",\"id\":122},\"space_tablet\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"d65a579\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jika IYA, Online Course ini Sangat Cocok Untuk Anda!\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b190c5c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ee8dd11\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F2F2F2\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"9\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d8fd99\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0b65d3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Perkenalkan, Saya\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3412180\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coach Joshua Sutanto\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61d7f45\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]}},\"elements\":[{\"id\":\"7c02b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100},\"elements\":[{\"id\":\"000a8aa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/05\\/Coach-Joshua-Susanto.png\",\"id\":208},\"space\":{\"unit\":\"%\",\"size\":63,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b15bf70\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e03a30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a053957\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>Coach Joshua Sutanto<\\/b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.<\\/p><div class=\\\"_2cuy _3dgx _2vxa\\\">Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis,\\u00a0dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia.<\\/div><div>\\u00a0<\\/div><div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Selama 5 tahun sebagai Senior Certified Business Coach\\u2122 di GRATYO\\u00ae World\\u2019s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<\\/p><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"cebbb45\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"25836f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"_2cuy _3dgx _2vxa\\\"><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan<\\/p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif<\\/p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent\\/Human Capital, Operation\\/System, dan Money services.<\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.2,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39cd9e1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_color_b\":\"#069DE6\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":94,\"sizes\":[]},\"background_gradient_type\":\"radial\",\"background_gradient_position\":\"bottom center\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.76,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"d41e223\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"2183564\",\"elType\":\"widget\",\"settings\":{\"title\":\"<span style=\\\"font-weight:400\\\">Online Course<\\/span><br> Gejala Penyakit Meeting\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b44c44b\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bc4725\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"57a8e15\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"076cc25\",\"elType\":\"widget\",\"settings\":{\"title\":\"Introduction\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3854626\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=VwBVp0vv_Mk\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"4840845\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"8714220\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"66a49d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"f290582\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"20b2396\",\"elType\":\"widget\",\"settings\":{\"title\":\"Episode 1\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"669e3b6\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/HRItDrYQQWM\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"0b80e09\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true},{\"id\":\"3fad867\",\"elType\":\"section\",\"settings\":{\"structure\":\"34\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6eb732\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"f240441\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"592bc2d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Episode 2\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c069871\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/hZfgDKXD0ZM\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"a5c066e\",\"elType\":\"column\",\"settings\":{\"_column_size\":16,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ab545a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FDF101\",\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9affa82\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"dashed\",\"border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ae07ed\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course <span style=\\\"color: red;\\\">Gejala Penyakit Meeting<\\/span>\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":2.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_border_border\":\"dashed\",\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#FF0000\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67b368f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true}},\"elements\":[{\"id\":\"4c3fd27\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"a111bad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:\",\"header_size\":\"p\",\"align\":\"left\",\"title_color\":\"#333333\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.8,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0183ec8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"<b>Gejala Semua Saya \\n<\\/b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"_id\":\"10f0ab0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"<b>Gejala Meeting Gagal <br><\\/b>(bagi yang merasa percuma meeting karena tak ada gunanya)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3326264\"},{\"text\":\"<b>Gejala Susah Eksekusi \\n<\\/b>(bagi yang sudah sering meeting tapi hasil kering)\",\"selected_icon\":{\"value\":\"fas fa-chevron-circle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9d2f543\"}],\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_color\":\"#009CE0\",\"icon_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#333333\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Quicksand\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3fbd742\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_element_id\":\"join\"},\"elements\":[{\"id\":\"7873516\",\"elType\":\"widget\",\"settings\":{\"eael_pricing_table_title\":\"Gejala Penyakit Meeting\",\"eael_pricing_table_sub_title\":\"Online Course Tentang\",\"eael_pricing_table_style_2_icon_new\":{\"value\":\"\",\"library\":\"\"},\"eael_pricing_table_price\":\"370.000\",\"eael_pricing_table_onsale_price\":\"89\",\"eael_pricing_table_price_cur\":\"Rp \",\"eael_pricing_table_price_period\":\"\",\"eael_pricing_table_period_separator\":\"\",\"eael_pricing_table_items\":[{\"eael_pricing_table_item\":\"Sekali Bayar\",\"_id\":\"704805c\",\"eael_pricing_table_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_pricing_table_icon_mood\":\"yes\",\"eael_pricing_table_list_icon_color\":\"#009CE0\",\"eael_pricing_item_tooltip\":\"\",\"eael_pricing_item_tooltip_content\":\"I\'m a awesome tooltip!!\",\"eael_pricing_item_tooltip_side\":\"top\",\"eael_pricing_item_tooltip_trigger\":\"hover\",\"eael_pricing_item_tooltip_animation\":\"fade\",\"pricing_item_tooltip_animation_duration\":300,\"eael_pricing_table_toolip_arrow\":\"yes\",\"eael_pricing_item_tooltip_theme\":\"noir\"},{\"eael_pricing_table_item\":\"Free Ebook\",\"eael_pricing_table_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_pricing_table_icon_mood\":\"yes\",\"eael_pricing_table_list_icon_color\":\"#009CE0\",\"eael_pricing_item_tooltip\":\"\",\"eael_pricing_item_tooltip_content\":\"I\'m a awesome tooltip!!\",\"eael_pricing_item_tooltip_side\":\"top\",\"eael_pricing_item_tooltip_trigger\":\"hover\",\"eael_pricing_item_tooltip_animation\":\"fade\",\"pricing_item_tooltip_animation_duration\":300,\"eael_pricing_table_toolip_arrow\":\"yes\",\"eael_pricing_item_tooltip_theme\":\"noir\",\"_id\":\"c10a95b\"},{\"eael_pricing_table_item\":\"Diskon Khusus Pembayaran dengan Kartu Kredit\",\"eael_pricing_table_list_icon_new\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"eael_pricing_table_icon_mood\":\"yes\",\"eael_pricing_table_list_icon_color\":\"#009CE0\",\"eael_pricing_item_tooltip\":\"\",\"eael_pricing_item_tooltip_content\":\"I\'m a awesome tooltip!!\",\"eael_pricing_item_tooltip_side\":\"top\",\"eael_pricing_item_tooltip_trigger\":\"hover\",\"eael_pricing_item_tooltip_animation\":\"fade\",\"pricing_item_tooltip_animation_duration\":300,\"eael_pricing_table_toolip_arrow\":\"yes\",\"eael_pricing_item_tooltip_theme\":\"noir\",\"_id\":\"f91be16\"}],\"eael_pricing_table_button_show\":\"\",\"eael_pricing_table_btn\":\"Choose Plan\",\"eael_pricing_table_featured_tag_text\":\"Featured\",\"eael_pricing_table_content_alignment\":\"left\",\"eael_pricing_table_title_typography_typography\":\"custom\",\"eael_pricing_table_title_typography_font_size\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"eael_pricing_table_pricing_curr_color\":\"#009CE0\",\"eael_pricing_table_list_item_color\":\"#333333\",\"eael_pricing_table_list_item_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"eael-pricing-table\"},{\"id\":\"ad1a62e\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center; border: 2px dashed #000000;\\\"><span style=\\\"font-weight: bold; line-heigt: 1px;\\\">PENDAFTARAN TUTUP DALAM<\\/span><br \\/><span id=\\\"tutup\\\" style=\\\"font-size: 1.5em; font-weight: bold;\\\">03 Jam : 00 Menit : 00 Detik<\\/span>\\n<\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"cd32b45\",\"elType\":\"widget\",\"settings\":{\"button_type\":\"success\",\"text\":\"DAFTAR SEKARANG!\",\"link\":{\"url\":\"?add-to-cart=228\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"justify\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Quicksand\",\"typography_font_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_weight\":\"700\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#FF0000\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#23A455\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4825972\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#54595F\",\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"structure\":\"30\"},\"elements\":[{\"id\":\"81994e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15},\"elements\":[{\"id\":\"e5e1840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/meetingmastery.lightrees.com\\/wp-content\\/uploads\\/2020\\/04\\/logo.png\",\"id\":10},\"space\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"align_mobile\":\"left\",\"space_mobile\":{\"unit\":\"%\",\"size\":28,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"5a5766c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":26},\"elements\":[{\"id\":\"acf633e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"+6287739007428\",\"selected_icon\":{\"value\":\"fab fa-whatsapp\",\"library\":\"fa-brands\"},\"_id\":\"3989969\",\"link\":{\"url\":\"https:\\/\\/wa.me\\/6287739007428\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"info@lightrees.com\",\"selected_icon\":{\"value\":\"far fa-envelope\",\"library\":\"fa-regular\"},\"_id\":\"332c3a6\",\"link\":{\"url\":\"mailto:info@lightrees.com\",\"is_external\":\"on\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"d8dc42a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":58.666,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5e4aae5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2020 <strong>Lightrees Group<\\/strong>. All Rights Reserved.\",\"header_size\":\"p\",\"align\":\"right\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.8,\"sizes\":[]},\"typography_font_weight\":\"400\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false}]");
INSERT INTO `lt_postmeta` VALUES("2024", "258", "_elementor_page_settings", "a:3:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_color\";s:7:\"#FFFFFF\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}");
INSERT INTO `lt_postmeta` VALUES("2025", "258", "_elementor_css", "a:5:{s:4:\"time\";i:1589788348;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:4:{i:0;s:10:\"fa-regular\";i:1;s:8:\"fa-solid\";i:13;s:0:\"\";i:14;s:9:\"fa-brands\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("2026", "2", "_elementor_controls_usage", "a:11:{s:7:\"heading\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:15;s:11:\"header_size\";i:15;s:5:\"align\";i:15;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:15;s:21:\"typography_typography\";i:15;s:22:\"typography_font_family\";i:14;s:20:\"typography_font_size\";i:15;s:22:\"typography_font_weight\";i:15;s:27:\"typography_font_size_tablet\";i:2;s:27:\"typography_font_size_mobile\";i:15;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:6;}s:15:\"_section_border\";a:3:{s:14:\"_border_border\";i:1;s:13:\"_border_width\";i:1;s:13:\"_border_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:34;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:34;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:11:\"_element_id\";i:1;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:2:{s:13:\"border_border\";i:1;s:13:\"border_radius\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:14:\"padding_mobile\";i:8;s:13:\"margin_mobile\";i:4;s:7:\"padding\";i:16;s:6:\"margin\";i:5;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:10;}s:14:\"section_layout\";a:2:{s:13:\"content_width\";i:1;s:16:\"content_position\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:7;s:16:\"background_color\";i:7;s:18:\"background_color_b\";i:2;s:23:\"background_color_b_stop\";i:2;s:24:\"background_gradient_type\";i:2;s:28:\"background_gradient_position\";i:2;s:16:\"background_image\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:2;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_video\";a:5:{s:11:\"youtube_url\";i:4;s:8:\"autoplay\";i:1;s:14:\"play_on_mobile\";i:1;s:14:\"modestbranding\";i:1;s:8:\"controls\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:7:{s:11:\"button_type\";i:2;s:4:\"text\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:2;s:4:\"size\";i:2;s:13:\"selected_icon\";i:1;s:11:\"icon_indent\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:27:\"typography_font_size_mobile\";i:2;s:22:\"typography_font_weight\";i:2;s:17:\"button_text_color\";i:2;s:16:\"background_color\";i:2;s:11:\"hover_color\";i:2;s:29:\"button_background_hover_color\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:4;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:3:{s:12:\"space_tablet\";i:1;s:5:\"space\";i:2;s:12:\"space_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:4;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:3;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:4;s:9:\"icon_size\";i:3;}s:18:\"section_text_style\";a:4:{s:10:\"text_color\";i:4;s:26:\"icon_typography_typography\";i:3;s:27:\"icon_typography_font_family\";i:3;s:25:\"icon_typography_font_size\";i:3;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:5:\"space\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:27:\"typography_font_size_mobile\";i:2;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:2;}}}}s:18:\"eael-pricing-table\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:4:{s:35:\"eael_section_pricing_table_settings\";a:3:{s:24:\"eael_pricing_table_title\";i:1;s:28:\"eael_pricing_table_sub_title\";i:1;s:35:\"eael_pricing_table_style_2_icon_new\";i:1;}s:32:\"eael_section_pricing_table_price\";a:4:{s:24:\"eael_pricing_table_price\";i:1;s:28:\"eael_pricing_table_price_cur\";i:1;s:31:\"eael_pricing_table_price_period\";i:1;s:35:\"eael_pricing_table_period_separator\";i:1;}s:34:\"eael_section_pricing_table_feature\";a:1:{s:24:\"eael_pricing_table_items\";i:1;}s:34:\"eael_section_pricing_table_footerr\";a:1:{s:30:\"eael_pricing_table_button_show\";i:1;}}s:5:\"style\";a:4:{s:41:\"eael_section_pricing_table_style_settings\";a:1:{s:36:\"eael_pricing_table_content_alignment\";i:1;}s:48:\"eael_section_pricing_table_header_style_settings\";a:2:{s:46:\"eael_pricing_table_title_typography_typography\";i:1;s:45:\"eael_pricing_table_title_typography_font_size\";i:1;}s:47:\"eael_section_pricing_table_title_style_settings\";a:1:{s:37:\"eael_pricing_table_pricing_curr_color\";i:1;}s:55:\"eael_section_pricing_table_style_featured_list_settings\";a:2:{s:34:\"eael_pricing_table_list_item_color\";i:1;s:50:\"eael_pricing_table_list_item_typography_typography\";i:1;}}}}s:4:\"html\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:4:\"html\";i:1;}}}}}");
INSERT INTO `lt_postmeta` VALUES("2027", "2", "_elementor_css", "a:5:{s:4:\"time\";i:1589821985;s:5:\"fonts\";a:1:{i:0;s:9:\"Quicksand\";}s:5:\"icons\";a:4:{i:0;s:10:\"fa-regular\";i:1;s:8:\"fa-solid\";i:13;s:0:\"\";i:14;s:9:\"fa-brands\";}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}");
INSERT INTO `lt_postmeta` VALUES("2028", "2", "_oembed_5e5402832daca0fe8ce12394330451b0", "<iframe title=\"Meeting Mastery #1: Jarang atau Tidak Pernah Meeting\" width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/HRItDrYQQWM?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>");
INSERT INTO `lt_postmeta` VALUES("2029", "2", "_oembed_time_5e5402832daca0fe8ce12394330451b0", "1589821986");
INSERT INTO `lt_postmeta` VALUES("2030", "2", "_oembed_3f0d2b00d233643d91a521f5364fcdb7", "<iframe title=\"Meeting Mastery #2: Meeting Sambil Lakukan Hal Lain (Sambilan)\" width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/hZfgDKXD0ZM?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>");
INSERT INTO `lt_postmeta` VALUES("2031", "2", "_oembed_time_3f0d2b00d233643d91a521f5364fcdb7", "1589821986");
INSERT INTO `lt_postmeta` VALUES("2032", "261", "_order_key", "wc_order_q4stGht5L0ROC");
INSERT INTO `lt_postmeta` VALUES("2033", "261", "_customer_user", "5");
INSERT INTO `lt_postmeta` VALUES("2034", "261", "_payment_method", "midtrans");
INSERT INTO `lt_postmeta` VALUES("2035", "261", "_payment_method_title", "Online Payment via Midtrans");
INSERT INTO `lt_postmeta` VALUES("2036", "261", "_customer_ip_address", "114.124.207.31");
INSERT INTO `lt_postmeta` VALUES("2037", "261", "_customer_user_agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36");
INSERT INTO `lt_postmeta` VALUES("2038", "261", "_created_via", "checkout");
INSERT INTO `lt_postmeta` VALUES("2039", "261", "_cart_hash", "f91bcfccc00fd0c651a0c3f4482d050b");
INSERT INTO `lt_postmeta` VALUES("2040", "261", "_billing_first_name", "PAKAR");
INSERT INTO `lt_postmeta` VALUES("2041", "261", "_billing_last_name", "Test");
INSERT INTO `lt_postmeta` VALUES("2042", "261", "_billing_company", "PAKAR");
INSERT INTO `lt_postmeta` VALUES("2043", "261", "_billing_address_1", "PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan");
INSERT INTO `lt_postmeta` VALUES("2044", "261", "_billing_city", "Jakarta Barat");
INSERT INTO `lt_postmeta` VALUES("2045", "261", "_billing_state", "JK");
INSERT INTO `lt_postmeta` VALUES("2046", "261", "_billing_postcode", "11440");
INSERT INTO `lt_postmeta` VALUES("2047", "261", "_billing_country", "ID");
INSERT INTO `lt_postmeta` VALUES("2048", "261", "_billing_email", "st@pakar.co");
INSERT INTO `lt_postmeta` VALUES("2049", "261", "_billing_phone", "0215672564");
INSERT INTO `lt_postmeta` VALUES("2050", "261", "_order_currency", "IDR");
INSERT INTO `lt_postmeta` VALUES("2051", "261", "_cart_discount", "0");
INSERT INTO `lt_postmeta` VALUES("2052", "261", "_cart_discount_tax", "0");
INSERT INTO `lt_postmeta` VALUES("2053", "261", "_order_shipping", "0");
INSERT INTO `lt_postmeta` VALUES("2054", "261", "_order_shipping_tax", "0");
INSERT INTO `lt_postmeta` VALUES("2055", "261", "_order_tax", "0");
INSERT INTO `lt_postmeta` VALUES("2056", "261", "_order_total", "250000");
INSERT INTO `lt_postmeta` VALUES("2057", "261", "_order_version", "4.1.0");
INSERT INTO `lt_postmeta` VALUES("2058", "261", "_prices_include_tax", "no");
INSERT INTO `lt_postmeta` VALUES("2059", "261", "_billing_address_index", "PAKAR Test PAKAR PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan  Jakarta Barat JK 11440 ID st@pakar.co 0215672564");
INSERT INTO `lt_postmeta` VALUES("2060", "261", "_shipping_address_index", "        ");
INSERT INTO `lt_postmeta` VALUES("2061", "261", "is_vat_exempt", "no");
INSERT INTO `lt_postmeta` VALUES("2062", "261", "_mt_payment_snap_token", "53ab1264-de2f-40e0-b71d-470d0be7e3e7");
INSERT INTO `lt_postmeta` VALUES("2063", "261", "_mt_payment_url", "https://app.sandbox.midtrans.com/snap/v2/vtweb/53ab1264-de2f-40e0-b71d-470d0be7e3e7");
INSERT INTO `lt_postmeta` VALUES("2064", "261", "_mt_payment_transaction_id", "57405197-ec58-40c8-85e1-8e7764b6b74c");
INSERT INTO `lt_postmeta` VALUES("2065", "261", "_recorded_sales", "yes");
INSERT INTO `lt_postmeta` VALUES("2066", "261", "_recorded_coupon_usage_counts", "no");
INSERT INTO `lt_postmeta` VALUES("2067", "261", "_order_stock_reduced", "no");
INSERT INTO `lt_postmeta` VALUES("2068", "262", "_order_key", "wc_order_uWSUueHTB5fm2");
INSERT INTO `lt_postmeta` VALUES("2069", "262", "_customer_user", "6");
INSERT INTO `lt_postmeta` VALUES("2070", "262", "_payment_method", "midtrans");
INSERT INTO `lt_postmeta` VALUES("2071", "262", "_payment_method_title", "Online Payment via Midtrans");
INSERT INTO `lt_postmeta` VALUES("2072", "262", "_customer_ip_address", "114.124.146.239");
INSERT INTO `lt_postmeta` VALUES("2073", "262", "_customer_user_agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36");
INSERT INTO `lt_postmeta` VALUES("2074", "262", "_created_via", "checkout");
INSERT INTO `lt_postmeta` VALUES("2075", "262", "_cart_hash", "f91bcfccc00fd0c651a0c3f4482d050b");
INSERT INTO `lt_postmeta` VALUES("2076", "262", "_billing_first_name", "Tes");
INSERT INTO `lt_postmeta` VALUES("2077", "262", "_billing_last_name", "Tio");
INSERT INTO `lt_postmeta` VALUES("2078", "262", "_billing_address_1", "Jalan Jalan");
INSERT INTO `lt_postmeta` VALUES("2079", "262", "_billing_address_2", "Jakarta");
INSERT INTO `lt_postmeta` VALUES("2080", "262", "_billing_city", "Jakarta Barat");
INSERT INTO `lt_postmeta` VALUES("2081", "262", "_billing_state", "JK");
INSERT INTO `lt_postmeta` VALUES("2082", "262", "_billing_postcode", "14000");
INSERT INTO `lt_postmeta` VALUES("2083", "262", "_billing_country", "ID");
INSERT INTO `lt_postmeta` VALUES("2084", "262", "_billing_email", "tio@gmail.com");
INSERT INTO `lt_postmeta` VALUES("2085", "262", "_billing_phone", "+6282114441234");
INSERT INTO `lt_postmeta` VALUES("2086", "262", "_order_currency", "IDR");
INSERT INTO `lt_postmeta` VALUES("2087", "262", "_cart_discount", "0");
INSERT INTO `lt_postmeta` VALUES("2088", "262", "_cart_discount_tax", "0");
INSERT INTO `lt_postmeta` VALUES("2089", "262", "_order_shipping", "0");
INSERT INTO `lt_postmeta` VALUES("2090", "262", "_order_shipping_tax", "0");
INSERT INTO `lt_postmeta` VALUES("2091", "262", "_order_tax", "0");
INSERT INTO `lt_postmeta` VALUES("2092", "262", "_order_total", "250000");
INSERT INTO `lt_postmeta` VALUES("2093", "262", "_order_version", "4.1.0");
INSERT INTO `lt_postmeta` VALUES("2094", "262", "_prices_include_tax", "no");
INSERT INTO `lt_postmeta` VALUES("2095", "262", "_billing_address_index", "Tes Tio  Jalan Jalan Jakarta Jakarta Barat JK 14000 ID tio@gmail.com +6282114441234");
INSERT INTO `lt_postmeta` VALUES("2096", "262", "_shipping_address_index", "        ");
INSERT INTO `lt_postmeta` VALUES("2097", "262", "is_vat_exempt", "no");
INSERT INTO `lt_postmeta` VALUES("2098", "262", "_mt_payment_snap_token", "a2638ede-78ba-4c3b-8c54-d44a35accbfc");
INSERT INTO `lt_postmeta` VALUES("2099", "262", "_mt_payment_url", "https://app.sandbox.midtrans.com/snap/v2/vtweb/a2638ede-78ba-4c3b-8c54-d44a35accbfc");
INSERT INTO `lt_postmeta` VALUES("2100", "262", "_mt_payment_transaction_id", "e7baade1-8a53-4085-a470-c09c7a36c8d9");
INSERT INTO `lt_postmeta` VALUES("2101", "262", "_recorded_sales", "yes");
INSERT INTO `lt_postmeta` VALUES("2102", "262", "_recorded_coupon_usage_counts", "no");
INSERT INTO `lt_postmeta` VALUES("2103", "262", "_order_stock_reduced", "no");
INSERT INTO `lt_postmeta` VALUES("2104", "263", "_order_key", "wc_order_YInrBfQOnz0Qg");
INSERT INTO `lt_postmeta` VALUES("2105", "263", "_customer_user", "6");
INSERT INTO `lt_postmeta` VALUES("2106", "263", "_payment_method", "midtrans");
INSERT INTO `lt_postmeta` VALUES("2107", "263", "_payment_method_title", "Online Payment via Midtrans");
INSERT INTO `lt_postmeta` VALUES("2108", "263", "_customer_ip_address", "114.124.146.239");
INSERT INTO `lt_postmeta` VALUES("2109", "263", "_customer_user_agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36");
INSERT INTO `lt_postmeta` VALUES("2110", "263", "_created_via", "checkout");
INSERT INTO `lt_postmeta` VALUES("2111", "263", "_cart_hash", "f91bcfccc00fd0c651a0c3f4482d050b");
INSERT INTO `lt_postmeta` VALUES("2112", "263", "_billing_first_name", "Tes");
INSERT INTO `lt_postmeta` VALUES("2113", "263", "_billing_last_name", "Tio");
INSERT INTO `lt_postmeta` VALUES("2114", "263", "_billing_address_1", "Jalan Jalan");
INSERT INTO `lt_postmeta` VALUES("2115", "263", "_billing_address_2", "Jakarta");
INSERT INTO `lt_postmeta` VALUES("2116", "263", "_billing_city", "Jakarta Barat");
INSERT INTO `lt_postmeta` VALUES("2117", "263", "_billing_state", "JK");
INSERT INTO `lt_postmeta` VALUES("2118", "263", "_billing_postcode", "14000");
INSERT INTO `lt_postmeta` VALUES("2119", "263", "_billing_country", "ID");
INSERT INTO `lt_postmeta` VALUES("2120", "263", "_billing_email", "tio@gmail.com");
INSERT INTO `lt_postmeta` VALUES("2121", "263", "_billing_phone", "+6282114441234");
INSERT INTO `lt_postmeta` VALUES("2122", "263", "_order_currency", "IDR");
INSERT INTO `lt_postmeta` VALUES("2123", "263", "_cart_discount", "0");
INSERT INTO `lt_postmeta` VALUES("2124", "263", "_cart_discount_tax", "0");
INSERT INTO `lt_postmeta` VALUES("2125", "263", "_order_shipping", "0");
INSERT INTO `lt_postmeta` VALUES("2126", "263", "_order_shipping_tax", "0");
INSERT INTO `lt_postmeta` VALUES("2127", "263", "_order_tax", "0");
INSERT INTO `lt_postmeta` VALUES("2128", "263", "_order_total", "250000");
INSERT INTO `lt_postmeta` VALUES("2129", "263", "_order_version", "4.1.0");
INSERT INTO `lt_postmeta` VALUES("2130", "263", "_prices_include_tax", "no");
INSERT INTO `lt_postmeta` VALUES("2131", "263", "_billing_address_index", "Tes Tio  Jalan Jalan Jakarta Jakarta Barat JK 14000 ID tio@gmail.com +6282114441234");
INSERT INTO `lt_postmeta` VALUES("2132", "263", "_shipping_address_index", "        ");
INSERT INTO `lt_postmeta` VALUES("2133", "263", "is_vat_exempt", "no");
INSERT INTO `lt_postmeta` VALUES("2134", "263", "_mt_payment_snap_token", "3e5e5b8b-c8af-46a1-8b3d-5d4766ad6061");
INSERT INTO `lt_postmeta` VALUES("2135", "263", "_mt_payment_url", "https://app.sandbox.midtrans.com/snap/v2/vtweb/3e5e5b8b-c8af-46a1-8b3d-5d4766ad6061");
INSERT INTO `lt_postmeta` VALUES("2136", "263", "_mt_payment_transaction_id", "f257626f-8b09-4985-86d3-8cac4608d912");
INSERT INTO `lt_postmeta` VALUES("2137", "263", "_recorded_sales", "yes");
INSERT INTO `lt_postmeta` VALUES("2138", "263", "_recorded_coupon_usage_counts", "no");
INSERT INTO `lt_postmeta` VALUES("2139", "263", "_order_stock_reduced", "no");
INSERT INTO `lt_postmeta` VALUES("2140", "264", "_order_key", "wc_order_DGEnigfXQsbY0");
INSERT INTO `lt_postmeta` VALUES("2141", "264", "_customer_user", "6");
INSERT INTO `lt_postmeta` VALUES("2142", "264", "_payment_method", "midtrans");
INSERT INTO `lt_postmeta` VALUES("2143", "264", "_payment_method_title", "Online Payment via Midtrans");
INSERT INTO `lt_postmeta` VALUES("2144", "264", "_customer_ip_address", "114.124.146.239");
INSERT INTO `lt_postmeta` VALUES("2145", "264", "_customer_user_agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36");
INSERT INTO `lt_postmeta` VALUES("2146", "264", "_created_via", "checkout");
INSERT INTO `lt_postmeta` VALUES("2147", "264", "_cart_hash", "f91bcfccc00fd0c651a0c3f4482d050b");
INSERT INTO `lt_postmeta` VALUES("2148", "264", "_billing_first_name", "Tes");
INSERT INTO `lt_postmeta` VALUES("2149", "264", "_billing_last_name", "Tio");
INSERT INTO `lt_postmeta` VALUES("2150", "264", "_billing_address_1", "Jalan Jalan");
INSERT INTO `lt_postmeta` VALUES("2151", "264", "_billing_address_2", "Jakarta");
INSERT INTO `lt_postmeta` VALUES("2152", "264", "_billing_city", "Jakarta Barat");
INSERT INTO `lt_postmeta` VALUES("2153", "264", "_billing_state", "JK");
INSERT INTO `lt_postmeta` VALUES("2154", "264", "_billing_postcode", "14000");
INSERT INTO `lt_postmeta` VALUES("2155", "264", "_billing_country", "ID");
INSERT INTO `lt_postmeta` VALUES("2156", "264", "_billing_email", "tio@gmail.com");
INSERT INTO `lt_postmeta` VALUES("2157", "264", "_billing_phone", "+6282114441234");
INSERT INTO `lt_postmeta` VALUES("2158", "264", "_order_currency", "IDR");
INSERT INTO `lt_postmeta` VALUES("2159", "264", "_cart_discount", "0");
INSERT INTO `lt_postmeta` VALUES("2160", "264", "_cart_discount_tax", "0");
INSERT INTO `lt_postmeta` VALUES("2161", "264", "_order_shipping", "0");
INSERT INTO `lt_postmeta` VALUES("2162", "264", "_order_shipping_tax", "0");
INSERT INTO `lt_postmeta` VALUES("2163", "264", "_order_tax", "0");
INSERT INTO `lt_postmeta` VALUES("2164", "264", "_order_total", "250000");
INSERT INTO `lt_postmeta` VALUES("2165", "264", "_order_version", "4.1.0");
INSERT INTO `lt_postmeta` VALUES("2166", "264", "_prices_include_tax", "no");
INSERT INTO `lt_postmeta` VALUES("2167", "264", "_billing_address_index", "Tes Tio  Jalan Jalan Jakarta Jakarta Barat JK 14000 ID tio@gmail.com +6282114441234");
INSERT INTO `lt_postmeta` VALUES("2168", "264", "_shipping_address_index", "        ");
INSERT INTO `lt_postmeta` VALUES("2169", "264", "is_vat_exempt", "no");
INSERT INTO `lt_postmeta` VALUES("2170", "264", "_mt_payment_snap_token", "e081d6fd-1064-41f7-aabd-2d9e4418faf2");
INSERT INTO `lt_postmeta` VALUES("2171", "264", "_mt_payment_url", "https://app.sandbox.midtrans.com/snap/v2/vtweb/e081d6fd-1064-41f7-aabd-2d9e4418faf2");
INSERT INTO `lt_postmeta` VALUES("2172", "264", "_mt_payment_transaction_id", "eb7fd087-3bfe-4d6e-8453-763fbdbde6c0");
INSERT INTO `lt_postmeta` VALUES("2173", "264", "_recorded_sales", "yes");
INSERT INTO `lt_postmeta` VALUES("2174", "264", "_recorded_coupon_usage_counts", "no");
INSERT INTO `lt_postmeta` VALUES("2175", "264", "_order_stock_reduced", "no");
INSERT INTO `lt_postmeta` VALUES("2176", "265", "_order_key", "wc_order_gXqzoQEhHkEAb");
INSERT INTO `lt_postmeta` VALUES("2177", "265", "_customer_user", "6");
INSERT INTO `lt_postmeta` VALUES("2178", "265", "_payment_method", "midtrans");
INSERT INTO `lt_postmeta` VALUES("2179", "265", "_payment_method_title", "Online Payment via Midtrans");
INSERT INTO `lt_postmeta` VALUES("2180", "265", "_customer_ip_address", "114.124.146.239");
INSERT INTO `lt_postmeta` VALUES("2181", "265", "_customer_user_agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36");
INSERT INTO `lt_postmeta` VALUES("2182", "265", "_created_via", "checkout");
INSERT INTO `lt_postmeta` VALUES("2183", "265", "_cart_hash", "f91bcfccc00fd0c651a0c3f4482d050b");
INSERT INTO `lt_postmeta` VALUES("2184", "265", "_billing_first_name", "Tes");
INSERT INTO `lt_postmeta` VALUES("2185", "265", "_billing_last_name", "Tio");
INSERT INTO `lt_postmeta` VALUES("2186", "265", "_billing_address_1", "Jalan Jalan");
INSERT INTO `lt_postmeta` VALUES("2187", "265", "_billing_address_2", "Jakarta");
INSERT INTO `lt_postmeta` VALUES("2188", "265", "_billing_city", "Jakarta Barat");
INSERT INTO `lt_postmeta` VALUES("2189", "265", "_billing_state", "JK");
INSERT INTO `lt_postmeta` VALUES("2190", "265", "_billing_postcode", "14000");
INSERT INTO `lt_postmeta` VALUES("2191", "265", "_billing_country", "ID");
INSERT INTO `lt_postmeta` VALUES("2192", "265", "_billing_email", "tio@gmail.com");
INSERT INTO `lt_postmeta` VALUES("2193", "265", "_billing_phone", "+6282114441234");
INSERT INTO `lt_postmeta` VALUES("2194", "265", "_order_currency", "IDR");
INSERT INTO `lt_postmeta` VALUES("2195", "265", "_cart_discount", "0");
INSERT INTO `lt_postmeta` VALUES("2196", "265", "_cart_discount_tax", "0");
INSERT INTO `lt_postmeta` VALUES("2197", "265", "_order_shipping", "0");
INSERT INTO `lt_postmeta` VALUES("2198", "265", "_order_shipping_tax", "0");
INSERT INTO `lt_postmeta` VALUES("2199", "265", "_order_tax", "0");
INSERT INTO `lt_postmeta` VALUES("2200", "265", "_order_total", "250000");
INSERT INTO `lt_postmeta` VALUES("2201", "265", "_order_version", "4.1.0");
INSERT INTO `lt_postmeta` VALUES("2202", "265", "_prices_include_tax", "no");
INSERT INTO `lt_postmeta` VALUES("2203", "265", "_billing_address_index", "Tes Tio  Jalan Jalan Jakarta Jakarta Barat JK 14000 ID tio@gmail.com +6282114441234");
INSERT INTO `lt_postmeta` VALUES("2204", "265", "_shipping_address_index", "        ");
INSERT INTO `lt_postmeta` VALUES("2205", "265", "is_vat_exempt", "no");
INSERT INTO `lt_postmeta` VALUES("2206", "265", "_mt_payment_snap_token", "05642109-5d49-4cae-b5f0-37cbed1507e6");
INSERT INTO `lt_postmeta` VALUES("2207", "265", "_mt_payment_url", "https://app.sandbox.midtrans.com/snap/v2/vtweb/05642109-5d49-4cae-b5f0-37cbed1507e6");
INSERT INTO `lt_postmeta` VALUES("2208", "265", "_mt_payment_transaction_id", "d39d0bd5-7011-4973-88c7-3e5eda6b0be0");
INSERT INTO `lt_postmeta` VALUES("2209", "265", "_recorded_sales", "yes");
INSERT INTO `lt_postmeta` VALUES("2210", "265", "_recorded_coupon_usage_counts", "no");
INSERT INTO `lt_postmeta` VALUES("2211", "265", "_order_stock_reduced", "no");
INSERT INTO `lt_postmeta` VALUES("2212", "266", "_order_key", "wc_order_5QFkSd4G401sG");
INSERT INTO `lt_postmeta` VALUES("2213", "266", "_customer_user", "7");
INSERT INTO `lt_postmeta` VALUES("2214", "266", "_payment_method", "midtrans");
INSERT INTO `lt_postmeta` VALUES("2215", "266", "_payment_method_title", "Online Payment via Midtrans");
INSERT INTO `lt_postmeta` VALUES("2216", "266", "_customer_ip_address", "114.124.146.239");
INSERT INTO `lt_postmeta` VALUES("2217", "266", "_customer_user_agent", "Mozilla/5.0 (Linux; U; Android 8.1.0; id-id; Redmi 6 Build/O11019) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/71.0.3578.141 Mobile Safari/537.36 XiaoMi/MiuiBrowser/11.4.3-g");
INSERT INTO `lt_postmeta` VALUES("2218", "266", "_created_via", "checkout");
INSERT INTO `lt_postmeta` VALUES("2219", "266", "_cart_hash", "f91bcfccc00fd0c651a0c3f4482d050b");
INSERT INTO `lt_postmeta` VALUES("2220", "266", "_billing_first_name", "Tessaja");
INSERT INTO `lt_postmeta` VALUES("2221", "266", "_billing_last_name", "Last");
INSERT INTO `lt_postmeta` VALUES("2222", "266", "_billing_address_1", "Jakarta");
INSERT INTO `lt_postmeta` VALUES("2223", "266", "_billing_city", "Jakarta");
INSERT INTO `lt_postmeta` VALUES("2224", "266", "_billing_state", "JK");
INSERT INTO `lt_postmeta` VALUES("2225", "266", "_billing_postcode", "14000");
INSERT INTO `lt_postmeta` VALUES("2226", "266", "_billing_country", "ID");
INSERT INTO `lt_postmeta` VALUES("2227", "266", "_billing_email", "tessa@gmail.com");
INSERT INTO `lt_postmeta` VALUES("2228", "266", "_billing_phone", "021123456");
INSERT INTO `lt_postmeta` VALUES("2229", "266", "_order_currency", "IDR");
INSERT INTO `lt_postmeta` VALUES("2230", "266", "_cart_discount", "0");
INSERT INTO `lt_postmeta` VALUES("2231", "266", "_cart_discount_tax", "0");
INSERT INTO `lt_postmeta` VALUES("2232", "266", "_order_shipping", "0");
INSERT INTO `lt_postmeta` VALUES("2233", "266", "_order_shipping_tax", "0");
INSERT INTO `lt_postmeta` VALUES("2234", "266", "_order_tax", "0");
INSERT INTO `lt_postmeta` VALUES("2235", "266", "_order_total", "250000");
INSERT INTO `lt_postmeta` VALUES("2236", "266", "_order_version", "4.1.0");
INSERT INTO `lt_postmeta` VALUES("2237", "266", "_prices_include_tax", "no");
INSERT INTO `lt_postmeta` VALUES("2238", "266", "_billing_address_index", "Tessaja Last  Jakarta  Jakarta JK 14000 ID tessa@gmail.com 021123456");
INSERT INTO `lt_postmeta` VALUES("2239", "266", "_shipping_address_index", "        ");
INSERT INTO `lt_postmeta` VALUES("2240", "266", "is_vat_exempt", "no");
INSERT INTO `lt_postmeta` VALUES("2241", "266", "_mt_payment_snap_token", "e01bc00a-f06e-45dc-aa0c-75f89170d183");
INSERT INTO `lt_postmeta` VALUES("2242", "266", "_mt_payment_url", "https://app.sandbox.midtrans.com/snap/v2/vtweb/e01bc00a-f06e-45dc-aa0c-75f89170d183");
INSERT INTO `lt_postmeta` VALUES("2243", "266", "_mt_payment_transaction_id", "06e9bd24-b1ae-4bd6-9575-75edaab0706c");
INSERT INTO `lt_postmeta` VALUES("2244", "266", "_recorded_sales", "yes");
INSERT INTO `lt_postmeta` VALUES("2245", "266", "_recorded_coupon_usage_counts", "no");
INSERT INTO `lt_postmeta` VALUES("2246", "266", "_order_stock_reduced", "no");
INSERT INTO `lt_postmeta` VALUES("2247", "267", "_order_key", "wc_order_ssSblb1dVng7f");
INSERT INTO `lt_postmeta` VALUES("2248", "267", "_customer_user", "8");
INSERT INTO `lt_postmeta` VALUES("2249", "267", "_payment_method", "midtrans");
INSERT INTO `lt_postmeta` VALUES("2250", "267", "_payment_method_title", "Online Payment via Midtrans");
INSERT INTO `lt_postmeta` VALUES("2251", "267", "_customer_ip_address", "114.124.242.159");
INSERT INTO `lt_postmeta` VALUES("2252", "267", "_customer_user_agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36");
INSERT INTO `lt_postmeta` VALUES("2253", "267", "_created_via", "checkout");
INSERT INTO `lt_postmeta` VALUES("2254", "267", "_cart_hash", "f91bcfccc00fd0c651a0c3f4482d050b");
INSERT INTO `lt_postmeta` VALUES("2255", "267", "_billing_first_name", "Sulistio");
INSERT INTO `lt_postmeta` VALUES("2256", "267", "_billing_last_name", "Test");
INSERT INTO `lt_postmeta` VALUES("2257", "267", "_billing_company", "PAKAR");
INSERT INTO `lt_postmeta` VALUES("2258", "267", "_billing_address_1", "PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan");
INSERT INTO `lt_postmeta` VALUES("2259", "267", "_billing_city", "Jakarta Barat");
INSERT INTO `lt_postmeta` VALUES("2260", "267", "_billing_state", "JK");
INSERT INTO `lt_postmeta` VALUES("2261", "267", "_billing_postcode", "11440");
INSERT INTO `lt_postmeta` VALUES("2262", "267", "_billing_country", "ID");
INSERT INTO `lt_postmeta` VALUES("2263", "267", "_billing_email", "st@pakar.com");
INSERT INTO `lt_postmeta` VALUES("2264", "267", "_billing_phone", "0215672564");
INSERT INTO `lt_postmeta` VALUES("2265", "267", "_order_currency", "IDR");
INSERT INTO `lt_postmeta` VALUES("2266", "267", "_cart_discount", "0");
INSERT INTO `lt_postmeta` VALUES("2267", "267", "_cart_discount_tax", "0");
INSERT INTO `lt_postmeta` VALUES("2268", "267", "_order_shipping", "0");
INSERT INTO `lt_postmeta` VALUES("2269", "267", "_order_shipping_tax", "0");
INSERT INTO `lt_postmeta` VALUES("2270", "267", "_order_tax", "0");
INSERT INTO `lt_postmeta` VALUES("2271", "267", "_order_total", "250000");
INSERT INTO `lt_postmeta` VALUES("2272", "267", "_order_version", "4.1.0");
INSERT INTO `lt_postmeta` VALUES("2273", "267", "_prices_include_tax", "no");
INSERT INTO `lt_postmeta` VALUES("2274", "267", "_billing_address_index", "Sulistio Test PAKAR PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan  Jakarta Barat JK 11440 ID st@pakar.com 0215672564");
INSERT INTO `lt_postmeta` VALUES("2275", "267", "_shipping_address_index", "        ");
INSERT INTO `lt_postmeta` VALUES("2276", "267", "is_vat_exempt", "no");
INSERT INTO `lt_postmeta` VALUES("2277", "267", "_mt_payment_snap_token", "0d302ed7-bab2-4a75-9538-d6be6e01f73c");
INSERT INTO `lt_postmeta` VALUES("2278", "267", "_mt_payment_url", "https://app.sandbox.midtrans.com/snap/v2/vtweb/0d302ed7-bab2-4a75-9538-d6be6e01f73c");
INSERT INTO `lt_postmeta` VALUES("2279", "267", "_mt_payment_transaction_id", "c1277cea-22c4-4ecf-a479-9a950421c578");
INSERT INTO `lt_postmeta` VALUES("2280", "267", "_recorded_sales", "yes");
INSERT INTO `lt_postmeta` VALUES("2281", "267", "_recorded_coupon_usage_counts", "no");
INSERT INTO `lt_postmeta` VALUES("2282", "267", "_order_stock_reduced", "no");
INSERT INTO `lt_postmeta` VALUES("2283", "268", "_wp_trash_meta_status", "publish");
INSERT INTO `lt_postmeta` VALUES("2284", "268", "_wp_trash_meta_time", "1590064747");
INSERT INTO `lt_postmeta` VALUES("2285", "270", "_edit_lock", "1590113734:1");
INSERT INTO `lt_postmeta` VALUES("2286", "270", "_edit_last", "1");
INSERT INTO `lt_postmeta` VALUES("2287", "271", "_edit_lock", "1590115928:1");
INSERT INTO `lt_postmeta` VALUES("2288", "271", "_edit_last", "1");
INSERT INTO `lt_postmeta` VALUES("2289", "271", "discount_type", "fixed_cart");
INSERT INTO `lt_postmeta` VALUES("2290", "271", "coupon_amount", "250000");
INSERT INTO `lt_postmeta` VALUES("2291", "271", "individual_use", "no");
INSERT INTO `lt_postmeta` VALUES("2292", "271", "product_ids", "228");
INSERT INTO `lt_postmeta` VALUES("2293", "271", "usage_limit", "0");
INSERT INTO `lt_postmeta` VALUES("2294", "271", "usage_limit_per_user", "0");
INSERT INTO `lt_postmeta` VALUES("2295", "271", "limit_usage_to_x_items", "0");
INSERT INTO `lt_postmeta` VALUES("2296", "271", "usage_count", "0");
INSERT INTO `lt_postmeta` VALUES("2297", "271", "date_expires", NULL);
INSERT INTO `lt_postmeta` VALUES("2298", "271", "free_shipping", "no");
INSERT INTO `lt_postmeta` VALUES("2299", "271", "exclude_sale_items", "no");
INSERT INTO `lt_postmeta` VALUES("2300", "272", "_order_key", "wc_order_leMlOn5EDUfpy");
INSERT INTO `lt_postmeta` VALUES("2301", "272", "_customer_user", "1");
INSERT INTO `lt_postmeta` VALUES("2302", "272", "_payment_method", "midtrans");
INSERT INTO `lt_postmeta` VALUES("2303", "272", "_payment_method_title", "Online Payment via Midtrans");
INSERT INTO `lt_postmeta` VALUES("2304", "272", "_customer_ip_address", "114.124.242.15");
INSERT INTO `lt_postmeta` VALUES("2305", "272", "_customer_user_agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36");
INSERT INTO `lt_postmeta` VALUES("2306", "272", "_created_via", "checkout");
INSERT INTO `lt_postmeta` VALUES("2307", "272", "_cart_hash", "f91bcfccc00fd0c651a0c3f4482d050b");
INSERT INTO `lt_postmeta` VALUES("2308", "272", "_billing_first_name", "Sulistio");
INSERT INTO `lt_postmeta` VALUES("2309", "272", "_billing_last_name", "Test");
INSERT INTO `lt_postmeta` VALUES("2310", "272", "_billing_company", "PAKAR");
INSERT INTO `lt_postmeta` VALUES("2311", "272", "_billing_address_1", "PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan");
INSERT INTO `lt_postmeta` VALUES("2312", "272", "_billing_city", "Jakarta Barat");
INSERT INTO `lt_postmeta` VALUES("2313", "272", "_billing_state", "JK");
INSERT INTO `lt_postmeta` VALUES("2314", "272", "_billing_postcode", "11440");
INSERT INTO `lt_postmeta` VALUES("2315", "272", "_billing_country", "ID");
INSERT INTO `lt_postmeta` VALUES("2316", "272", "_billing_email", "gixor80421@reqaxv.com");
INSERT INTO `lt_postmeta` VALUES("2317", "272", "_billing_phone", "0215672564");
INSERT INTO `lt_postmeta` VALUES("2318", "272", "_order_currency", "IDR");
INSERT INTO `lt_postmeta` VALUES("2319", "272", "_cart_discount", "0");
INSERT INTO `lt_postmeta` VALUES("2320", "272", "_cart_discount_tax", "0");
INSERT INTO `lt_postmeta` VALUES("2321", "272", "_order_shipping", "0");
INSERT INTO `lt_postmeta` VALUES("2322", "272", "_order_shipping_tax", "0");
INSERT INTO `lt_postmeta` VALUES("2323", "272", "_order_tax", "0");
INSERT INTO `lt_postmeta` VALUES("2324", "272", "_order_total", "250000");
INSERT INTO `lt_postmeta` VALUES("2325", "272", "_order_version", "4.1.0");
INSERT INTO `lt_postmeta` VALUES("2326", "272", "_prices_include_tax", "no");
INSERT INTO `lt_postmeta` VALUES("2327", "272", "_billing_address_index", "Sulistio Test PAKAR PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan  Jakarta Barat JK 11440 ID gixor80421@reqaxv.com 0215672564");
INSERT INTO `lt_postmeta` VALUES("2328", "272", "_shipping_address_index", "        ");
INSERT INTO `lt_postmeta` VALUES("2329", "272", "is_vat_exempt", "no");
INSERT INTO `lt_postmeta` VALUES("2330", "272", "_mt_payment_snap_token", "c6ad562a-3da1-48e2-9e0a-f5c93d756d04");
INSERT INTO `lt_postmeta` VALUES("2331", "272", "_mt_payment_url", "https://app.sandbox.midtrans.com/snap/v2/vtweb/c6ad562a-3da1-48e2-9e0a-f5c93d756d04");

/* INSERT TABLE DATA: lt_posts */
INSERT INTO `lt_posts` VALUES("1", "1", "2020-04-29 05:25:57", "2020-04-29 05:25:57", "<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->", "Hello world!", "", "publish", "open", "open", "", "hello-world", "", "", "2020-04-29 05:25:57", "2020-04-29 05:25:57", "", "0", "http://meetingmastery.lightrees.com/?p=1", "0", "post", "", "1");
INSERT INTO `lt_posts` VALUES("2", "1", "2020-04-29 05:25:57", "2020-04-29 05:25:57", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<h1>Online Course yang menjabarkan tentang cara sukses meeting sampai eksekusi hasil meeting.</h1>		\n			<a href=\"#join\" role=\"button\">\n						SAYA MAU\n					</a>\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika IYA, Online Course ini Sangat Cocok Untuk Anda!</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"500\" height=\"500\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png\" alt=\"Coach Joshua Susanto\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png 500w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-150x150.png 150w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. <p>Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.</p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Online Course<br> Gejala Penyakit Meeting</p>		\n			<p>Introduction</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Episode 1</p>		\n		https://youtu.be/HRItDrYQQWM		\n			<p>Episode 2</p>		\n		https://youtu.be/hZfgDKXD0ZM		\n			<p>Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course Gejala Penyakit Meeting</p>		\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n	            <h2>Gejala Penyakit Meeting</h2>\n	            Rp 370.000\n	            		<ul>\n						<li >\n				            Sekali Bayar            </li>\n						<li >\n				            Free Ebook            </li>\n						<li >\n				            Diskon Khusus Pembayaran dengan Kartu Kredit            </li>\n					</ul>\n		    	<a href=\"#\"  >\n																			Choose Plan							    	</a>\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"?add-to-cart=228\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "publish", "closed", "open", "", "sample-page", "", "", "2020-05-18 15:24:19", "2020-05-18 08:24:19", "", "0", "http://meetingmastery.lightrees.com/?page_id=2", "0", "page", "", "0");
INSERT INTO `lt_posts` VALUES("3", "1", "2020-04-29 05:25:57", "2020-04-29 05:25:57", "<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Our website address is: http://meetingmastery.lightrees.com.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What personal data we collect and why we collect it</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Comments</h3><!-- /wp:heading --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Media</h3><!-- /wp:heading --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Contact forms</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Cookies</h3><!-- /wp:heading --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Embedded content from other websites</h3><!-- /wp:heading --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Analytics</h3><!-- /wp:heading --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><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><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Your contact information</h2><!-- /wp:heading --><!-- wp:heading --><h2>Additional information</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>How we protect your data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What data breach procedures we have in place</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What third parties we receive data from</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What automated decision making and/or profiling we do with user data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Industry regulatory disclosure requirements</h3><!-- /wp:heading -->", "Privacy Policy", "", "draft", "closed", "open", "", "privacy-policy", "", "", "2020-04-29 05:25:57", "2020-04-29 05:25:57", "", "0", "http://meetingmastery.lightrees.com/?page_id=3", "0", "page", "", "0");
INSERT INTO `lt_posts` VALUES("5", "1", "2020-04-29 06:13:25", "2020-04-29 06:13:25", "<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://meetingmastery.lightrees.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->", "Sample Page", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-29 06:13:25", "2020-04-29 06:13:25", "", "2", "http://meetingmastery.lightrees.com/2020/04/29/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("6", "1", "2020-04-29 06:13:26", "2020-04-29 06:13:26", "", "Default Kit", "", "publish", "closed", "closed", "", "default-kit", "", "", "2020-04-29 06:13:26", "2020-04-29 06:13:26", "", "0", "http://meetingmastery.lightrees.com/?elementor_library=default-kit", "0", "elementor_library", "", "0");
INSERT INTO `lt_posts` VALUES("8", "1", "2020-04-29 06:14:06", "2020-04-29 06:14:06", "<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://meetingmastery.lightrees.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-29 06:14:06", "2020-04-29 06:14:06", "", "2", "http://meetingmastery.lightrees.com/2020/04/29/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("9", "1", "2020-04-29 06:14:06", "2020-04-29 06:14:06", "<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n<!-- wp:quote -->\n<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>\n<!-- /wp:quote -->\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n<!-- wp:quote -->\n<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>\n<!-- /wp:quote -->\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"http://meetingmastery.lightrees.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-29 06:14:06", "2020-04-29 06:14:06", "", "2", "http://meetingmastery.lightrees.com/2020/04/29/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("10", "1", "2020-04-29 06:15:53", "2020-04-29 06:15:53", "", "logo", "", "inherit", "open", "closed", "", "logo", "", "", "2020-04-29 06:15:53", "2020-04-29 06:15:53", "", "2", "http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png", "0", "attachment", "image/png", "0");
INSERT INTO `lt_posts` VALUES("11", "1", "2020-04-29 06:17:23", "2020-04-29 06:17:23", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-29 06:17:23", "2020-04-29 06:17:23", "", "2", "http://meetingmastery.lightrees.com/2020/04/29/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("12", "1", "2020-04-29 06:17:59", "2020-04-29 06:17:59", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-29 06:17:59", "2020-04-29 06:17:59", "", "2", "http://meetingmastery.lightrees.com/2020/04/29/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("14", "1", "2020-04-29 06:56:13", "2020-04-29 06:56:13", "", "background", "", "inherit", "open", "closed", "", "background", "", "", "2020-04-29 06:56:13", "2020-04-29 06:56:13", "", "2", "http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/background.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `lt_posts` VALUES("15", "1", "2020-04-29 06:57:20", "2020-04-29 06:57:20", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<h2>Meeting  Jarang, Hasil Gersang?</h2>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-29 06:57:20", "2020-04-29 06:57:20", "", "2", "http://meetingmastery.lightrees.com/2020/04/29/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("17", "1", "2020-04-29 07:03:26", "2020-04-29 07:03:26", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Apakah ini yang sering Anda Alami?</p>		\n			<p>Apakah ini yang sering Anda Alami?</p>		\n			<h1>Meeting  Jarang, Hasil Gersang?</h1>		\n			<h1>Meeting Sering, Hasil Kering?</h1>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-29 07:03:26", "2020-04-29 07:03:26", "", "2", "http://meetingmastery.lightrees.com/2020/04/29/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("19", "1", "2020-04-29 07:06:46", "2020-04-29 07:06:46", "", "background-2", "", "inherit", "open", "closed", "", "background-2", "", "", "2020-04-29 07:06:46", "2020-04-29 07:06:46", "", "2", "http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/background-2.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `lt_posts` VALUES("20", "1", "2020-04-29 07:07:52", "2020-04-29 07:07:52", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Apakah ini yang sering Anda Alami?</p>		\n			<h1>Meeting  Jarang, Hasil Gersang?</h1>		\n			<h1>Meeting Sering, Hasil Kering?</h1>		\n			<p>Jika Iya, maka Anda mengalami gejala penyakit meeting!</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-29 07:07:52", "2020-04-29 07:07:52", "", "2", "http://meetingmastery.lightrees.com/2020/04/29/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("21", "1", "2020-04-29 07:08:48", "2020-04-29 07:08:48", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Apakah ini yang sering Anda Alami?</p>		\n			<h1>Meeting  Jarang, Hasil Gersang?</h1>		\n			<h1>Meeting Sering, Hasil Kering?</h1>		\n			<p>Jika Iya, maka Anda mengalami gejala penyakit meeting!</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-29 07:08:48", "2020-04-29 07:08:48", "", "2", "http://meetingmastery.lightrees.com/2020/04/29/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("22", "1", "2020-04-29 07:09:33", "2020-04-29 07:09:33", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Apakah ini yang sering Anda Alami?</p>		\n			<h1>Meeting  Jarang, Hasil Gersang?</h1>		\n			<h1>Meeting Sering, Hasil Kering?</h1>		\n			<p>Jika Iya, maka Anda mengalami gejala penyakit meeting!</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-29 07:09:33", "2020-04-29 07:09:33", "", "2", "http://meetingmastery.lightrees.com/2020/04/29/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("23", "1", "2020-04-29 07:13:36", "2020-04-29 07:13:36", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Apakah ini yang sering Anda Alami?</p>		\n			<h1>Meeting  Jarang, Hasil Gersang?</h1>		\n			<h1>Meeting Sering, Hasil Kering?</h1>		\n			<p>Jika Iya, maka Anda wajib membaca halaman ini hingga selesai!</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-29 07:13:36", "2020-04-29 07:13:36", "", "2", "http://meetingmastery.lightrees.com/2020/04/29/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("24", "1", "2020-04-29 07:15:22", "2020-04-29 07:15:22", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Apakah ini yang sering Anda Alami?</p>		\n			<p>Apakah ini yang sering Anda Alami?</p>		\n			<h1>Meeting  Jarang, Hasil Gersang?</h1>		\n			<h1>Meeting Sering, Hasil Kering?</h1>		\n			<p>Jika Iya, maka Anda wajib membaca halaman ini hingga selesai!</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-29 07:15:22", "2020-04-29 07:15:22", "", "2", "http://meetingmastery.lightrees.com/2020/04/29/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("25", "1", "2020-04-29 07:16:30", "2020-04-29 07:16:30", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Apakah ini yang sering Anda Alami?</p>		\n			<h1>Meeting  Jarang, Hasil Gersang?</h1>		\n			<h1>Meeting Sering, Hasil Kering?</h1>		\n			<p>Jika Iya, maka Anda wajib membaca halaman ini hingga selesai!</p>		\n			<p>Apakah ini yang sering Anda Alami?</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-29 07:16:30", "2020-04-29 07:16:30", "", "2", "http://meetingmastery.lightrees.com/2020/04/29/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("27", "1", "2020-04-29 07:25:51", "2020-04-29 07:25:51", "", "Man-Pointing-Finger-PNG-Pic", "", "inherit", "open", "closed", "", "man-pointing-finger-png-pic", "", "", "2020-04-29 07:25:51", "2020-04-29 07:25:51", "", "2", "http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png", "0", "attachment", "image/png", "0");
INSERT INTO `lt_posts` VALUES("28", "1", "2020-04-29 07:40:38", "2020-04-29 07:40:38", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Apakah ini yang sering Anda Alami?</p>		\n			<h1>Meeting  Jarang, Hasil Gersang?</h1>		\n			<h1>Meeting Sering, Hasil Kering?</h1>		\n			<p>Jika Iya, maka Anda wajib membaca halaman ini hingga selesai!</p>		\n			<p>Jika Anda seorang pimpinan...</p>		\n			<p>Jika Anda seorang pimpinan...</p>		\n										<img width=\"580\" height=\"453\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-29 07:40:38", "2020-04-29 07:40:38", "", "2", "http://meetingmastery.lightrees.com/2020/04/29/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("29", "1", "2020-04-29 07:58:34", "2020-04-29 07:58:34", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Apakah ini yang sering Anda Alami?</p>		\n			<h1>Meeting  Jarang, Hasil Gersang?</h1>		\n			<h1>Meeting Sering, Hasil Kering?</h1>		\n			<p>Jika Iya, maka Anda wajib membaca halaman ini hingga selesai!</p>		\n			<p>Jika Anda seorang pimpinan...</p>		\n										<img width=\"580\" height=\"453\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika jawabannya YA, maka anda perlu baca ke bawah… Kalau TIDAK, hmmm… sepertinya anda tetap\nperlu baca ke bawah… supaya tidak mengalaminya</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-29 07:58:34", "2020-04-29 07:58:34", "", "2", "http://meetingmastery.lightrees.com/2020/04/29/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("31", "1", "2020-04-29 08:37:29", "2020-04-29 08:37:29", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Apakah ini yang sering Anda Alami?</p>		\n			<h1>Meeting  Jarang, Hasil Gersang?</h1>		\n			<h1>Meeting Sering, Hasil Kering?</h1>		\n			<p>Jika Iya, maka Anda wajib membaca halaman ini hingga selesai!</p>		\n			<p>Jika Anda seorang pemimpin...</p>		\n										<img width=\"580\" height=\"453\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika jawabannya YA, maka anda perlu baca ke bawah… Kalau TIDAK, hmmm… sepertinya anda tetap\nperlu baca ke bawah… supaya tidak mengalaminya</p>		\n			<p>Jika Anda seorang bawahan...</p>		\n										<img width=\"580\" height=\"453\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n			<p>Jika jawabannya YA, maka anda perlu baca ke bawah… Kalau TIDAK, hmmm… sepertinya anda tetap\nperlu baca ke bawah… supaya tidak mengalaminya</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-29 08:37:29", "2020-04-29 08:37:29", "", "2", "http://meetingmastery.lightrees.com/2020/04/29/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("32", "1", "2020-04-29 08:48:33", "2020-04-29 08:48:33", "", "pointing left", "", "inherit", "open", "closed", "", "pointing-left", "", "", "2020-04-29 08:48:33", "2020-04-29 08:48:33", "", "2", "http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png", "0", "attachment", "image/png", "0");
INSERT INTO `lt_posts` VALUES("34", "1", "2020-04-29 09:05:24", "2020-04-29 09:05:24", "", "Mockup Ebook", "", "inherit", "open", "closed", "", "mockup-ebook", "", "", "2020-04-29 09:05:24", "2020-04-29 09:05:24", "", "2", "http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png", "0", "attachment", "image/png", "0");
INSERT INTO `lt_posts` VALUES("35", "1", "2020-04-29 09:05:51", "2020-04-29 09:05:51", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Apakah ini yang sering Anda Alami?</p>		\n			<h1>Meeting  Jarang, Hasil Gersang?</h1>		\n			<h1>Meeting Sering, Hasil Kering?</h1>		\n			<p>Jika Iya, maka Anda wajib membaca halaman ini hingga selesai!</p>		\n			<p>Jika Anda seorang pemimpin...</p>		\n										<img width=\"580\" height=\"453\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"580\" height=\"387\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-29 09:05:51", "2020-04-29 09:05:51", "", "2", "http://meetingmastery.lightrees.com/2020/04/29/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("36", "1", "2020-04-29 16:09:42", "2020-04-29 09:09:42", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Apakah ini yang sering Anda Alami?</p>		\n			<h1>Meeting  Jarang, Hasil Gersang?</h1>		\n			<h1>Meeting Sering, Hasil Kering?</h1>		\n			<p>Jika Iya, maka Anda wajib membaca halaman ini hingga selesai!</p>		\n			<p>Jika Anda seorang pemimpin...</p>		\n										<img width=\"580\" height=\"453\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"580\" height=\"387\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-29 16:09:42", "2020-04-29 09:09:42", "", "2", "http://meetingmastery.lightrees.com/2020/04/29/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("38", "1", "2020-04-29 16:12:14", "2020-04-29 09:12:14", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Apakah ini yang sering Anda Alami?</p>		\n			<h1>Meeting  Jarang, Hasil Gersang?</h1>		\n			<h1>Meeting Sering, Hasil Kering?</h1>		\n			<p>Jika Iya, maka Anda wajib membaca halaman ini hingga selesai!</p>		\n			<p>Jika Anda seorang pemimpin...</p>		\n										<img width=\"580\" height=\"453\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"580\" height=\"387\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-29 16:12:14", "2020-04-29 09:12:14", "", "2", "http://meetingmastery.lightrees.com/2020/04/29/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("39", "1", "2020-04-29 16:16:35", "2020-04-29 09:16:35", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Apakah ini yang sering Anda Alami?</p>		\n			<h1>Meeting  Jarang, Hasil Gersang?</h1>		\n			<h1>Meeting Sering, Hasil Kering?</h1>		\n			<p>Jika Iya, maka Anda wajib membaca halaman ini hingga selesai!</p>		\n			<p>Jika Anda seorang pemimpin...</p>		\n										<img width=\"580\" height=\"453\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"580\" height=\"387\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-29 16:16:35", "2020-04-29 09:16:35", "", "2", "http://meetingmastery.lightrees.com/2020/04/29/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("41", "1", "2020-04-29 16:31:27", "2020-04-29 09:31:27", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Exclusive Ebook</p>		\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>Jika Anda seorang pemimpin...</p>		\n										<img width=\"580\" height=\"453\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"580\" height=\"387\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-29 16:31:27", "2020-04-29 09:31:27", "", "2", "http://meetingmastery.lightrees.com/2020/04/29/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("42", "1", "2020-04-29 16:33:06", "2020-04-29 09:33:06", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Exclusive Ebook</p>		\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>Jika Anda seorang pemimpin...</p>		\n										<img width=\"580\" height=\"453\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"580\" height=\"387\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-29 16:33:06", "2020-04-29 09:33:06", "", "2", "http://meetingmastery.lightrees.com/2020/04/29/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("44", "1", "2020-04-29 16:43:36", "2020-04-29 09:43:36", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Exclusive Ebook</p>		\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"580\" height=\"453\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"580\" height=\"387\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-29 16:43:36", "2020-04-29 09:43:36", "", "2", "http://meetingmastery.lightrees.com/2020/04/29/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("46", "1", "2020-04-29 16:46:31", "2020-04-29 09:46:31", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Exclusive Ebook</p>		\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"580\" height=\"453\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"580\" height=\"387\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-29 16:46:31", "2020-04-29 09:46:31", "", "2", "http://meetingmastery.lightrees.com/2020/04/29/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("47", "1", "2020-04-29 16:48:13", "2020-04-29 09:48:13", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Exclusive Ebook</p>		\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"580\" height=\"453\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"580\" height=\"387\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-29 16:48:13", "2020-04-29 09:48:13", "", "2", "http://meetingmastery.lightrees.com/2020/04/29/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("48", "1", "2020-04-29 16:48:43", "2020-04-29 09:48:43", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Exclusive Ebook</p>		\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"580\" height=\"453\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"580\" height=\"387\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-29 16:48:43", "2020-04-29 09:48:43", "", "2", "http://meetingmastery.lightrees.com/2020/04/29/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("49", "1", "2020-04-29 16:51:06", "2020-04-29 09:51:06", "[text* your-name placeholder \"Nama Anda (wajib)\"]\r\n[email* your-email placeholder \"Email Aktif (wajib)\"]\r\n[tel* no-wa placeholder \"No. WhatsApp (wajib)\"]\r\n\r\n[submit \"DAFTAR SEKARANG\"]\n1\nLead Baru - [your-name]\nLightrees Grup <no-reply@lt.tmp.pakar.co.id>\nst@pakar.co.id\n[your-name][your-email][no-wa]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Lightrees Grup (http://meetingmastery.lightrees.com)\nReply-To: [your-email]\n\n\n\n\nLightrees Grup \"[your-subject]\"\nLightrees Grup <wordpress@lt.tmp.pakar.co.id>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Lightrees Grup (http://meetingmastery.lightrees.com)\nReply-To: st@pakar.co.id\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.", "Ebook Form", "", "publish", "closed", "closed", "", "contact-form-1", "", "", "2020-05-14 15:07:44", "2020-05-14 08:07:44", "", "0", "http://meetingmastery.lightrees.com/?post_type=wpcf7_contact_form&#038;p=49", "0", "wpcf7_contact_form", "", "0");
INSERT INTO `lt_posts` VALUES("50", "1", "2020-04-29 16:59:21", "2020-04-29 09:59:21", "", "Default Theme", "", "publish", "closed", "closed", "", "default-theme", "", "", "2020-04-29 16:59:21", "2020-04-29 09:59:21", "", "0", "http://meetingmastery.lightrees.com/2020/04/29/default-theme/", "0", "popup_theme", "", "0");
INSERT INTO `lt_posts` VALUES("51", "1", "2020-04-29 16:59:21", "2020-04-29 09:59:21", "", "Light Box", "", "publish", "closed", "closed", "", "lightbox", "", "", "2020-04-29 16:59:21", "2020-04-29 09:59:21", "", "0", "http://meetingmastery.lightrees.com/2020/04/29/lightbox/", "0", "popup_theme", "", "0");
INSERT INTO `lt_posts` VALUES("52", "1", "2020-04-29 16:59:21", "2020-04-29 09:59:21", "", "Enterprise Blue", "", "publish", "closed", "closed", "", "enterprise-blue", "", "", "2020-04-29 16:59:21", "2020-04-29 09:59:21", "", "0", "http://meetingmastery.lightrees.com/2020/04/29/enterprise-blue/", "0", "popup_theme", "", "0");
INSERT INTO `lt_posts` VALUES("53", "1", "2020-04-29 16:59:21", "2020-04-29 09:59:21", "", "Hello Box", "", "publish", "closed", "closed", "", "hello-box", "", "", "2020-04-29 16:59:21", "2020-04-29 09:59:21", "", "0", "http://meetingmastery.lightrees.com/2020/04/29/hello-box/", "0", "popup_theme", "", "0");
INSERT INTO `lt_posts` VALUES("54", "1", "2020-04-29 16:59:21", "2020-04-29 09:59:21", "", "Cutting Edge", "", "publish", "closed", "closed", "", "cutting-edge", "", "", "2020-04-29 16:59:21", "2020-04-29 09:59:21", "", "0", "http://meetingmastery.lightrees.com/2020/04/29/cutting-edge/", "0", "popup_theme", "", "0");
INSERT INTO `lt_posts` VALUES("55", "1", "2020-04-29 16:59:21", "2020-04-29 09:59:21", "", "Framed Border", "", "publish", "closed", "closed", "", "framed-border", "", "", "2020-04-29 16:59:21", "2020-04-29 09:59:21", "", "0", "http://meetingmastery.lightrees.com/2020/04/29/framed-border/", "0", "popup_theme", "", "0");
INSERT INTO `lt_posts` VALUES("57", "1", "2020-04-29 17:04:01", "2020-04-29 10:04:01", "<p style=\"text-align: center;\"><strong>Silahkan mengisi nama, email utama/bisnis, dan nomor WhatsApp anda untuk mendapatkan akses Kelas Online Gratis</strong></p>\r\n<p style=\"text-align: center;\">[contact-form-7 id=\"49\" title=\"Ebook Form\"]</p>", "Kelas Gratis", "", "publish", "closed", "closed", "", "kelas-gratis", "", "", "2020-05-13 22:00:59", "2020-05-13 15:00:59", "", "0", "http://meetingmastery.lightrees.com/?post_type=popup&#038;p=57", "0", "popup", "", "0");
INSERT INTO `lt_posts` VALUES("58", "1", "2020-04-29 17:04:01", "2020-04-29 10:04:01", "[contact-form-7 id=\"49\" title=\"Ebook Form\"]", "Ebook Popup", "", "inherit", "closed", "closed", "", "57-revision-v1", "", "", "2020-04-29 17:04:01", "2020-04-29 10:04:01", "", "57", "http://meetingmastery.lightrees.com/2020/04/29/57-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("59", "1", "2020-04-29 17:04:42", "2020-04-29 10:04:42", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Exclusive Ebook</p>		\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"580\" height=\"453\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"580\" height=\"387\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-29 17:04:42", "2020-04-29 10:04:42", "", "2", "http://meetingmastery.lightrees.com/2020/04/29/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("60", "1", "2020-04-29 17:04:58", "2020-04-29 10:04:58", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Exclusive Ebook</p>		\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"580\" height=\"453\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"580\" height=\"387\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-29 17:04:58", "2020-04-29 10:04:58", "", "2", "http://meetingmastery.lightrees.com/2020/04/29/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("61", "1", "2020-05-13 22:00:20", "2020-05-13 15:00:20", "<p style=\"text-align: center;\"><strong>Silahkan mengisi nama, email utama/bisnis, dan nomor WhatsApp anda untuk mendapatkan akses Kelas Online Gratis</strong></p>\n<p style=\"text-align: center;\">[contact-form-7 id=\"49\" title=\"Ebook Form\"]</p>", "Kelas Gratis", "", "inherit", "closed", "closed", "", "57-autosave-v1", "", "", "2020-05-13 22:00:20", "2020-05-13 15:00:20", "", "57", "http://meetingmastery.lightrees.com/2020/04/29/57-autosave-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("62", "1", "2020-04-30 05:14:25", "2020-04-29 22:14:25", "", "CI1902140152019-02-14_11_32_13photo_thumb", "", "inherit", "open", "closed", "", "ci1902140152019-02-14_11_32_13photo_thumb", "", "", "2020-04-30 05:14:25", "2020-04-29 22:14:25", "", "2", "http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png", "0", "attachment", "image/png", "0");
INSERT INTO `lt_posts` VALUES("63", "1", "2020-04-30 05:17:01", "2020-04-29 22:17:01", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Exclusive Ebook</p>		\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"580\" height=\"453\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"580\" height=\"387\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n		<p><b>Coach Joshua Sutanto</b> adalah seorang Certified Business Coach™ dan Strategic Partner GRATYO® World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa “Life is the ultimate goal of Business, not the other way around”, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-30 05:17:01", "2020-04-29 22:17:01", "", "2", "http://meetingmastery.lightrees.com/2020/04/30/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("64", "1", "2020-04-30 05:31:03", "2020-04-29 22:31:03", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Exclusive Ebook</p>		\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"580\" height=\"453\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"580\" height=\"387\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:</p>		\n					<ul>\n							<li >\n										 Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n		<p><b>Coach Joshua Sutanto</b> adalah seorang Certified Business Coach™ dan Strategic Partner GRATYO® World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa “Life is the ultimate goal of Business, not the other way around”, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-30 05:31:03", "2020-04-29 22:31:03", "", "2", "http://meetingmastery.lightrees.com/2020/04/30/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("65", "1", "2020-04-30 05:32:14", "2020-04-29 22:32:14", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Exclusive Ebook</p>		\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"580\" height=\"453\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"580\" height=\"387\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:</p>		\n					<ul>\n							<li >\n										 Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n		<p><b>Coach Joshua Sutanto</b> adalah seorang Certified Business Coach™ dan Strategic Partner GRATYO® World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa “Life is the ultimate goal of Business, not the other way around”, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-30 05:32:14", "2020-04-29 22:32:14", "", "2", "http://meetingmastery.lightrees.com/2020/04/30/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("66", "1", "2020-04-30 05:33:13", "2020-04-29 22:33:13", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Exclusive Ebook</p>		\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"580\" height=\"453\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"580\" height=\"387\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:</p>		\n					<ul>\n							<li >\n										 Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n		<p><b>Coach Joshua Sutanto</b> adalah seorang Certified Business Coach™ dan Strategic Partner GRATYO® World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa “Life is the ultimate goal of Business, not the other way around”, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-30 05:33:13", "2020-04-29 22:33:13", "", "2", "http://meetingmastery.lightrees.com/2020/04/30/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("67", "1", "2020-04-30 05:35:41", "2020-04-29 22:35:41", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Exclusive Ebook</p>		\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"580\" height=\"453\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"580\" height=\"387\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:</p>		\n					<ul>\n							<li >\n										 Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n		<p><b>Coach Joshua Sutanto</b> adalah seorang Certified Business Coach™ dan Strategic Partner GRATYO® World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa “Life is the ultimate goal of Business, not the other way around”, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-30 05:35:41", "2020-04-29 22:35:41", "", "2", "http://meetingmastery.lightrees.com/2020/04/30/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("68", "1", "2020-04-30 05:40:26", "2020-04-29 22:40:26", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Exclusive Ebook</p>		\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"580\" height=\"453\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"580\" height=\"387\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:</p>		\n					<ul>\n							<li >\n										 Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n		<p><b>Coach Joshua Sutanto</b> adalah seorang Certified Business Coach™ dan Strategic Partner GRATYO® World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa “Life is the ultimate goal of Business, not the other way around”, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.</p><p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-30 05:40:26", "2020-04-29 22:40:26", "", "2", "http://meetingmastery.lightrees.com/2020/04/30/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("69", "1", "2020-04-30 05:41:00", "2020-04-29 22:41:00", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Exclusive Ebook</p>		\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"580\" height=\"453\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"580\" height=\"387\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:</p>		\n					<ul>\n							<li >\n										 Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n		<p><b>Coach Joshua Sutanto</b> adalah seorang Certified Business Coach™ dan Strategic Partner GRATYO® World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa “Life is the ultimate goal of Business, not the other way around”, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.</p><p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-30 05:41:00", "2020-04-29 22:41:00", "", "2", "http://meetingmastery.lightrees.com/2020/04/30/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("70", "1", "2020-04-30 07:20:35", "2020-04-30 00:20:35", "<!-- Facebook Pixel Code -->\r\n<script>\r\n  !function(f,b,e,v,n,t,s)\r\n  {if(f.fbq)return;n=f.fbq=function(){n.callMethod?\r\n  n.callMethod.apply(n,arguments):n.queue.push(arguments)};\r\n  if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version=\'2.0\';\r\n  n.queue=[];t=b.createElement(e);t.async=!0;\r\n  t.src=v;s=b.getElementsByTagName(e)[0];\r\n  s.parentNode.insertBefore(t,s)}(window, document,\'script\',\r\n  \'https://connect.facebook.net/en_US/fbevents.js\');\r\n  fbq(\'init\', \'942210502860501\');\r\n  fbq(\'track\', \'PageView\');\r\n</script>\r\n<noscript><img height=\"1\" width=\"1\" style=\"display:none\"\r\n  src=\"https://www.facebook.com/tr?id=942210502860501&ev=PageView&noscript=1\"\r\n/></noscript>\r\n<!-- End Facebook Pixel Code -->", "Pixel Code", "", "publish", "closed", "closed", "", "pixel-code", "", "", "2020-04-30 09:14:22", "2020-04-30 02:14:22", "", "0", "http://meetingmastery.lightrees.com/?post_type=custom-css-js&#038;p=70", "0", "custom-css-js", "", "0");
INSERT INTO `lt_posts` VALUES("71", "1", "2020-04-30 07:24:56", "2020-04-30 00:24:56", "<script type=\"text/javascript\">\r\ndocument.addEventListener( \'wpcf7mailsent\', function( event ) {\r\n    if ( \'49\' == event.detail.contactFormId ) {       \r\n     \r\n      // Google Event Tracking\r\n     gtag(\"event\", \"submit\", {\r\n      \"event_category\": \"Lead Form\",\r\n      \"event_label\": \"Lead Form\",\r\n      });\r\n   	\r\n     // Facebook Event Tracking\r\n     fbq(\'track\', \'Lead\', {\r\n        content_name: \"Lead Form\",\r\n		content_category: \"Lead Form\",\r\n		});\r\n    }\r\n  \r\n  } , false );\r\n</script>", "Tracking", "", "trash", "closed", "closed", "", "tracking__trashed", "", "", "2020-04-30 08:02:45", "2020-04-30 01:02:45", "", "0", "http://meetingmastery.lightrees.com/?post_type=custom-css-js&#038;p=71", "0", "custom-css-js", "", "0");
INSERT INTO `lt_posts` VALUES("73", "1", "2020-04-30 07:28:54", "2020-04-30 00:28:54", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Exclusive Ebook</p>		\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"580\" height=\"453\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"580\" height=\"387\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:</p>		\n					<ul>\n							<li >\n										 Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n		<p><b>Coach Joshua Sutanto</b> adalah seorang Certified Business Coach™ dan Strategic Partner GRATYO® World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa “Life is the ultimate goal of Business, not the other way around”, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.</p><p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-30 07:28:54", "2020-04-30 00:28:54", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("74", "1", "2020-04-30 08:13:59", "2020-04-30 01:13:59", "<!--Tracking Contact Form -->\r\n\r\n<script>\r\ndocument.addEventListener( \'wpcf7mailsent\', function( event ) {\r\n  \r\n  //FORM ID\r\n   if ( \'49\' == event.detail.contactFormId ) { \r\n     \r\n     // Thank you page\r\n    location = \'/terima-kasih\';  \r\n\r\n  // Facebook Event Tracking\r\n     fbq(\'track\', \'Lead\', {\r\n        content_name: \"Kelas Online Gratis\",\r\n		content_category: \"Kelas Online Gratis\",\r\n		});\r\n     \r\n     // } else if ( \'1571\' == event.detail.contactFormId ) { // NEW PROJECT\r\n    //    location = \'/new-terima-kasih/\';\r\n   \r\n    } else { // GENERAL FORM\r\n        location = \'/\';\r\n    }\r\n  \r\n}, false );\r\n</script>\r\n\r\n<!-- Tracking WA dan Email -->\r\n<script>\r\nvar WA_6287739007428 = {\r\n  selector: \"a[href^=\'https://wa.me/6287739007428\']\",\r\n  fb_event: \"Lead\",\r\n  fb_name: \"WA 6287739007428\",\r\n  fb_category: \"WA 6287739007428\",\r\n  ga_e_category: \"WA 6287739007428\",\r\n  ga_e_action: \"Click\",\r\n  ga_e_label: \"WA 6287739007428\",\r\n}\r\n\r\nvar Email_Info = {\r\n  selector: \"a[href^=\'mailto:info@lightrees.com\']\",\r\n  fb_event: \"Lead\",\r\n  fb_name: \"Email Info\",\r\n  fb_category: \"Email Info\",\r\n  ga_e_category: \"Email Info\",\r\n  ga_e_action: \"Click\",\r\n  ga_e_label: \"Email Info\",\r\n}\r\n\r\nfunction track_control(e) {\r\n  console.log(\"Looking for Google Analytics tracker: gtag or ga?\")\r\n  if (typeof gtag !== \'undefined\') {\r\n    console.log(\"Gtag tracker found, tracking outbound link...\")\r\n    gtag(\"event\", e.ga_e_action, {\r\n      \"event_category\": e.ga_e_category,\r\n      \"event_label\": e.ga_e_label,\r\n      \"transport_type\": \"beacon\",\r\n      \"event_callback\": fb_or_link(e)\r\n    });\r\n  } else if (typeof ga !== \'undefined\') {\r\n    console.log(\"GA tracker found, tracking outbound link...\")\r\n    ga(\"send\", \"event\", e.ga_e_category,\r\n      e.ga_e_action, e.ga_e_label, {\r\n        \"transport_type\": \"beacon\",\r\n        \"event_callback\": fb_or_link(e)\r\n      });\r\n  } else {\r\n    console.log(\"No Google Analytics tracking found!\")\r\n    fb_or_link(e);\r\n  }\r\n}\r\n\r\nfunction fb_or_link(e) {\r\n  console.log(\"Checking FB Pixel presence...\")\r\n  if (typeof fbq !== \'undefined\') {\r\n    console.log(\"FB Pixel found! Tracking...\")\r\n    fb_track(e);\r\n  } else {\r\n    console.log(\"FB Pixel not found! Open link right away.\")\r\n    outbound_link(e);\r\n  }\r\n}\r\n\r\nfunction fb_track(e) {\r\n  console.log(\"Preparing FB tracker.\");\r\n  if (typeof fbq(\"track\", e.fb_event,\r\n    {\r\n      content_name: e.fb_name,\r\n      content_category: e.fb_category\r\n    }\r\n  ) === \'undefined\') outbound_link(e);\r\n}\r\n\r\nfunction outbound_link(e) {\r\n  console.log(\"Redirecting to new link.\");\r\n  if (jQuery(e.selector).attr(\"target\") == \"_blank\") {\r\n    window.open(jQuery(e.selector).attr(\"href\"));\r\n  } else {\r\n    document.location = jQuery(e.selector).attr(\"href\");\r\n  }\r\n}\r\n\r\njQuery(document).ready(function () {\r\n  jQuery(WA_6287739007428.selector).attr(\"onclick\", \"track_control(WA_6287739007428); return false;\");\r\n  jQuery(Email_Info.selector).attr(\"onclick\", \"track_control(Email_Info); return false;\");\r\n  \r\n});\r\n\r\n</script>\r\n\r\n\r\n", "Tracking", "", "publish", "closed", "closed", "", "tracking", "", "", "2020-05-18 12:00:08", "2020-05-18 05:00:08", "", "0", "http://meetingmastery.lightrees.com/?post_type=custom-css-js&#038;p=74", "0", "custom-css-js", "", "0");
INSERT INTO `lt_posts` VALUES("75", "1", "2020-04-30 08:19:30", "2020-04-30 01:19:30", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Exclusive Ebook</p>		\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"580\" height=\"453\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"580\" height=\"387\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:</p>		\n					<ul>\n							<li >\n										 Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n		<p><b>Coach Joshua Sutanto</b> adalah seorang Certified Business Coach™ dan Strategic Partner GRATYO® World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa “Life is the ultimate goal of Business, not the other way around”, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.</p><p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "publish", "closed", "closed", "", "gejala-penyakit-meeting", "", "", "2020-04-30 08:19:31", "2020-04-30 01:19:31", "", "0", "http://meetingmastery.lightrees.com/?elementor_library=gejala-penyakit-meeting", "0", "elementor_library", "", "0");
INSERT INTO `lt_posts` VALUES("76", "1", "2020-04-30 08:19:30", "2020-04-30 01:19:30", "", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "75-revision-v1", "", "", "2020-04-30 08:19:30", "2020-04-30 01:19:30", "", "75", "http://meetingmastery.lightrees.com/75-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("77", "1", "2020-04-30 08:19:31", "2020-04-30 01:19:31", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Exclusive Ebook</p>		\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"580\" height=\"453\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"580\" height=\"387\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n			<p>Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:</p>		\n					<ul>\n							<li >\n										 Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"580\" height=\"580\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 580px) 100vw, 580px\" />											\n		<p><b>Coach Joshua Sutanto</b> adalah seorang Certified Business Coach™ dan Strategic Partner GRATYO® World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa “Life is the ultimate goal of Business, not the other way around”, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.</p><p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "75-revision-v1", "", "", "2020-04-30 08:19:31", "2020-04-30 01:19:31", "", "75", "http://meetingmastery.lightrees.com/75-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("79", "1", "2020-04-30 09:31:51", "2020-04-30 02:31:51", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Exclusive Ebook</p>		\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"610\" height=\"476\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 610px) 100vw, 610px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"683\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<p>Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:</p>		\n					<ul>\n							<li >\n										 Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"752\" height=\"752\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 752px) 100vw, 752px\" />											\n		<p><b>Coach Joshua Sutanto</b> adalah seorang Certified Business Coach™ dan Strategic Partner GRATYO® World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa “Life is the ultimate goal of Business, not the other way around”, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.</p><p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-30 09:31:51", "2020-04-30 02:31:51", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("80", "1", "2020-04-30 09:32:29", "2020-04-30 02:32:29", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Exclusive Ebook</p>		\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"610\" height=\"476\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 610px) 100vw, 610px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"683\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<p>Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:</p>		\n					<ul>\n							<li >\n										 Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"752\" height=\"752\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 752px) 100vw, 752px\" />											\n		<p><b>Coach Joshua Sutanto</b> adalah seorang Certified Business Coach™ dan Strategic Partner GRATYO® World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa “Life is the ultimate goal of Business, not the other way around”, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.</p><p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-30 09:32:29", "2020-04-30 02:32:29", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("81", "1", "2020-04-30 09:32:52", "2020-04-30 02:32:52", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Exclusive Ebook</p>		\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"610\" height=\"476\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 610px) 100vw, 610px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"683\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<p>Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:</p>		\n					<ul>\n							<li >\n										 Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"752\" height=\"752\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 752px) 100vw, 752px\" />											\n		<p><b>Coach Joshua Sutanto</b> adalah seorang Certified Business Coach™ dan Strategic Partner GRATYO® World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa “Life is the ultimate goal of Business, not the other way around”, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.</p><p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-30 09:32:52", "2020-04-30 02:32:52", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("82", "1", "2020-04-30 09:34:37", "2020-04-30 02:34:37", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Exclusive Ebook</p>		\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"610\" height=\"476\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 610px) 100vw, 610px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"683\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<p>Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:</p>		\n					<ul>\n							<li >\n										 Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"752\" height=\"752\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 752px) 100vw, 752px\" />											\n		<p><b>Coach Joshua Sutanto</b> adalah seorang Certified Business Coach™ dan Strategic Partner GRATYO® World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa “Life is the ultimate goal of Business, not the other way around”, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.</p><p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-30 09:34:37", "2020-04-30 02:34:37", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("83", "1", "2020-04-30 10:01:55", "2020-04-30 03:01:55", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Exclusive Ebook</p>		\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"610\" height=\"476\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 610px) 100vw, 610px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"683\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<p>Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:</p>		\n					<ul>\n							<li >\n										 Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"752\" height=\"752\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 752px) 100vw, 752px\" />											\n		<p><b>Coach Joshua Sutanto</b> adalah seorang Certified Business Coach™ dan Strategic Partner GRATYO® World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa “Life is the ultimate goal of Business, not the other way around”, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.</p><p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-30 10:01:55", "2020-04-30 03:01:55", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("84", "1", "2020-04-30 10:22:40", "2020-04-30 03:22:40", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Exclusive Ebook</p>		\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"610\" height=\"476\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 610px) 100vw, 610px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"683\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<p>Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:</p>		\n					<ul>\n							<li >\n										 Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"752\" height=\"752\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 752px) 100vw, 752px\" />											\n		<p><b>Coach Joshua Sutanto</b> adalah seorang Certified Business Coach™ dan Strategic Partner GRATYO® World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa “Life is the ultimate goal of Business, not the other way around”, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.</p><p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-30 10:22:40", "2020-04-30 03:22:40", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("85", "1", "2020-04-30 10:34:35", "2020-04-30 03:34:35", "<h5 style=\"text-align: center;\">Silahkan mengisi nama, email utama / bisnis, dan nomor WhatsApp anda untuk mendapatkan exclusive ebook ini ( 100% tanpa dipungut biaya ).</h5>\r\n<p style=\"text-align: center;\">[contact-form-7 id=\"49\" title=\"Ebook Form\"]</p>", "Ebook Popup", "", "inherit", "closed", "closed", "", "57-revision-v1", "", "", "2020-04-30 10:34:35", "2020-04-30 03:34:35", "", "57", "http://meetingmastery.lightrees.com/57-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("86", "1", "2020-04-30 10:36:47", "2020-04-30 03:36:47", "<p style=\"text-align: center;\"><strong>Silahkan mengisi nama, email utama / bisnis, dan nomor WhatsApp anda untuk mendapatkan exclusive ebook ini ( 100% tanpa dipungut biaya ).</strong></p>\r\n<p style=\"text-align: center;\">[contact-form-7 id=\"49\" title=\"Ebook Form\"]</p>", "Ebook Popup", "", "inherit", "closed", "closed", "", "57-revision-v1", "", "", "2020-04-30 10:36:47", "2020-04-30 03:36:47", "", "57", "http://meetingmastery.lightrees.com/57-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("87", "1", "2020-04-30 10:37:39", "2020-04-30 03:37:39", "input[type=\"submit\"], input[type=\"reset\"] {\r\n    width: 100%;\r\n  	font-weight: 700;\r\n  	padding-top: 20px;\r\n  	padding-bottom: 20px;\r\n}", "General", "", "publish", "closed", "closed", "", "general", "", "", "2020-04-30 10:40:16", "2020-04-30 03:40:16", "", "0", "http://meetingmastery.lightrees.com/?post_type=custom-css-js&#038;p=87", "0", "custom-css-js", "", "0");
INSERT INTO `lt_posts` VALUES("88", "1", "2020-04-30 16:03:15", "2020-04-30 09:03:15", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Exclusive Ebook</p>		\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"610\" height=\"476\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 610px) 100vw, 610px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"683\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<p>Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:</p>		\n					<ul>\n							<li >\n										 Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"752\" height=\"752\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 752px) 100vw, 752px\" />											\n		<p><b>Coach Joshua Sutanto</b> adalah seorang Certified Business Coach™ dan Strategic Partner GRATYO® World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa “Life is the ultimate goal of Business, not the other way around”, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.</p><p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "home_20200430", "", "publish", "closed", "closed", "", "home_20200430", "", "", "2020-04-30 16:03:15", "2020-04-30 09:03:15", "", "0", "http://meetingmastery.lightrees.com/?elementor_library=home_20200430", "0", "elementor_library", "", "0");
INSERT INTO `lt_posts` VALUES("89", "1", "2020-04-30 16:03:15", "2020-04-30 09:03:15", "", "home_20200430", "", "inherit", "closed", "closed", "", "88-revision-v1", "", "", "2020-04-30 16:03:15", "2020-04-30 09:03:15", "", "88", "http://meetingmastery.lightrees.com/88-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("90", "1", "2020-04-30 16:03:15", "2020-04-30 09:03:15", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<p>Exclusive Ebook</p>		\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"610\" height=\"476\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 610px) 100vw, 610px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"683\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<p>Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:</p>		\n					<ul>\n							<li >\n										 Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"752\" height=\"752\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 752px) 100vw, 752px\" />											\n		<p><b>Coach Joshua Sutanto</b> adalah seorang Certified Business Coach™ dan Strategic Partner GRATYO® World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa “Life is the ultimate goal of Business, not the other way around”, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.</p><p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "home_20200430", "", "inherit", "closed", "closed", "", "88-revision-v1", "", "", "2020-04-30 16:03:15", "2020-04-30 09:03:15", "", "88", "http://meetingmastery.lightrees.com/88-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("91", "1", "2020-04-30 16:06:48", "2020-04-30 09:06:48", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n		https://www.youtube.com/watch?v=aRbW9ud2bI0		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"610\" height=\"476\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 610px) 100vw, 610px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"683\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika jawabannya YA, maka EBOOK ini sangat cocok untuk Anda!</p>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<p>Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:</p>		\n					<ul>\n							<li >\n										 Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"752\" height=\"752\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 752px) 100vw, 752px\" />											\n		<p><b>Coach Joshua Sutanto</b> adalah seorang Certified Business Coach™ dan Strategic Partner GRATYO® World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa “Life is the ultimate goal of Business, not the other way around”, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.</p><p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-30 16:06:48", "2020-04-30 09:06:48", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("92", "1", "2020-04-30 16:11:23", "2020-04-30 09:11:23", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n		https://www.youtube.com/watch?v=aRbW9ud2bI0		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"610\" height=\"476\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 610px) 100vw, 610px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"683\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Sebelum Anda menonton Video Selanjutnya, Silahkan Download Ebook Ini.</p>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<p>Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:</p>		\n					<ul>\n							<li >\n										 Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"752\" height=\"752\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 752px) 100vw, 752px\" />											\n		<p><b>Coach Joshua Sutanto</b> adalah seorang Certified Business Coach™ dan Strategic Partner GRATYO® World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa “Life is the ultimate goal of Business, not the other way around”, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.</p><p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-30 16:11:23", "2020-04-30 09:11:23", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("104", "1", "2020-04-30 17:02:04", "2020-04-30 10:02:04", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n		https://www.youtube.com/watch?v=aRbW9ud2bI0		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"610\" height=\"476\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 610px) 100vw, 610px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"683\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Sebelum Anda menonton Video Selanjutnya, Silahkan Download Ebook Ini.</p>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<p>Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:</p>		\n					<ul>\n							<li >\n										 Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"752\" height=\"752\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 752px) 100vw, 752px\" />											\n		<p><b>Coach Joshua Sutanto</b> adalah seorang Certified Business Coach™ dan Strategic Partner GRATYO® World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa “Life is the ultimate goal of Business, not the other way around”, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.</p><p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-30 17:02:04", "2020-04-30 10:02:04", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("105", "1", "2020-04-30 17:03:18", "2020-04-30 10:03:18", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n		https://www.youtube.com/watch?v=aRbW9ud2bI0		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"610\" height=\"476\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 610px) 100vw, 610px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"683\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Sebelum Anda menonton Video Selanjutnya, Silahkan Download Ebook Ini.</p>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<p>Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:</p>		\n					<ul>\n							<li >\n										 Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"752\" height=\"752\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 752px) 100vw, 752px\" />											\n		<p><b>Coach Joshua Sutanto</b> adalah seorang Certified Business Coach™ dan Strategic Partner GRATYO® World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa “Life is the ultimate goal of Business, not the other way around”, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.</p><p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-30 17:03:18", "2020-04-30 10:03:18", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("106", "1", "2020-04-30 17:03:38", "2020-04-30 10:03:38", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n		https://www.youtube.com/watch?v=aRbW9ud2bI0		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"610\" height=\"476\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 610px) 100vw, 610px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"683\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Sebelum Anda menonton Video Selanjutnya, Silahkan Download Ebook Ini.</p>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<p>Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:</p>		\n					<ul>\n							<li >\n										 Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"752\" height=\"752\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 752px) 100vw, 752px\" />											\n		<p><b>Coach Joshua Sutanto</b> adalah seorang Certified Business Coach™ dan Strategic Partner GRATYO® World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa “Life is the ultimate goal of Business, not the other way around”, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.</p><p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-30 17:03:38", "2020-04-30 10:03:38", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("107", "1", "2020-04-30 17:03:57", "2020-04-30 10:03:57", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n		https://www.youtube.com/watch?v=aRbW9ud2bI0		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"610\" height=\"476\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 610px) 100vw, 610px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"683\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Sebelum Anda menonton Video Selanjutnya, Silahkan Download Ebook Ini.</p>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<p>Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:</p>		\n					<ul>\n							<li >\n										 Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"752\" height=\"752\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 752px) 100vw, 752px\" />											\n		<p><b>Coach Joshua Sutanto</b> adalah seorang Certified Business Coach™ dan Strategic Partner GRATYO® World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa “Life is the ultimate goal of Business, not the other way around”, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.</p><p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-30 17:03:57", "2020-04-30 10:03:57", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("108", "1", "2020-04-30 17:04:08", "2020-04-30 10:04:08", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n		https://www.youtube.com/watch?v=aRbW9ud2bI0		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"610\" height=\"476\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 610px) 100vw, 610px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"683\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Sebelum Anda menonton Video Selanjutnya, Silahkan Download Ebook Ini.</p>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<p>Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:</p>		\n					<ul>\n							<li >\n										 Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"752\" height=\"752\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 752px) 100vw, 752px\" />											\n		<p><b>Coach Joshua Sutanto</b> adalah seorang Certified Business Coach™ dan Strategic Partner GRATYO® World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa “Life is the ultimate goal of Business, not the other way around”, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.</p><p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-30 17:04:08", "2020-04-30 10:04:08", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("109", "1", "2020-04-30 17:04:36", "2020-04-30 10:04:36", "<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n			<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n		https://www.youtube.com/watch?v=aRbW9ud2bI0		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"610\" height=\"476\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 610px) 100vw, 610px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"683\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Sebelum Anda menonton Video Selanjutnya, Silahkan Download Ebook Ini.</p>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<p>Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:</p>		\n					<ul>\n							<li >\n										 Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"752\" height=\"752\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 752px) 100vw, 752px\" />											\n		<p><b>Coach Joshua Sutanto</b> adalah seorang Certified Business Coach™ dan Strategic Partner GRATYO® World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa “Life is the ultimate goal of Business, not the other way around”, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.</p><p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-04-30 17:04:36", "2020-04-30 10:04:36", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("115", "1", "2020-05-11 15:38:45", "2020-05-11 08:38:45", "<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n		https://www.youtube.com/watch?v=aRbW9ud2bI0		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"610\" height=\"476\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 610px) 100vw, 610px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"683\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Sebelum Anda menonton Video Selanjutnya, Silahkan Download Ebook Ini.</p>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<p>Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:</p>		\n					<ul>\n							<li >\n										 Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"752\" height=\"752\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 752px) 100vw, 752px\" />											\n		<p><b>Coach Joshua Sutanto</b> adalah seorang Certified Business Coach™ dan Strategic Partner GRATYO® World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa “Life is the ultimate goal of Business, not the other way around”, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-11 15:38:45", "2020-05-11 08:38:45", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("116", "1", "2020-05-11 15:39:18", "2020-05-11 08:39:18", "<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n		https://www.youtube.com/watch?v=aRbW9ud2bI0		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"610\" height=\"476\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 610px) 100vw, 610px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"683\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Sebelum Anda menonton Video Selanjutnya, Silahkan Download Ebook Ini.</p>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<p>Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:</p>		\n					<ul>\n							<li >\n										 Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"752\" height=\"752\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 752px) 100vw, 752px\" />											\n		<p><b>Coach Joshua Sutanto</b> adalah seorang Certified Business Coach™ dan Strategic Partner GRATYO® World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa “Life is the ultimate goal of Business, not the other way around”, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-11 15:39:18", "2020-05-11 08:39:18", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("117", "1", "2020-05-11 15:40:10", "2020-05-11 08:40:10", "<h1>Siapa lagi yang mau meeting sukses dan eksekusi menjadi mudah?</h1>		\n		https://www.youtube.com/watch?v=aRbW9ud2bI0		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"610\" height=\"476\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic.png 610w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Man-Pointing-Finger-PNG-Pic-300x234.png 300w\" sizes=\"(max-width: 610px) 100vw, 610px\" />											\n			<p>Jika Anda seorang pemimpin...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team tapi hasil nya kok muter-muter di situ lagi dan hasil nya ga ada yang nyata, dan perusahaan tak ada perkembangan?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok EKSEKUSI nya tidak jalan-jalan dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda jarang…. atau bahkan tidak pernah meeting? \n									</li>\n								<li >\n										Anda merasa kok semua nya harus saya ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa muak dengan meeting yang terlalu sering? Sedikit2 meeting, meeting sana meeting sini, kapan kerjanya?\n									</li>\n								<li >\n										Kalau pun meeting, ga ada isi nya, membosankan, sampai membuat anda tertidur…. atau, yang ada cuma disalah-salahin, dimarah-marahin, ga jelas mau nya apa sih!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"683\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1024x683.png 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-300x200.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-768x512.png 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left-1200x801.png 1200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/pointing-left.png 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Sebelum Anda menonton Video Selanjutnya, Silahkan Download Ebook Ini.</p>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<p>Dalam ebook ini Anda akan mengetahui tentang gejala penyakit meeting seperti:</p>		\n					<ul>\n							<li >\n										 Gejala Semua Saya (bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										Gejala Meeting Gagal (bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										Gejala Susah Eksekusi (bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"752\" height=\"752\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 752px) 100vw, 752px\" />											\n		<p><b>Coach Joshua Sutanto</b> adalah seorang Certified Business Coach™ dan Strategic Partner GRATYO® World\'s Leading Practical Business Coaching yang dipimpin oleh Coach Yohanes G. Pauly, World\'s Top Certified Business Coach. Coach Joshua adalah seorang all-rounder dengan pengalaman belasan tahun menguasai banyak bidang di banyak perusahaan multinasional di Australia dan Indonesia. Ia telah banyak membantu dan membimbing Pemilik Bisnis dari berbagai latar belakang, jenis, dan proses bisnis yang unik dan berbeda. Ia percaya bahwa “Life is the ultimate goal of Business, not the other way around”, karena itu penting untuk membangun bisnis yang Profitable &amp; AUTO-PILOT.</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-11 15:40:10", "2020-05-11 08:40:10", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("120", "2", "2020-05-11 19:15:18", "2020-05-11 12:15:18", "", "Asian boss angry", "", "inherit", "open", "closed", "", "asian-boss-angry", "", "", "2020-05-11 19:15:18", "2020-05-11 12:15:18", "", "2", "http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `lt_posts` VALUES("121", "2", "2020-05-11 19:29:59", "2020-05-11 12:29:59", "", "men-s-white-and-black-striped-polo-shirt-1799790", "", "inherit", "open", "closed", "", "men-s-white-and-black-striped-polo-shirt-1799790", "", "", "2020-05-11 19:29:59", "2020-05-11 12:29:59", "", "2", "http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/men-s-white-and-black-striped-polo-shirt-1799790.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `lt_posts` VALUES("122", "2", "2020-05-11 19:30:13", "2020-05-11 12:30:13", "", "employee three-women-sitting-beside-white-table-1181616", "", "inherit", "open", "closed", "", "employee-three-women-sitting-beside-white-table-1181616", "", "", "2020-05-11 19:30:13", "2020-05-11 12:30:13", "", "2", "http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `lt_posts` VALUES("123", "2", "2020-05-11 19:49:08", "2020-05-11 12:49:08", "<h1>Semua harus SAYA?\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=aRbW9ud2bI0		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Sebelum Anda menonton Video Selanjutnya, Silahkan Download Ebook Ini.</p>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"752\" height=\"752\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 752px) 100vw, 752px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<p> </p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-11 19:49:08", "2020-05-11 12:49:08", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("124", "1", "2020-05-13 17:33:48", "2020-05-13 10:33:48", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=aRbW9ud2bI0		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Sebelum Anda menonton Video Selanjutnya, Silahkan Download Ebook Ini.</p>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"752\" height=\"752\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 752px) 100vw, 752px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<p> </p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-13 17:33:48", "2020-05-13 10:33:48", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("126", "1", "2020-05-13 18:17:21", "2020-05-13 11:17:21", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=aRbW9ud2bI0		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Kelas Online Gratis</p>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"752\" height=\"752\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 752px) 100vw, 752px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<p> </p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-13 18:17:21", "2020-05-13 11:17:21", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("127", "1", "2020-05-13 18:19:38", "2020-05-13 11:19:38", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=aRbW9ud2bI0		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DOWNLOAD SEKARANG\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"752\" height=\"752\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 752px) 100vw, 752px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<p> </p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-13 18:19:38", "2020-05-13 11:19:38", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("128", "1", "2020-05-13 18:20:33", "2020-05-13 11:20:33", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=aRbW9ud2bI0		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"600\" height=\"600\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook.png 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/Mockup-Ebook-150x150.png 150w\" sizes=\"(max-width: 600px) 100vw, 600px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DAFTAR GRATIS SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"752\" height=\"752\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 752px) 100vw, 752px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<p> </p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-13 18:20:33", "2020-05-13 11:20:33", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("131", "1", "2020-05-13 21:15:40", "2020-05-13 14:15:40", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=aRbW9ud2bI0		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"560\" height=\"560\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg 560w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-300x300.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-150x150.jpg 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"752\" height=\"752\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 752px) 100vw, 752px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<p> </p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-13 21:15:40", "2020-05-13 14:15:40", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("133", "1", "2020-05-13 21:17:55", "2020-05-13 14:17:55", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=aRbW9ud2bI0		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg\" title=\"\" alt=\"\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"752\" height=\"752\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 752px) 100vw, 752px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<p> </p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-13 21:17:55", "2020-05-13 14:17:55", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("134", "1", "2020-05-13 21:18:01", "2020-05-13 14:18:01", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=aRbW9ud2bI0		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"752\" height=\"752\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 752px) 100vw, 752px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<p> </p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-13 21:18:01", "2020-05-13 14:18:01", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("135", "1", "2020-05-13 21:18:08", "2020-05-13 14:18:08", "", "Kelas-Online-Gejala-Penyakit-Meeting", "", "inherit", "open", "closed", "", "kelas-online-gejala-penyakit-meeting", "", "", "2020-05-13 21:18:08", "2020-05-13 14:18:08", "", "2", "http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `lt_posts` VALUES("136", "1", "2020-05-13 21:18:15", "2020-05-13 14:18:15", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=aRbW9ud2bI0		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"560\" height=\"560\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg 560w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-300x300.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-150x150.jpg 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"752\" height=\"752\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb.png 752w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/CI1902140152019-02-14_11_32_13photo_thumb-150x150.png 150w\" sizes=\"(max-width: 752px) 100vw, 752px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<p> </p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-13 21:18:15", "2020-05-13 14:18:15", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("137", "1", "2020-05-13 21:21:14", "2020-05-13 14:21:14", "", "Coach Joshua Susanto", "", "inherit", "open", "closed", "", "coach-joshua-susanto", "", "", "2020-05-13 21:21:14", "2020-05-13 14:21:14", "", "2", "http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `lt_posts` VALUES("138", "1", "2020-05-13 21:25:07", "2020-05-13 14:25:07", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=aRbW9ud2bI0		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"560\" height=\"560\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg 560w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-300x300.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-150x150.jpg 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.		\n										<img width=\"486\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg 486w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-146x300.jpg 146w\" sizes=\"(max-width: 486px) 100vw, 486px\" />											\n		<p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-13 21:25:07", "2020-05-13 14:25:07", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("139", "1", "2020-05-13 21:26:01", "2020-05-13 14:26:01", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=aRbW9ud2bI0		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"560\" height=\"560\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg 560w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-300x300.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-150x150.jpg 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Coach Joshua Sutanto</p>		\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br /><br /><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>		\n										<img width=\"486\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg 486w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-146x300.jpg 146w\" sizes=\"(max-width: 486px) 100vw, 486px\" />											\n		Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-13 21:26:01", "2020-05-13 14:26:01", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("140", "1", "2020-05-13 21:28:07", "2020-05-13 14:28:07", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=aRbW9ud2bI0		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"560\" height=\"560\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg 560w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-300x300.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-150x150.jpg 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br /><br /><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>		\n										<img width=\"486\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg 486w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-146x300.jpg 146w\" sizes=\"(max-width: 486px) 100vw, 486px\" />											\n		Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-13 21:28:07", "2020-05-13 14:28:07", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("141", "1", "2020-05-13 21:33:16", "2020-05-13 14:33:16", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=aRbW9ud2bI0		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"560\" height=\"560\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg 560w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-300x300.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-150x150.jpg 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br /><br /><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>		\n										<img width=\"486\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg 486w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-146x300.jpg 146w\" sizes=\"(max-width: 486px) 100vw, 486px\" />											\n		Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!</p>		\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-13 21:33:16", "2020-05-13 14:33:16", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("142", "1", "2020-05-13 21:35:04", "2020-05-13 14:35:04", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=aRbW9ud2bI0		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"560\" height=\"560\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg 560w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-300x300.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-150x150.jpg 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br /><br /><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>		\n										<img width=\"486\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg 486w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-146x300.jpg 146w\" sizes=\"(max-width: 486px) 100vw, 486px\" />											\n		Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!</p>		\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "2020-05-13 Home Page", "", "publish", "closed", "closed", "", "2020-05-13-home-page", "", "", "2020-05-13 21:35:04", "2020-05-13 14:35:04", "", "0", "http://meetingmastery.lightrees.com/?elementor_library=2020-05-13-home-page", "0", "elementor_library", "", "0");
INSERT INTO `lt_posts` VALUES("143", "1", "2020-05-13 21:35:04", "2020-05-13 14:35:04", "", "2020-05-13 Home Page", "", "inherit", "closed", "closed", "", "142-revision-v1", "", "", "2020-05-13 21:35:04", "2020-05-13 14:35:04", "", "142", "http://meetingmastery.lightrees.com/142-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("144", "1", "2020-05-13 21:35:04", "2020-05-13 14:35:04", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=aRbW9ud2bI0		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"560\" height=\"560\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg 560w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-300x300.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-150x150.jpg 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br /><br /><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>		\n										<img width=\"486\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg 486w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-146x300.jpg 146w\" sizes=\"(max-width: 486px) 100vw, 486px\" />											\n		Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!</p>		\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "2020-05-13 Home Page", "", "inherit", "closed", "closed", "", "142-revision-v1", "", "", "2020-05-13 21:35:04", "2020-05-13 14:35:04", "", "142", "http://meetingmastery.lightrees.com/142-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("154", "1", "2020-05-13 22:00:59", "2020-05-13 15:00:59", "<p style=\"text-align: center;\"><strong>Silahkan mengisi nama, email utama/bisnis, dan nomor WhatsApp anda untuk mendapatkan akses Kelas Online Gratis</strong></p>\r\n<p style=\"text-align: center;\">[contact-form-7 id=\"49\" title=\"Ebook Form\"]</p>", "Kelas Gratis", "", "inherit", "closed", "closed", "", "57-revision-v1", "", "", "2020-05-13 22:00:59", "2020-05-13 15:00:59", "", "57", "http://meetingmastery.lightrees.com/57-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("155", "1", "2020-05-13 22:02:00", "2020-05-13 15:02:00", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=aRbW9ud2bI0		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"560\" height=\"560\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg 560w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-300x300.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-150x150.jpg 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br /><br /><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>		\n										<img width=\"486\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg 486w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-146x300.jpg 146w\" sizes=\"(max-width: 486px) 100vw, 486px\" />											\n		Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!</p>		\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-13 22:02:00", "2020-05-13 15:02:00", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("165", "1", "2020-05-14 13:28:06", "2020-05-14 06:28:06", "", "woocommerce-placeholder", "", "inherit", "open", "closed", "", "woocommerce-placeholder", "", "", "2020-05-14 13:28:06", "2020-05-14 06:28:06", "", "0", "http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/woocommerce-placeholder.png", "0", "attachment", "image/png", "0");
INSERT INTO `lt_posts` VALUES("166", "1", "2020-05-14 13:29:17", "2020-05-14 06:29:17", "", "Shop", "", "publish", "closed", "closed", "", "shop", "", "", "2020-05-14 13:29:17", "2020-05-14 06:29:17", "", "0", "http://meetingmastery.lightrees.com/shop/", "0", "page", "", "0");
INSERT INTO `lt_posts` VALUES("167", "1", "2020-05-14 13:29:17", "2020-05-14 06:29:17", "<!-- wp:shortcode -->\n[woocommerce_cart]\n<!-- /wp:shortcode -->", "Cart", "", "publish", "closed", "closed", "", "cart", "", "", "2020-05-15 18:30:55", "2020-05-15 11:30:55", "", "0", "http://meetingmastery.lightrees.com/cart/", "0", "page", "", "0");
INSERT INTO `lt_posts` VALUES("168", "1", "2020-05-14 13:29:17", "2020-05-14 06:29:17", "<!-- wp:shortcode -->[woocommerce_checkout]<!-- /wp:shortcode -->", "Checkout", "", "publish", "closed", "closed", "", "checkout", "", "", "2020-05-14 13:29:17", "2020-05-14 06:29:17", "", "0", "http://meetingmastery.lightrees.com/checkout/", "0", "page", "", "0");
INSERT INTO `lt_posts` VALUES("169", "1", "2020-05-14 13:29:17", "2020-05-14 06:29:17", "<!-- wp:shortcode -->[woocommerce_my_account]<!-- /wp:shortcode -->", "My account", "", "publish", "closed", "closed", "", "my-account", "", "", "2020-05-14 13:29:17", "2020-05-14 06:29:17", "", "0", "http://meetingmastery.lightrees.com/my-account/", "0", "page", "", "0");
INSERT INTO `lt_posts` VALUES("170", "1", "2020-05-14 13:58:42", "2020-05-14 06:58:42", "", "Meeting Series", "", "trash", "closed", "closed", "", "meeting-series__trashed", "", "", "2020-05-18 10:13:55", "2020-05-18 03:13:55", "", "0", "http://meetingmastery.lightrees.com/?post_type=product&#038;p=170", "0", "product", "", "0");
INSERT INTO `lt_posts` VALUES("171", "1", "2020-05-14 13:57:26", "2020-05-14 06:57:26", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"560\" height=\"560\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg 560w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-300x300.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-100x100.jpg 100w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-150x150.jpg 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br /><br /><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>		\n										<img width=\"486\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg 486w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-146x300.jpg 146w\" sizes=\"(max-width: 486px) 100vw, 486px\" />											\n		Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!</p>		\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-14 13:57:26", "2020-05-14 06:57:26", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("177", "1", "2020-05-14 15:13:11", "2020-05-14 08:13:11", "", "Order &ndash; May 14, 2020 @ 03:13 PM", "", "trash", "open", "closed", "wc_order_KXRFNna8gYE41", "order-may-14-2020-0813-am__trashed", "", "", "2020-05-18 11:42:26", "2020-05-18 04:42:26", "", "0", "http://meetingmastery.lightrees.com/?post_type=shop_order&#038;p=177", "0", "shop_order", "", "1");
INSERT INTO `lt_posts` VALUES("178", "1", "2020-05-14 15:15:30", "2020-05-14 08:15:30", " ", "", "", "publish", "closed", "closed", "", "178", "", "", "2020-05-14 15:15:30", "2020-05-14 08:15:30", "", "0", "http://meetingmastery.lightrees.com/?p=178", "1", "nav_menu_item", "", "0");
INSERT INTO `lt_posts` VALUES("179", "1", "2020-05-14 15:16:33", "2020-05-14 08:16:33", "", "Order &ndash; May 14, 2020 @ 03:16 PM", "", "trash", "open", "closed", "wc_order_WGdZZcSVMpxQt", "order-may-14-2020-0816-am__trashed", "", "", "2020-05-18 11:42:26", "2020-05-18 04:42:26", "", "0", "http://meetingmastery.lightrees.com/?post_type=shop_order&#038;p=179", "0", "shop_order", "", "1");
INSERT INTO `lt_posts` VALUES("180", "1", "2020-05-14 15:18:19", "2020-05-14 08:18:19", "http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/cropped-logo.png", "cropped-logo.png", "", "inherit", "open", "closed", "", "cropped-logo-png", "", "", "2020-05-14 15:18:19", "2020-05-14 08:18:19", "", "0", "http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/cropped-logo.png", "0", "attachment", "image/png", "0");
INSERT INTO `lt_posts` VALUES("181", "1", "2020-05-14 15:18:40", "2020-05-14 08:18:40", "{\n    \"lightrees::custom_logo\": {\n        \"value\": 180,\n        \"type\": \"theme_mod\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2020-05-14 08:18:40\"\n    },\n    \"astra-settings[display-site-title]\": {\n        \"value\": false,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2020-05-14 08:18:40\"\n    }\n}", "", "", "trash", "closed", "closed", "", "ac9f4a6d-1cfc-400f-a75b-3d376e993ff9", "", "", "2020-05-14 15:18:40", "2020-05-14 08:18:40", "", "0", "http://meetingmastery.lightrees.com/ac9f4a6d-1cfc-400f-a75b-3d376e993ff9/", "0", "customize_changeset", "", "0");
INSERT INTO `lt_posts` VALUES("182", "1", "2020-05-14 15:29:10", "2020-05-14 08:29:10", "<!-- wp:shortcode -->\n[woocommerce_cart]\n<!-- /wp:shortcode -->", "Pesanan Anda", "", "inherit", "closed", "closed", "", "167-revision-v1", "", "", "2020-05-14 15:29:10", "2020-05-14 08:29:10", "", "167", "http://meetingmastery.lightrees.com/167-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("183", "1", "2020-05-14 15:29:26", "2020-05-14 08:29:26", "<!-- wp:shortcode -->\n[woocommerce_cart]\n<!-- /wp:shortcode -->", "Pesanan", "", "inherit", "closed", "closed", "", "167-revision-v1", "", "", "2020-05-14 15:29:26", "2020-05-14 08:29:26", "", "167", "http://meetingmastery.lightrees.com/167-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("184", "1", "2020-05-14 15:55:53", "2020-05-14 08:55:53", "", "Order &ndash; May 14, 2020 @ 03:55 PM", "", "trash", "open", "closed", "wc_order_4om83P30wBYW7", "order-may-14-2020-0855-am__trashed", "", "", "2020-05-18 11:42:26", "2020-05-18 04:42:26", "", "0", "http://meetingmastery.lightrees.com/?post_type=shop_order&#038;p=184", "0", "shop_order", "", "1");
INSERT INTO `lt_posts` VALUES("185", "1", "2020-05-14 15:58:40", "2020-05-14 08:58:40", "{\n    \"astra-settings[footer-sml-layout]\": {\n        \"value\": \"disabled\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2020-05-14 08:58:40\"\n    },\n    \"astra-settings[footer-sml-section-1-credit]\": {\n        \"value\": \"Copyright \\u00a9 [current_year] [site_title]\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2020-05-14 08:58:40\"\n    }\n}", "", "", "trash", "closed", "closed", "", "27e09eb0-3367-46e5-9302-a36226d2fdf2", "", "", "2020-05-14 15:58:40", "2020-05-14 08:58:40", "", "0", "http://meetingmastery.lightrees.com/27e09eb0-3367-46e5-9302-a36226d2fdf2/", "0", "customize_changeset", "", "0");
INSERT INTO `lt_posts` VALUES("189", "1", "2020-05-14 21:58:25", "2020-05-14 14:58:25", "function Timer(duration, display) \r\n{\r\n    var timer = duration, hours, minutes, seconds;\r\n    setInterval(function () {\r\n        hours = parseInt((timer /3600)%24, 10)\r\n        minutes = parseInt((timer / 60)%60, 10)\r\n        seconds = parseInt(timer % 60, 10);\r\n\r\n		hours = hours < 10 ? \"0\" + hours : hours;\r\n        minutes = minutes < 10 ? \"0\" + minutes : minutes;\r\n        seconds = seconds < 10 ? \"0\" + seconds : seconds;\r\n\r\n        display.text(hours + \" Jam : \" + minutes + \" Menit : \" + seconds + \" Detik\");\r\n\r\n				--timer;\r\n    }, 1000);\r\n}\r\n\r\njQuery(function ($) \r\n{\r\n    var ThreeHours = 3 * 60 * 60;\r\n    var display = $(\'#tutup\');\r\n    Timer(ThreeHours, display);\r\n});\r\n\r\njQuery(function ($) \r\n{\r\n    var ThreHours = 3 * 60 * 60;\r\n    var display = $(\'#tutup2\');\r\n    Timer(ThreHours, display);\r\n});", "Custom Count Down", "", "publish", "closed", "closed", "", "custom-count-down", "", "", "2020-05-14 22:57:49", "2020-05-14 15:57:49", "", "0", "http://meetingmastery.lightrees.com/?post_type=custom-css-js&#038;p=189", "0", "custom-css-js", "", "0");
INSERT INTO `lt_posts` VALUES("190", "1", "2020-05-14 21:59:59", "2020-05-14 14:59:59", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"560\" height=\"560\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg 560w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-300x300.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-100x100.jpg 100w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-150x150.jpg 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br /><br /><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>		\n										<img width=\"486\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg 486w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-146x300.jpg 146w\" sizes=\"(max-width: 486px) 100vw, 486px\" />											\n		Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!</p>		\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-14 21:59:59", "2020-05-14 14:59:59", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("191", "1", "2020-05-14 22:01:32", "2020-05-14 15:01:32", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"560\" height=\"560\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg 560w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-300x300.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-100x100.jpg 100w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-150x150.jpg 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			03:00:00		\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br /><br /><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>		\n										<img width=\"486\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg 486w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-146x300.jpg 146w\" sizes=\"(max-width: 486px) 100vw, 486px\" />											\n		Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!</p>		\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-14 22:01:32", "2020-05-14 15:01:32", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("192", "1", "2020-05-14 22:12:16", "2020-05-14 15:12:16", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"560\" height=\"560\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg 560w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-300x300.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-100x100.jpg 100w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-150x150.jpg 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			03:00:00		\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br /><br /><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>		\n										<img width=\"486\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg 486w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-146x300.jpg 146w\" sizes=\"(max-width: 486px) 100vw, 486px\" />											\n		Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!</p>		\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-14 22:12:16", "2020-05-14 15:12:16", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("193", "1", "2020-05-14 22:16:43", "2020-05-14 15:16:43", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"560\" height=\"560\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg 560w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-300x300.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-100x100.jpg 100w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-150x150.jpg 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			03 Jam : 00 Menit : 00 Detik\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br /><br /><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>		\n										<img width=\"486\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg 486w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-146x300.jpg 146w\" sizes=\"(max-width: 486px) 100vw, 486px\" />											\n		Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!</p>		\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-14 22:16:43", "2020-05-14 15:16:43", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("194", "1", "2020-05-14 22:52:02", "2020-05-14 15:52:02", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"560\" height=\"560\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg 560w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-300x300.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-100x100.jpg 100w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-150x150.jpg 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br /><br /><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>		\n										<img width=\"486\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg 486w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-146x300.jpg 146w\" sizes=\"(max-width: 486px) 100vw, 486px\" />											\n		Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!</p>		\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-14 22:52:02", "2020-05-14 15:52:02", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("195", "1", "2020-05-14 22:54:45", "2020-05-14 15:54:45", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"560\" height=\"560\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg 560w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-300x300.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-100x100.jpg 100w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-150x150.jpg 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br /><br /><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>		\n										<img width=\"486\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg 486w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-146x300.jpg 146w\" sizes=\"(max-width: 486px) 100vw, 486px\" />											\n		Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!</p>		\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-14 22:54:45", "2020-05-14 15:54:45", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("196", "1", "2020-05-14 22:55:56", "2020-05-14 15:55:56", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"560\" height=\"560\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg 560w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-300x300.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-100x100.jpg 100w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-150x150.jpg 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br /><br /><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>		\n										<img width=\"486\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg 486w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-146x300.jpg 146w\" sizes=\"(max-width: 486px) 100vw, 486px\" />											\n		Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!</p>		\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-14 22:55:56", "2020-05-14 15:55:56", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("197", "1", "2020-05-14 22:57:17", "2020-05-14 15:57:17", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"560\" height=\"560\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg 560w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-300x300.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-100x100.jpg 100w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-150x150.jpg 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br /><br /><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>		\n										<img width=\"486\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg 486w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-146x300.jpg 146w\" sizes=\"(max-width: 486px) 100vw, 486px\" />											\n		Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!</p>		\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-14 22:57:17", "2020-05-14 15:57:17", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("201", "1", "2020-05-15 17:03:35", "2020-05-15 10:03:35", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"560\" height=\"560\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg 560w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-300x300.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-100x100.jpg 100w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-150x150.jpg 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br /><br /><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>		\n										<img width=\"486\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg 486w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-146x300.jpg 146w\" sizes=\"(max-width: 486px) 100vw, 486px\" />											\n		Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!</p>		\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-15 17:03:35", "2020-05-15 10:03:35", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("202", "1", "2020-05-15 17:04:23", "2020-05-15 10:04:23", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"560\" height=\"560\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg 560w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-300x300.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-100x100.jpg 100w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-150x150.jpg 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br /><br /><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>		\n										<img width=\"486\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg 486w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-146x300.jpg 146w\" sizes=\"(max-width: 486px) 100vw, 486px\" />											\n		Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!</p>		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-15 17:04:23", "2020-05-15 10:04:23", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("204", "1", "2020-05-15 17:13:12", "2020-05-15 10:13:12", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!</p>		\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"560\" height=\"560\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg 560w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-300x300.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-100x100.jpg 100w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-150x150.jpg 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br /><br /><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>		\n										<img width=\"486\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg 486w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-146x300.jpg 146w\" sizes=\"(max-width: 486px) 100vw, 486px\" />											\n		Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!</p>		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-15 17:13:12", "2020-05-15 10:13:12", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("205", "1", "2020-05-15 17:14:24", "2020-05-15 10:14:24", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!</p>		\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"560\" height=\"560\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg 560w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-300x300.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-100x100.jpg 100w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-150x150.jpg 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br /><br /><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>		\n										<img width=\"486\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg 486w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-146x300.jpg 146w\" sizes=\"(max-width: 486px) 100vw, 486px\" />											\n		Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!</p>		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-15 17:14:24", "2020-05-15 10:14:24", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("206", "1", "2020-05-15 17:16:25", "2020-05-15 10:16:25", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!</p>		\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"560\" height=\"560\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg 560w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-300x300.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-100x100.jpg 100w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-150x150.jpg 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br /><br /><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>		\n										<img width=\"486\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg 486w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-146x300.jpg 146w\" sizes=\"(max-width: 486px) 100vw, 486px\" />											\n		Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!</p>		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-15 17:16:25", "2020-05-15 10:16:25", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("207", "1", "2020-05-15 17:17:05", "2020-05-15 10:17:05", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!</p>		\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"560\" height=\"560\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg 560w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-300x300.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-100x100.jpg 100w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-150x150.jpg 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.<br /><br /><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>		\n										<img width=\"486\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.jpg 486w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-146x300.jpg 146w\" sizes=\"(max-width: 486px) 100vw, 486px\" />											\n		Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!</p>		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-15 17:17:05", "2020-05-15 10:17:05", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("208", "1", "2020-05-15 17:47:46", "2020-05-15 10:47:46", "", "Coach Joshua Susanto", "", "inherit", "open", "closed", "", "coach-joshua-susanto-2", "", "", "2020-05-15 17:47:54", "2020-05-15 10:47:54", "", "2", "http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png", "0", "attachment", "image/png", "0");
INSERT INTO `lt_posts` VALUES("210", "1", "2020-05-15 17:53:55", "2020-05-15 10:53:55", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!</p>		\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"560\" height=\"560\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.jpg 560w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-300x300.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-100x100.jpg 100w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting-150x150.jpg 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"500\" height=\"500\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png\" alt=\"Coach Joshua Susanto\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png 500w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-150x150.png 150w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. <p>Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.</p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!</p>		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-15 17:53:55", "2020-05-15 10:53:55", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("214", "1", "2020-05-15 18:30:55", "2020-05-15 11:30:55", "<!-- wp:shortcode -->\n[woocommerce_cart]\n<!-- /wp:shortcode -->", "Cart", "", "inherit", "closed", "closed", "", "167-revision-v1", "", "", "2020-05-15 18:30:55", "2020-05-15 11:30:55", "", "167", "http://meetingmastery.lightrees.com/167-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("220", "1", "2020-05-18 09:15:33", "2020-05-18 02:15:33", "", "online course", "", "inherit", "open", "closed", "", "online-course", "", "", "2020-05-18 09:15:33", "2020-05-18 02:15:33", "", "2", "http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg", "0", "attachment", "image/jpeg", "0");
INSERT INTO `lt_posts` VALUES("221", "1", "2020-05-18 09:16:29", "2020-05-18 02:16:29", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!</p>		\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"667\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg 667w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-200x300.jpg 200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-600x900.jpg 600w\" sizes=\"(max-width: 667px) 100vw, 667px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"500\" height=\"500\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png\" alt=\"Coach Joshua Susanto\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png 500w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-150x150.png 150w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. <p>Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.</p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!</p>		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-18 09:16:29", "2020-05-18 02:16:29", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("222", "1", "2020-05-18 09:18:00", "2020-05-18 02:18:00", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!</p>		\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"667\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg 667w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-200x300.jpg 200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-600x900.jpg 600w\" sizes=\"(max-width: 667px) 100vw, 667px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"500\" height=\"500\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png\" alt=\"Coach Joshua Susanto\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png 500w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-150x150.png 150w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. <p>Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.</p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!</p>		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-18 09:18:00", "2020-05-18 02:18:00", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("223", "1", "2020-05-18 09:19:28", "2020-05-18 02:19:28", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!</p>		\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"667\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg 667w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-200x300.jpg 200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-600x900.jpg 600w\" sizes=\"(max-width: 667px) 100vw, 667px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"500\" height=\"500\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png\" alt=\"Coach Joshua Susanto\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png 500w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-150x150.png 150w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. <p>Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.</p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!</p>		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-18 09:19:28", "2020-05-18 02:19:28", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("224", "1", "2020-05-18 09:20:04", "2020-05-18 02:20:04", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!</p>		\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"667\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg 667w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-200x300.jpg 200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-600x900.jpg 600w\" sizes=\"(max-width: 667px) 100vw, 667px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"500\" height=\"500\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png\" alt=\"Coach Joshua Susanto\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png 500w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-150x150.png 150w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. <p>Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.</p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!</p>		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-18 09:20:04", "2020-05-18 02:20:04", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("225", "1", "2020-05-18 09:36:57", "2020-05-18 02:36:57", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!</p>		\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"667\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg 667w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-200x300.jpg 200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-600x900.jpg 600w\" sizes=\"(max-width: 667px) 100vw, 667px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"500\" height=\"500\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png\" alt=\"Coach Joshua Susanto\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png 500w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-150x150.png 150w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. <p>Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.</p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!</p>		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-18 09:36:57", "2020-05-18 02:36:57", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("226", "1", "2020-05-18 09:37:25", "2020-05-18 02:37:25", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!</p>		\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"667\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg 667w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-200x300.jpg 200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-600x900.jpg 600w\" sizes=\"(max-width: 667px) 100vw, 667px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"#download\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"500\" height=\"500\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png\" alt=\"Coach Joshua Susanto\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png 500w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-150x150.png 150w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. <p>Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.</p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!</p>		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-18 09:37:25", "2020-05-18 02:37:25", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("227", "1", "2020-05-18 10:03:54", "2020-05-18 03:03:54", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!</p>		\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"667\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg 667w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-200x300.jpg 200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-600x900.jpg 600w\" sizes=\"(max-width: 667px) 100vw, 667px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"?add-to-cart=170\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"500\" height=\"500\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png\" alt=\"Coach Joshua Susanto\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png 500w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-150x150.png 150w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. <p>Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.</p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!</p>		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-18 10:03:54", "2020-05-18 03:03:54", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("228", "1", "2020-05-18 10:12:45", "2020-05-18 03:12:45", "", "Online Course: Gejala Penyakit Meeting", "", "publish", "closed", "closed", "", "online-course-gejala-penyakit-meeting", "", "", "2020-05-18 13:19:49", "2020-05-18 06:19:49", "", "0", "http://meetingmastery.lightrees.com/?post_type=product&#038;p=228", "0", "product", "", "0");
INSERT INTO `lt_posts` VALUES("229", "1", "2020-05-18 10:14:39", "2020-05-18 03:14:39", "", "Kelas Online Gejala Penyakit Meeting", "", "inherit", "open", "closed", "", "kelas-online-gejala-penyakit-meeting-2", "", "", "2020-05-18 10:14:39", "2020-05-18 03:14:39", "", "228", "http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Kelas-Online-Gejala-Penyakit-Meeting.png", "0", "attachment", "image/png", "0");
INSERT INTO `lt_posts` VALUES("230", "1", "2020-05-18 10:16:21", "2020-05-18 03:16:21", "{\n    \"astra-settings[ast-header-responsive-logo-width]\": {\n        \"value\": {\n            \"desktop\": \"100\",\n            \"tablet\": \"\",\n            \"mobile\": \"\"\n        },\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2020-05-18 03:16:21\"\n    }\n}", "", "", "trash", "closed", "closed", "", "780a09ae-7713-466d-a053-6be00816e388", "", "", "2020-05-18 10:16:21", "2020-05-18 03:16:21", "", "0", "http://meetingmastery.lightrees.com/780a09ae-7713-466d-a053-6be00816e388/", "0", "customize_changeset", "", "0");
INSERT INTO `lt_posts` VALUES("231", "1", "2020-05-18 10:20:40", "2020-05-18 03:20:40", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!</p>		\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"667\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg 667w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-200x300.jpg 200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-600x900.jpg 600w\" sizes=\"(max-width: 667px) 100vw, 667px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"?add-to-cart=228\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"500\" height=\"500\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png\" alt=\"Coach Joshua Susanto\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png 500w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-150x150.png 150w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. <p>Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.</p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!</p>		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-18 10:20:40", "2020-05-18 03:20:40", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("232", "1", "2020-05-18 10:23:06", "2020-05-18 03:23:06", "", "Order &ndash; May 18, 2020 @ 10:23 AM", "", "trash", "open", "closed", "wc_order_u62jhibnQBZJC", "order-may-18-2020-0323-am__trashed", "", "", "2020-05-18 11:42:26", "2020-05-18 04:42:26", "", "0", "http://meetingmastery.lightrees.com/?post_type=shop_order&#038;p=232", "0", "shop_order", "", "0");
INSERT INTO `lt_posts` VALUES("233", "1", "2020-05-18 10:29:22", "2020-05-18 03:29:22", "", "Order &ndash; May 18, 2020 @ 10:29 AM", "", "trash", "open", "closed", "wc_order_hvzzbmzOCkG8W", "order-may-18-2020-0329-am__trashed", "", "", "2020-05-18 11:42:26", "2020-05-18 04:42:26", "", "0", "http://meetingmastery.lightrees.com/?post_type=shop_order&#038;p=233", "0", "shop_order", "", "0");
INSERT INTO `lt_posts` VALUES("234", "1", "2020-05-18 10:42:33", "2020-05-18 03:42:33", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!</p>		\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"667\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg 667w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-200x300.jpg 200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-600x900.jpg 600w\" sizes=\"(max-width: 667px) 100vw, 667px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"?add-to-cart=228\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"500\" height=\"500\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png\" alt=\"Coach Joshua Susanto\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png 500w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-150x150.png 150w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. <p>Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.</p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Akses Kelas Online<br> Gejala Penyakit Meeting</p>		\n			<p>Introduction</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Episode 1</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Episode 2</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Kelas Online GRATIS Ini Hanya Dibuka Untuk Waktu yang Sangat Terbatas. Take Action Sekarang!</p>		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-18 10:42:33", "2020-05-18 03:42:33", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("238", "1", "2020-05-18 10:59:11", "2020-05-18 03:59:11", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!</p>		\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"667\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg 667w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-200x300.jpg 200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-600x900.jpg 600w\" sizes=\"(max-width: 667px) 100vw, 667px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"?add-to-cart=228\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"500\" height=\"500\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png\" alt=\"Coach Joshua Susanto\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png 500w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-150x150.png 150w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. <p>Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.</p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Akses Kelas Online<br> Gejala Penyakit Meeting</p>		\n			<p>Introduction</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Episode 1</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Episode 2</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course Gejala Penyakit Meeting</p>		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-18 10:59:11", "2020-05-18 03:59:11", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("239", "1", "2020-05-18 11:10:35", "2020-05-18 04:10:35", "", "Order &ndash; May 18, 2020 @ 11:10 AM", "", "trash", "open", "closed", "wc_order_0BrBVvR6SR3Sk", "order-may-18-2020-0410-am__trashed", "", "", "2020-05-18 11:42:26", "2020-05-18 04:42:26", "", "0", "http://meetingmastery.lightrees.com/?post_type=shop_order&#038;p=239", "0", "shop_order", "", "0");
INSERT INTO `lt_posts` VALUES("240", "1", "2020-05-18 11:32:11", "2020-05-18 04:32:11", "", "Order &ndash; May 18, 2020 @ 11:32 AM", "", "trash", "open", "closed", "wc_order_xot6CvDcT6cwj", "order-may-18-2020-0432-am__trashed", "", "", "2020-05-18 11:42:26", "2020-05-18 04:42:26", "", "0", "http://meetingmastery.lightrees.com/?post_type=shop_order&#038;p=240", "0", "shop_order", "", "0");
INSERT INTO `lt_posts` VALUES("241", "1", "2020-05-18 11:46:45", "2020-05-18 04:46:45", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!</p>		\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"667\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg 667w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-200x300.jpg 200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-600x900.jpg 600w\" sizes=\"(max-width: 667px) 100vw, 667px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<p>Dapatkan Harga Spesial:</p>		\n			<p>Rp 370.000</p>		\n			<p>Rp 250.000</p>		\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"?add-to-cart=228\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"500\" height=\"500\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png\" alt=\"Coach Joshua Susanto\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png 500w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-150x150.png 150w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. <p>Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.</p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Akses Kelas Online<br> Gejala Penyakit Meeting</p>		\n			<p>Introduction</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Episode 1</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Episode 2</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course Gejala Penyakit Meeting</p>		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-18 11:46:45", "2020-05-18 04:46:45", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("242", "1", "2020-05-18 11:47:29", "2020-05-18 04:47:29", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!</p>		\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"667\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg 667w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-200x300.jpg 200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-600x900.jpg 600w\" sizes=\"(max-width: 667px) 100vw, 667px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<p>Dapatkan Harga Spesial:</p>		\n			<p>Rp 370.000</p>		\n			<p>Rp 250.000</p>		\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"?add-to-cart=228\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"500\" height=\"500\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png\" alt=\"Coach Joshua Susanto\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png 500w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-150x150.png 150w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. <p>Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.</p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Akses Kelas Online<br> Gejala Penyakit Meeting</p>		\n			<p>Introduction</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Episode 1</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Episode 2</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course Gejala Penyakit Meeting</p>		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>100% Gratis Tanpa Biaya</p>		\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-18 11:47:29", "2020-05-18 04:47:29", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("243", "1", "2020-05-18 11:54:16", "2020-05-18 04:54:16", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!</p>		\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"667\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg 667w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-200x300.jpg 200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-600x900.jpg 600w\" sizes=\"(max-width: 667px) 100vw, 667px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<p>Dapatkan Harga Spesial:</p>		\n			<p>Rp 370.000</p>		\n			<p>Rp 250.000</p>		\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"?add-to-cart=228\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"500\" height=\"500\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png\" alt=\"Coach Joshua Susanto\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png 500w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-150x150.png 150w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. <p>Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.</p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Akses Kelas Online<br> Gejala Penyakit Meeting</p>		\n			<p>Introduction</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Episode 1</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Episode 2</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course Gejala Penyakit Meeting</p>		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-18 11:54:16", "2020-05-18 04:54:16", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("244", "1", "2020-05-18 11:55:45", "2020-05-18 04:55:45", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!</p>		\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"667\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg 667w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-200x300.jpg 200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-600x900.jpg 600w\" sizes=\"(max-width: 667px) 100vw, 667px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<p>Dapatkan Harga Spesial:</p>		\n			<p>Rp 370.000</p>		\n			<p>Rp 250.000</p>		\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"?add-to-cart=228\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"500\" height=\"500\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png\" alt=\"Coach Joshua Susanto\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png 500w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-150x150.png 150w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. <p>Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.</p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Akses Kelas Online<br> Gejala Penyakit Meeting</p>		\n			<p>Introduction</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Episode 1</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Episode 2</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course Gejala Penyakit Meeting</p>		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-18 11:55:45", "2020-05-18 04:55:45", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("245", "1", "2020-05-18 12:11:16", "2020-05-18 05:11:16", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!</p>		\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n										<img width=\"667\" height=\"1000\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course.jpg 667w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-200x300.jpg 200w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/online-course-600x900.jpg 600w\" sizes=\"(max-width: 667px) 100vw, 667px\" />											\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<p>Dapatkan Harga Spesial:</p>		\n			<p>Rp 370.000</p>		\n			<p>Rp 250.000</p>		\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"?add-to-cart=228\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"500\" height=\"500\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png\" alt=\"Coach Joshua Susanto\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png 500w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-150x150.png 150w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. <p>Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.</p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Introduction Kelas Online<br> Gejala Penyakit Meeting</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course Gejala Penyakit Meeting</p>		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-18 12:11:16", "2020-05-18 05:11:16", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("246", "1", "2020-05-18 12:13:30", "2020-05-18 05:13:30", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!</p>		\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<p>Dapatkan Harga Spesial:</p>		\n			<p>Rp 370.000</p>		\n			<p>Rp 250.000</p>		\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"?add-to-cart=228\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"500\" height=\"500\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png\" alt=\"Coach Joshua Susanto\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png 500w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-150x150.png 150w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. <p>Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.</p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Introduction Kelas Online<br> Gejala Penyakit Meeting</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course Gejala Penyakit Meeting</p>		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-18 12:13:30", "2020-05-18 05:13:30", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("247", "1", "2020-05-18 12:13:44", "2020-05-18 05:13:44", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika IYA, Kelas Online ini Sangat Cocok Untuk Anda!</p>		\n			<p>Kelas Online<br> Gejala Penyakit Meeting</p>		\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<p>Dapatkan Harga Spesial:</p>		\n			<p>Rp 370.000</p>		\n			<p>Rp 250.000</p>		\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"?add-to-cart=228\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"500\" height=\"500\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png\" alt=\"Coach Joshua Susanto\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png 500w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-150x150.png 150w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. <p>Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.</p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Introduction Kelas Online<br> Gejala Penyakit Meeting</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course Gejala Penyakit Meeting</p>		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-18 12:13:44", "2020-05-18 05:13:44", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("248", "1", "2020-05-18 12:14:25", "2020-05-18 05:14:25", "", "Order &ndash; May 18, 2020 @ 12:14 PM", "", "wc-cancelled", "open", "closed", "wc_order_1rq4EDjIY84MK", "order-may-18-2020-0514-am", "", "", "2020-05-18 14:11:08", "2020-05-18 07:11:08", "", "0", "http://meetingmastery.lightrees.com/?post_type=shop_order&#038;p=248", "0", "shop_order", "", "1");
INSERT INTO `lt_posts` VALUES("249", "1", "2020-05-18 12:25:57", "2020-05-18 05:25:57", "", "Order &ndash; May 18, 2020 @ 12:25 PM", "", "wc-cancelled", "open", "closed", "wc_order_ZKYXi8z1OHfbs", "order-may-18-2020-0525-am", "", "", "2020-05-18 14:11:08", "2020-05-18 07:11:08", "", "0", "http://meetingmastery.lightrees.com/?post_type=shop_order&#038;p=249", "0", "shop_order", "", "1");
INSERT INTO `lt_posts` VALUES("250", "1", "2020-05-18 13:19:01", "2020-05-18 06:19:01", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika IYA, Online Course ini Sangat Cocok Untuk Anda!</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"500\" height=\"500\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png\" alt=\"Coach Joshua Susanto\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png 500w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-150x150.png 150w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. <p>Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.</p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Online Course<br> Gejala Penyakit Meeting</p>		\n			<p>Introduction</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Episode 1</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Episode 2</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course Gejala Penyakit Meeting</p>		\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<p>Dapatkan Harga Spesial:</p>		\n			<p>Rp 370.000</p>		\n			<p>Rp 250.000</p>		\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"?add-to-cart=228\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-18 13:19:01", "2020-05-18 06:19:01", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("251", "1", "2020-05-18 13:24:06", "2020-05-18 06:24:06", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<a href=\"#join\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika IYA, Online Course ini Sangat Cocok Untuk Anda!</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"500\" height=\"500\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png\" alt=\"Coach Joshua Susanto\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png 500w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-150x150.png 150w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. <p>Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.</p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Online Course<br> Gejala Penyakit Meeting</p>		\n			<p>Introduction</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Episode 1</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Episode 2</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course Gejala Penyakit Meeting</p>		\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<p>Dapatkan Harga Spesial:</p>		\n			<p>Rp 370.000</p>		\n			<p>Rp 250.000</p>		\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"?add-to-cart=228\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-18 13:24:06", "2020-05-18 06:24:06", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("253", "1", "2020-05-18 13:58:04", "2020-05-18 06:58:04", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<h1>Online Course yang menjabarkan tentang cara sukses meeting sampai eksekusi hasil meeting.</h1>		\n			<a href=\"#join\" role=\"button\">\n						SAYA MAU\n					</a>\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika IYA, Online Course ini Sangat Cocok Untuk Anda!</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"500\" height=\"500\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png\" alt=\"Coach Joshua Susanto\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png 500w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-150x150.png 150w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. <p>Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.</p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Online Course<br> Gejala Penyakit Meeting</p>		\n			<p>Introduction</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Episode 1</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Episode 2</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course Gejala Penyakit Meeting</p>		\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<p>Dapatkan Harga Spesial:</p>		\n			<p>Rp 370.000</p>		\n			<p>Rp 250.000</p>		\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"?add-to-cart=228\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-18 13:58:04", "2020-05-18 06:58:04", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("254", "1", "2020-05-18 14:00:53", "2020-05-18 07:00:53", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<h1>Online Course yang menjabarkan tentang cara sukses meeting sampai eksekusi hasil meeting.</h1>		\n			<a href=\"#join\" role=\"button\">\n						SAYA MAU\n					</a>\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika IYA, Online Course ini Sangat Cocok Untuk Anda!</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"500\" height=\"500\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png\" alt=\"Coach Joshua Susanto\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png 500w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-150x150.png 150w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. <p>Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.</p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Online Course<br> Gejala Penyakit Meeting</p>		\n			<p>Introduction</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Episode 1</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Episode 2</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course Gejala Penyakit Meeting</p>		\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n			<p>Dapatkan Harga Spesial:</p>		\n			<p>Rp 370.000</p>		\n			<p>Rp 250.000</p>		\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"?add-to-cart=228\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-18 14:00:53", "2020-05-18 07:00:53", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("255", "1", "2020-05-18 14:24:18", "2020-05-18 07:24:18", "<!-- Floating WA button -->\r\n<div>\r\n  <style>\r\n    .socmed:hover {\r\n      transition: 0.6s;\r\n      transform: scale(1.2, 1.2);\r\n    }\r\n\r\n    .chat {\r\n      /* ###TODO: adjust desktop floating position */\r\n      position: fixed;\r\n      bottom: 30px;\r\n      right: 20px;\r\n    }\r\n\r\n    .chat-mobile {\r\n      /* ###TODO: adjust mobile floating position */\r\n      position: fixed;\r\n      bottom: 30px;\r\n      right: 20px;\r\n    }\r\n\r\n    @media (max-width: 736px) {\r\n      .hidden-mobile {\r\n        display: none;\r\n      }\r\n    }\r\n\r\n    @media (min-width: 737px) {\r\n      .hidden-pc {\r\n        display: none;\r\n      }\r\n    }\r\n  </style>\r\n  \r\n  <!-- ###TODO: change WA icon img src in these two <a> elements-->\r\n  \r\n  <a href=\"https://wa.me/6287739007428\" target=\"_blank\" title=\"Hubungi Kami\" onclick=\"track_control(WA_6287739007428); return false;\" rel=\"noopener noreferrer\">\r\n    <img class=\"chat socmed hidden-mobile\" style=\"width:60px;z-index:9999;\" src=\"/wp-content/uploads/2020/05/whatsapp.png\">\r\n  </a>\r\n  <a href=\"https://wa.me/6287739007428\" target=\"_blank\" title=\"Hubungi Kami\" onclick=\"track_control(WA_6287739007428); return false;\" rel=\"noopener noreferrer\">\r\n    <img class=\"chat-mobile socmed hidden-pc\" style=\"width:60px;z-index:9999;\" src=\"/wp-content/uploads/2020/05/whatsapp.png\">\r\n  </a>\r\n</div>\r\n", "Floating WA", "", "publish", "closed", "closed", "", "floating-wa", "", "", "2020-05-18 14:26:31", "2020-05-18 07:26:31", "", "0", "http://meetingmastery.lightrees.com/?post_type=custom-css-js&#038;p=255", "0", "custom-css-js", "", "0");
INSERT INTO `lt_posts` VALUES("256", "1", "2020-05-18 14:25:57", "2020-05-18 07:25:57", "", "whatsapp", "", "inherit", "open", "closed", "", "whatsapp", "", "", "2020-05-18 14:25:57", "2020-05-18 07:25:57", "", "0", "http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/whatsapp.png", "0", "attachment", "image/png", "0");
INSERT INTO `lt_posts` VALUES("257", "1", "2020-05-18 14:51:08", "2020-05-18 07:51:08", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<h1>Online Course yang menjabarkan tentang cara sukses meeting sampai eksekusi hasil meeting.</h1>		\n			<a href=\"#join\" role=\"button\">\n						SAYA MAU\n					</a>\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika IYA, Online Course ini Sangat Cocok Untuk Anda!</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"500\" height=\"500\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png\" alt=\"Coach Joshua Susanto\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png 500w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-150x150.png 150w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. <p>Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.</p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Online Course<br> Gejala Penyakit Meeting</p>		\n			<p>Introduction</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Episode 1</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Episode 2</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course Gejala Penyakit Meeting</p>		\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n	            <h2>Gejala Penyakit Meeting</h2>\n	            Rp 370.000\n	            		<ul>\n						<li >\n				            Sekali Bayar            </li>\n						<li >\n				            Free Ebook            </li>\n						<li >\n				            Diskon Khusus Pembayaran dengan Kartu Kredit            </li>\n					</ul>\n		    	<a href=\"#\"  >\n																			Choose Plan							    	</a>\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"?add-to-cart=228\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-18 14:51:08", "2020-05-18 07:51:08", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("258", "1", "2020-05-18 15:24:19", "2020-05-18 08:24:19", "<h1>Semua harus SAYA?<br>\nMeeting TAK ada GUNA-nya?<br>Eksekusi Hasil meeting SUSAH?</h1>		\n		https://www.youtube.com/watch?v=MVm4TkH9ISQ		\n			<h1>Online Course yang menjabarkan tentang cara sukses meeting sampai eksekusi hasil meeting.</h1>		\n			<a href=\"#join\" role=\"button\">\n						SAYA MAU\n					</a>\n			<p>Pernah kah Anda merasa seperti ini?</p>		\n										<img width=\"750\" height=\"563\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry.jpg 750w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-600x450.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Asian-boss-angry-300x225.jpg 300w\" sizes=\"(max-width: 750px) 100vw, 750px\" />											\n			<p>Jika Anda Pimpinan/Atasan...</p>		\n					<ul>\n							<li >\n										Sudah rutin meeting dengan team,<br>tapi hasil nya kok <b>muter-muter</b> di situ lagi <br>dan hasil nya <b>ga</b> ada yang <b>nyata</b>, <br>dan perusahaan <b>ga</b> ada <b>perkembangan</b>?\n									</li>\n								<li >\n										Meeting sudah rutin (atau hampir) dan semuanya sudah direncanakan dengan baik, tapi kok <b>EKSEKUSI </b>nya <b>ga jalan-jalan</b> dan susah banget maju … Nah kan!\n									</li>\n								<li >\n										Atau malah lebih parahnya anda<b> jarang</b>…. atau bahkan tidak pernah <b>meeting</b>? \n									</li>\n								<li >\n										Anda merasa kok <b>semua nya harus saya</b> ya, cape banget semua harus saya yang dorong-dorong, seolah yang lain kok ga peduli…\n									</li>\n						</ul>\n			<p>Jika Anda seorang bawahan...</p>		\n					<ul>\n							<li >\n										Apa anda sering merasa <b>muak</b> dengan <b>meeting</b> yang terlalu <b>sering</b>? Sedikit2 meeting, meeting sana meeting sini, <b>kapan kerjanya</b>?\n									</li>\n								<li >\n										Kalau pun meeting, <b>ga ada isi</b> nya, mem<b>bosan</b>kan, sampai membuat anda tertidur…. <br>atau, yang ada cuma <b>disalah-salahin</b>, dimarah-marahin, ga jelas <b>mau nya apa sih</b>!\n									</li>\n						</ul>\n										<img width=\"1024\" height=\"684\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg\" alt=\"\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1024x684.jpg 1024w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-scaled-600x401.jpg 600w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-300x200.jpg 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-768x513.jpg 768w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-1536x1025.jpg 1536w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/employee-three-women-sitting-beside-white-table-1181616-2048x1367.jpg 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" />											\n			<p>Jika IYA, Online Course ini Sangat Cocok Untuk Anda!</p>		\n			<p>Perkenalkan, Saya</p>		\n			<p>Coach Joshua Sutanto</p>		\n										<img width=\"500\" height=\"500\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png\" alt=\"Coach Joshua Susanto\" srcset=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto.png 500w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-300x300.png 300w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-150x150.png 150w, http://meetingmastery.lightrees.com/wp-content/uploads/2020/05/Coach-Joshua-Susanto-100x100.png 100w\" sizes=\"(max-width: 500px) 100vw, 500px\" />											\n		<p><b>Coach Joshua Sutanto</b> seorang Entrepreneur &amp; Coach. Pengusaha di bidang Property, Teknologi, Jasa Bisnis.</p>Coach Joshua telah berpengalaman puluhan tahun sebagai Konsultan di berbagai bidang Bisnis, dengan menguasai banyak bidang di banyak perusahaan Multinasional di Australia dan Indonesia. <p>Selama 5 tahun sebagai Senior Certified Business Coach™ di GRATYO® World’s Leading Practical Business Coaching, ia telah banyak membantu perusahaan dimana mereka berhasil meningkatkan omzet hingga 250% hanya dalam waktu 3 bulan saja, berhasil membantu para Entrepreneur membangun System dan SuperTEAM yang handal sehingga mereka mendapatkan Time Freedom (waktu yang lebih luang), yang dulu nya harus setiap hari hadir bekerja di bisnis nya menjadi hanya beberapa hari saja hanya dalam waktu 2 bulan saja.</p><p>Pembawaaanya yang FUN, praktis dan kreatif membuat klien selalu merasakan metode yang mudah dimengerti dan praktis untuk diterapkan</p><p>Ia selalu berhasil membuat segala sesuatu lebih efisien dan produktif melalui sistemisasi proses yang efektif</p>Coach Joshua juga seorang Founder, Owner &amp; CXC (Chief Xpreneur Coach) di beberapa bisnis dalam Lightrees Group bersama dengan beberapa Strategic Partners nya, beberapa di antaranya bisnis Property Development, Accomodation, Serviced Office &amp; Coworking Space, Jasa Konsultan Software &amp; System dan saat ini sedang membangun Komunitas Xpreneur yang akan memberikan jasa Business Agency Services Done-for-you dari para Konsultan Expert di bidang Digital Marketing, Digital Sales, Talent/Human Capital, Operation/System, dan Money services.		\n			<p>Online Course<br> Gejala Penyakit Meeting</p>		\n			<p>Introduction</p>		\n		https://www.youtube.com/watch?v=VwBVp0vv_Mk		\n			<p>Episode 1</p>		\n		https://youtu.be/HRItDrYQQWM		\n			<p>Episode 2</p>		\n		https://youtu.be/hZfgDKXD0ZM		\n			<p>Mau Belajar Lebih Detil Lagi? Gabung Segera ke Online Course Gejala Penyakit Meeting</p>		\n			<p>Temukan RESEP GAGAL untuk Meeting dengan 12 Gejala Penyakit Meeting:</p>		\n					<ul>\n							<li >\n										<b>Gejala Semua Saya \n</b>(bagi yang merasa Semua harus saya, meeting jarang hasil gersang)\n									</li>\n								<li >\n										<b>Gejala Meeting Gagal <br></b>(bagi yang merasa percuma meeting karena tak ada gunanya)\n									</li>\n								<li >\n										<b>Gejala Susah Eksekusi \n</b>(bagi yang sudah sering meeting tapi hasil kering)\n									</li>\n						</ul>\n	            <h2>Gejala Penyakit Meeting</h2>\n	            Rp 370.000\n	            		<ul>\n						<li >\n				            Sekali Bayar            </li>\n						<li >\n				            Free Ebook            </li>\n						<li >\n				            Diskon Khusus Pembayaran dengan Kartu Kredit            </li>\n					</ul>\n		    	<a href=\"#\"  >\n																			Choose Plan							    	</a>\n			PENDAFTARAN TUTUP DALAM<br />03 Jam : 00 Menit : 00 Detik\n			<a href=\"?add-to-cart=228\" role=\"button\">\n						DAFTAR SEKARANG!\n					</a>\n										<img width=\"238\" height=\"155\" src=\"http://meetingmastery.lightrees.com/wp-content/uploads/2020/04/logo.png\" alt=\"\" />											\n					<ul>\n							<li >\n					<a href=\"https://wa.me/6287739007428\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										+6287739007428\n											</a>\n									</li>\n								<li >\n					<a href=\"mailto:info@lightrees.com\" target=\"_blank\" rel=\"noopener noreferrer\">						\n										info@lightrees.com\n											</a>\n									</li>\n						</ul>\n			<p>Copyright © 2020 <strong>Lightrees Group</strong>. All Rights Reserved.</p>", "Gejala Penyakit Meeting", "", "inherit", "closed", "closed", "", "2-revision-v1", "", "", "2020-05-18 15:24:19", "2020-05-18 08:24:19", "", "2", "http://meetingmastery.lightrees.com/2-revision-v1/", "0", "revision", "", "0");
INSERT INTO `lt_posts` VALUES("259", "1", "2020-05-20 13:32:30", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2020-05-20 13:32:30", "0000-00-00 00:00:00", "", "0", "http://meetingmastery.lightrees.com/?p=259", "0", "post", "", "0");
INSERT INTO `lt_posts` VALUES("260", "2", "2020-05-20 15:21:59", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "open", "open", "", "", "", "", "2020-05-20 15:21:59", "0000-00-00 00:00:00", "", "0", "http://meetingmastery.lightrees.com/?p=260", "0", "post", "", "0");
INSERT INTO `lt_posts` VALUES("261", "1", "2020-05-20 15:38:40", "2020-05-20 08:38:40", "", "Order &ndash; May 20, 2020 @ 03:38 PM", "", "wc-cancelled", "open", "closed", "wc_order_IMMBBlTrzsN7j", "order-may-20-2020-0838-am", "", "", "2020-05-20 17:39:28", "2020-05-20 10:39:28", "", "0", "http://meetingmastery.lightrees.com/?post_type=shop_order&#038;p=261", "0", "shop_order", "", "4");
INSERT INTO `lt_posts` VALUES("262", "1", "2020-05-20 16:28:42", "2020-05-20 09:28:42", "", "Order &ndash; May 20, 2020 @ 04:28 PM", "", "wc-cancelled", "open", "closed", "wc_order_MPjIeTZEwBpmr", "order-may-20-2020-0928-am", "", "", "2020-05-20 18:29:29", "2020-05-20 11:29:29", "", "0", "https://meetingmastery.lightrees.com/?post_type=shop_order&#038;p=262", "0", "shop_order", "", "4");
INSERT INTO `lt_posts` VALUES("263", "1", "2020-05-20 16:37:18", "2020-05-20 09:37:18", "", "Order &ndash; May 20, 2020 @ 04:37 PM", "", "wc-cancelled", "open", "closed", "wc_order_TvKSpbprrVRPy", "order-may-20-2020-0937-am", "", "", "2020-05-20 18:38:06", "2020-05-20 11:38:06", "", "0", "https://meetingmastery.lightrees.com/?post_type=shop_order&#038;p=263", "0", "shop_order", "", "4");
INSERT INTO `lt_posts` VALUES("264", "1", "2020-05-20 16:44:19", "2020-05-20 09:44:19", "", "Order &ndash; May 20, 2020 @ 04:44 PM", "", "wc-cancelled", "open", "closed", "wc_order_Qa4tKosekp3ow", "order-may-20-2020-0944-am", "", "", "2020-05-20 18:44:53", "2020-05-20 11:44:53", "", "0", "https://meetingmastery.lightrees.com/?post_type=shop_order&#038;p=264", "0", "shop_order", "", "4");
INSERT INTO `lt_posts` VALUES("265", "1", "2020-05-20 17:18:24", "2020-05-20 10:18:24", "", "Order &ndash; May 20, 2020 @ 05:18 PM", "", "wc-cancelled", "open", "closed", "wc_order_kA4FJzRSzNb10", "order-may-20-2020-1018-am", "", "", "2020-05-20 19:19:05", "2020-05-20 12:19:05", "", "0", "https://meetingmastery.lightrees.com/?post_type=shop_order&#038;p=265", "0", "shop_order", "", "4");
INSERT INTO `lt_posts` VALUES("266", "1", "2020-05-20 18:46:01", "2020-05-20 11:46:01", "", "Order &ndash; May 20, 2020 @ 06:46 PM", "", "wc-cancelled", "open", "closed", "wc_order_cinIvJmjVtytG", "order-may-20-2020-1146-am", "", "", "2020-05-20 20:46:37", "2020-05-20 13:46:37", "", "0", "https://meetingmastery.lightrees.com/?post_type=shop_order&#038;p=266", "0", "shop_order", "", "4");
INSERT INTO `lt_posts` VALUES("267", "1", "2020-05-20 19:14:00", "2020-05-20 12:14:00", "", "Order &ndash; May 20, 2020 @ 07:14 PM", "", "wc-cancelled", "open", "closed", "wc_order_cC9aSRct63sOr", "order-may-20-2020-1214-pm", "", "", "2020-05-20 21:14:38", "2020-05-20 14:14:38", "", "0", "https://meetingmastery.lightrees.com/?post_type=shop_order&#038;p=267", "0", "shop_order", "", "4");
INSERT INTO `lt_posts` VALUES("268", "1", "2020-05-21 19:39:06", "2020-05-21 12:39:06", "{\n    \"site_icon\": {\n        \"value\": 10,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2020-05-21 12:39:06\"\n    }\n}", "", "", "trash", "closed", "closed", "", "9a458a0e-5281-40f0-a36d-e890e9cadbe1", "", "", "2020-05-21 19:39:06", "2020-05-21 12:39:06", "", "0", "https://meetingmastery.lightrees.com/9a458a0e-5281-40f0-a36d-e890e9cadbe1/", "0", "customize_changeset", "", "0");
INSERT INTO `lt_posts` VALUES("269", "1", "2020-05-22 09:07:05", "0000-00-00 00:00:00", "", "Auto Draft", "", "auto-draft", "closed", "closed", "", "", "", "", "2020-05-22 09:07:05", "0000-00-00 00:00:00", "", "0", "https://meetingmastery.lightrees.com/?post_type=shop_coupon&p=269", "0", "shop_coupon", "", "0");
INSERT INTO `lt_posts` VALUES("270", "1", "2020-05-22 09:15:34", "0000-00-00 00:00:00", "", "PROMOCC", "", "draft", "closed", "closed", "", "", "", "", "2020-05-22 09:15:34", "2020-05-22 02:15:34", "", "0", "https://meetingmastery.lightrees.com/?post_type=shop_coupon&#038;p=270", "0", "shop_coupon", "", "0");
INSERT INTO `lt_posts` VALUES("271", "1", "2020-05-22 09:22:48", "2020-05-22 02:22:48", "", "PROMOCC", "", "publish", "closed", "closed", "", "promocc", "", "", "2020-05-22 09:22:48", "2020-05-22 02:22:48", "", "0", "https://meetingmastery.lightrees.com/?post_type=shop_coupon&#038;p=271", "0", "shop_coupon", "", "0");
INSERT INTO `lt_posts` VALUES("272", "1", "2020-05-22 09:50:43", "2020-05-22 02:50:43", "", "Order &ndash; May 22, 2020 @ 09:50 AM", "", "wc-cancelled", "open", "closed", "wc_order_2vwO6S8xLo3Ab", "order-may-22-2020-0250-am", "", "", "2020-05-23 09:58:05", "2020-05-23 02:58:05", "", "0", "https://meetingmastery.lightrees.com/?post_type=shop_order&#038;p=272", "0", "shop_order", "", "1");

/* INSERT TABLE DATA: lt_term_relationships */
INSERT INTO `lt_term_relationships` VALUES("1", "1", "0");
INSERT INTO `lt_term_relationships` VALUES("75", "2", "0");
INSERT INTO `lt_term_relationships` VALUES("88", "2", "0");
INSERT INTO `lt_term_relationships` VALUES("142", "2", "0");
INSERT INTO `lt_term_relationships` VALUES("170", "3", "0");
INSERT INTO `lt_term_relationships` VALUES("170", "16", "0");
INSERT INTO `lt_term_relationships` VALUES("178", "17", "0");
INSERT INTO `lt_term_relationships` VALUES("228", "3", "0");
INSERT INTO `lt_term_relationships` VALUES("228", "16", "0");

/* INSERT TABLE DATA: lt_term_taxonomy */
INSERT INTO `lt_term_taxonomy` VALUES("1", "1", "category", "", "0", "1");
INSERT INTO `lt_term_taxonomy` VALUES("2", "2", "elementor_library_type", "", "0", "3");
INSERT INTO `lt_term_taxonomy` VALUES("3", "3", "product_type", "", "0", "1");
INSERT INTO `lt_term_taxonomy` VALUES("4", "4", "product_type", "", "0", "0");
INSERT INTO `lt_term_taxonomy` VALUES("5", "5", "product_type", "", "0", "0");
INSERT INTO `lt_term_taxonomy` VALUES("6", "6", "product_type", "", "0", "0");
INSERT INTO `lt_term_taxonomy` VALUES("7", "7", "product_visibility", "", "0", "0");
INSERT INTO `lt_term_taxonomy` VALUES("8", "8", "product_visibility", "", "0", "0");
INSERT INTO `lt_term_taxonomy` VALUES("9", "9", "product_visibility", "", "0", "0");
INSERT INTO `lt_term_taxonomy` VALUES("10", "10", "product_visibility", "", "0", "0");
INSERT INTO `lt_term_taxonomy` VALUES("11", "11", "product_visibility", "", "0", "0");
INSERT INTO `lt_term_taxonomy` VALUES("12", "12", "product_visibility", "", "0", "0");
INSERT INTO `lt_term_taxonomy` VALUES("13", "13", "product_visibility", "", "0", "0");
INSERT INTO `lt_term_taxonomy` VALUES("14", "14", "product_visibility", "", "0", "0");
INSERT INTO `lt_term_taxonomy` VALUES("15", "15", "product_visibility", "", "0", "0");
INSERT INTO `lt_term_taxonomy` VALUES("16", "16", "product_cat", "", "0", "1");
INSERT INTO `lt_term_taxonomy` VALUES("17", "17", "nav_menu", "", "0", "1");

/* INSERT TABLE DATA: lt_termmeta */
INSERT INTO `lt_termmeta` VALUES("1", "16", "product_count_product_cat", "1");

/* INSERT TABLE DATA: lt_terms */
INSERT INTO `lt_terms` VALUES("1", "Uncategorized", "uncategorized", "0");
INSERT INTO `lt_terms` VALUES("2", "page", "page", "0");
INSERT INTO `lt_terms` VALUES("3", "simple", "simple", "0");
INSERT INTO `lt_terms` VALUES("4", "grouped", "grouped", "0");
INSERT INTO `lt_terms` VALUES("5", "variable", "variable", "0");
INSERT INTO `lt_terms` VALUES("6", "external", "external", "0");
INSERT INTO `lt_terms` VALUES("7", "exclude-from-search", "exclude-from-search", "0");
INSERT INTO `lt_terms` VALUES("8", "exclude-from-catalog", "exclude-from-catalog", "0");
INSERT INTO `lt_terms` VALUES("9", "featured", "featured", "0");
INSERT INTO `lt_terms` VALUES("10", "outofstock", "outofstock", "0");
INSERT INTO `lt_terms` VALUES("11", "rated-1", "rated-1", "0");
INSERT INTO `lt_terms` VALUES("12", "rated-2", "rated-2", "0");
INSERT INTO `lt_terms` VALUES("13", "rated-3", "rated-3", "0");
INSERT INTO `lt_terms` VALUES("14", "rated-4", "rated-4", "0");
INSERT INTO `lt_terms` VALUES("15", "rated-5", "rated-5", "0");
INSERT INTO `lt_terms` VALUES("16", "Online Course", "online-course", "0");
INSERT INTO `lt_terms` VALUES("17", "Main Menu", "main-menu", "0");

/* INSERT TABLE DATA: lt_usermeta */
INSERT INTO `lt_usermeta` VALUES("1", "1", "nickname", "pakar");
INSERT INTO `lt_usermeta` VALUES("2", "1", "first_name", "Sulistio");
INSERT INTO `lt_usermeta` VALUES("3", "1", "last_name", "Test");
INSERT INTO `lt_usermeta` VALUES("4", "1", "description", "");
INSERT INTO `lt_usermeta` VALUES("5", "1", "rich_editing", "true");
INSERT INTO `lt_usermeta` VALUES("6", "1", "syntax_highlighting", "true");
INSERT INTO `lt_usermeta` VALUES("7", "1", "comment_shortcuts", "false");
INSERT INTO `lt_usermeta` VALUES("8", "1", "admin_color", "fresh");
INSERT INTO `lt_usermeta` VALUES("9", "1", "use_ssl", "0");
INSERT INTO `lt_usermeta` VALUES("10", "1", "show_admin_bar_front", "true");
INSERT INTO `lt_usermeta` VALUES("11", "1", "locale", "");
INSERT INTO `lt_usermeta` VALUES("12", "1", "lt_capabilities", "a:1:{s:13:\"administrator\";b:1;}");
INSERT INTO `lt_usermeta` VALUES("13", "1", "lt_user_level", "10");
INSERT INTO `lt_usermeta` VALUES("14", "1", "dismissed_wp_pointers", "");
INSERT INTO `lt_usermeta` VALUES("15", "1", "show_welcome_panel", "1");
INSERT INTO `lt_usermeta` VALUES("17", "1", "lt_dashboard_quick_press_last_post_id", "259");
INSERT INTO `lt_usermeta` VALUES("18", "1", "community-events-location", "a:1:{s:2:\"ip\";s:11:\"182.0.245.0\";}");
INSERT INTO `lt_usermeta` VALUES("19", "1", "elementor_introduction", "a:2:{s:19:\"colorPickerDropping\";b:1;s:10:\"rightClick\";b:1;}");
INSERT INTO `lt_usermeta` VALUES("20", "1", "lt_user-settings", "libraryContent=browse&editor=tinymce");
INSERT INTO `lt_usermeta` VALUES("21", "1", "lt_user-settings-time", "1588151198");
INSERT INTO `lt_usermeta` VALUES("22", "1", "_pum_dismissed_alerts", "a:1:{s:24:\"translation_request_1.10\";b:1;}");
INSERT INTO `lt_usermeta` VALUES("23", "1", "closedpostboxes_popup", "a:1:{i:0;s:23:\"astra_settings_meta_box\";}");
INSERT INTO `lt_usermeta` VALUES("24", "1", "metaboxhidden_popup", "a:1:{i:0;s:7:\"slugdiv\";}");
INSERT INTO `lt_usermeta` VALUES("25", "1", "_pum_reviews_dismissed_triggers", "a:1:{s:10:\"open_count\";s:2:\"10\";}");
INSERT INTO `lt_usermeta` VALUES("26", "1", "_pum_reviews_last_dismissed", "2020-04-30 10:19:46");
INSERT INTO `lt_usermeta` VALUES("27", "2", "nickname", "admin");
INSERT INTO `lt_usermeta` VALUES("28", "2", "first_name", "Admin");
INSERT INTO `lt_usermeta` VALUES("29", "2", "last_name", "");
INSERT INTO `lt_usermeta` VALUES("30", "2", "description", "");
INSERT INTO `lt_usermeta` VALUES("31", "2", "rich_editing", "true");
INSERT INTO `lt_usermeta` VALUES("32", "2", "syntax_highlighting", "true");
INSERT INTO `lt_usermeta` VALUES("33", "2", "comment_shortcuts", "false");
INSERT INTO `lt_usermeta` VALUES("34", "2", "admin_color", "fresh");
INSERT INTO `lt_usermeta` VALUES("35", "2", "use_ssl", "0");
INSERT INTO `lt_usermeta` VALUES("36", "2", "show_admin_bar_front", "true");
INSERT INTO `lt_usermeta` VALUES("37", "2", "locale", "");
INSERT INTO `lt_usermeta` VALUES("38", "2", "lt_capabilities", "a:1:{s:6:\"editor\";b:1;}");
INSERT INTO `lt_usermeta` VALUES("39", "2", "lt_user_level", "7");
INSERT INTO `lt_usermeta` VALUES("40", "2", "dismissed_wp_pointers", "");
INSERT INTO `lt_usermeta` VALUES("41", "2", "session_tokens", "a:2:{s:64:\"e4f7709d19be2ffa2e55bcda0b0ad3060e017653aa40135d7340d00b387bc82d\";a:4:{s:10:\"expiration\";i:1590460012;s:2:\"ip\";s:14:\"202.80.216.174\";s:2:\"ua\";s:187:\"Mozilla/5.0 (Linux; U; Android 7.1.2; id-id; Redmi 5 Build/N2G47H) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/71.0.3578.141 Mobile Safari/537.36 XiaoMi/MiuiBrowser/12.1.5-g\";s:5:\"login\";i:1589250412;}s:64:\"d5ff3c382450b9c018d6204896a0741b7e2581201d76cd24b378fe6b8f6efc34\";a:4:{s:10:\"expiration\";i:1591547934;s:2:\"ip\";s:15:\"125.166.147.206\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36\";s:5:\"login\";i:1590338334;}}");
INSERT INTO `lt_usermeta` VALUES("42", "2", "_pum_dismissed_alerts", "a:0:{}");
INSERT INTO `lt_usermeta` VALUES("43", "2", "lt_dashboard_quick_press_last_post_id", "260");
INSERT INTO `lt_usermeta` VALUES("44", "2", "community-events-location", "a:1:{s:2:\"ip\";s:13:\"125.166.147.0\";}");
INSERT INTO `lt_usermeta` VALUES("45", "2", "elementor_introduction", "a:1:{s:10:\"rightClick\";b:1;}");
INSERT INTO `lt_usermeta` VALUES("46", "2", "lt_user-settings", "libraryContent=browse&editor=tinymce");
INSERT INTO `lt_usermeta` VALUES("47", "2", "lt_user-settings-time", "1589201421");
INSERT INTO `lt_usermeta` VALUES("48", "1", "_woocommerce_tracks_anon_id", "woo:qK8VSqOKGMcAfQxhGulwy/BC");
INSERT INTO `lt_usermeta` VALUES("49", "1", "wc_last_active", "1590451200");
INSERT INTO `lt_usermeta` VALUES("51", "1", "essential_adons_elementor_opt_in", "1");
INSERT INTO `lt_usermeta` VALUES("52", "1", "wpdeveloper_notices_seen", "a:1:{s:24:\"wpdeveloper_notice_3_9_4\";a:1:{s:25:\"essential_adons_elementor\";a:2:{i:0;s:6:\"opt_in\";i:1;s:6:\"review\";}}}");
INSERT INTO `lt_usermeta` VALUES("53", "1", "bsf-optin-notice", "notice-dismissed");
INSERT INTO `lt_usermeta` VALUES("54", "1", "elementor_admin_notices", "a:1:{s:19:\"woocommerce_promote\";s:4:\"true\";}");
INSERT INTO `lt_usermeta` VALUES("55", "2", "wc_last_active", "1590364800");
INSERT INTO `lt_usermeta` VALUES("56", "1", "last_update", "1590115843");
INSERT INTO `lt_usermeta` VALUES("57", "1", "billing_first_name", "Sulistio");
INSERT INTO `lt_usermeta` VALUES("58", "1", "billing_last_name", "Test");
INSERT INTO `lt_usermeta` VALUES("59", "1", "billing_company", "PAKAR");
INSERT INTO `lt_usermeta` VALUES("60", "1", "billing_address_1", "PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan");
INSERT INTO `lt_usermeta` VALUES("61", "1", "billing_city", "Jakarta Barat");
INSERT INTO `lt_usermeta` VALUES("62", "1", "billing_state", "JK");
INSERT INTO `lt_usermeta` VALUES("63", "1", "billing_postcode", "11440");
INSERT INTO `lt_usermeta` VALUES("64", "1", "billing_country", "ID");
INSERT INTO `lt_usermeta` VALUES("65", "1", "billing_email", "gixor80421@reqaxv.com");
INSERT INTO `lt_usermeta` VALUES("66", "1", "billing_phone", "0215672564");
INSERT INTO `lt_usermeta` VALUES("67", "1", "shipping_first_name", "Sulistio");
INSERT INTO `lt_usermeta` VALUES("68", "1", "shipping_last_name", "Test");
INSERT INTO `lt_usermeta` VALUES("69", "1", "shipping_company", "PAKAR");
INSERT INTO `lt_usermeta` VALUES("70", "1", "shipping_address_1", "PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan");
INSERT INTO `lt_usermeta` VALUES("71", "1", "shipping_city", "Jakarta Barat");
INSERT INTO `lt_usermeta` VALUES("72", "1", "shipping_state", "JK");
INSERT INTO `lt_usermeta` VALUES("73", "1", "shipping_postcode", "11440");
INSERT INTO `lt_usermeta` VALUES("74", "1", "shipping_country", "ID");
INSERT INTO `lt_usermeta` VALUES("77", "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\";}");
INSERT INTO `lt_usermeta` VALUES("78", "1", "metaboxhidden_nav-menus", "a:5:{i:0;s:21:\"add-post-type-product\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";i:3;s:15:\"add-product_cat\";i:4;s:15:\"add-product_tag\";}");
INSERT INTO `lt_usermeta` VALUES("84", "2", "_order_count", "0");
INSERT INTO `lt_usermeta` VALUES("88", "3", "nickname", "pakar.tes");
INSERT INTO `lt_usermeta` VALUES("89", "3", "first_name", "PAKAR");
INSERT INTO `lt_usermeta` VALUES("90", "3", "last_name", "Tes");
INSERT INTO `lt_usermeta` VALUES("91", "3", "description", "");
INSERT INTO `lt_usermeta` VALUES("92", "3", "rich_editing", "true");
INSERT INTO `lt_usermeta` VALUES("93", "3", "syntax_highlighting", "true");
INSERT INTO `lt_usermeta` VALUES("94", "3", "comment_shortcuts", "false");
INSERT INTO `lt_usermeta` VALUES("95", "3", "admin_color", "fresh");
INSERT INTO `lt_usermeta` VALUES("96", "3", "use_ssl", "0");
INSERT INTO `lt_usermeta` VALUES("97", "3", "show_admin_bar_front", "true");
INSERT INTO `lt_usermeta` VALUES("98", "3", "locale", "");
INSERT INTO `lt_usermeta` VALUES("99", "3", "lt_capabilities", "a:1:{s:8:\"customer\";b:1;}");
INSERT INTO `lt_usermeta` VALUES("100", "3", "lt_user_level", "0");
INSERT INTO `lt_usermeta` VALUES("101", "3", "session_tokens", "a:1:{s:64:\"65a59ba1299d2e504232be726852ed30a1829069deb38cd2cc501f022584b3c9\";a:4:{s:10:\"expiration\";i:1590981785;s:2:\"ip\";s:14:\"114.124.232.30\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36\";s:5:\"login\";i:1589772185;}}");
INSERT INTO `lt_usermeta` VALUES("102", "3", "last_update", "1589772562");
INSERT INTO `lt_usermeta` VALUES("103", "3", "billing_first_name", "PAKAR");
INSERT INTO `lt_usermeta` VALUES("104", "3", "billing_last_name", "Tes");
INSERT INTO `lt_usermeta` VALUES("105", "3", "billing_company", "PAKAR");
INSERT INTO `lt_usermeta` VALUES("106", "3", "billing_address_1", "PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan");
INSERT INTO `lt_usermeta` VALUES("107", "3", "billing_city", "Jakarta Barat");
INSERT INTO `lt_usermeta` VALUES("108", "3", "billing_state", "JK");
INSERT INTO `lt_usermeta` VALUES("109", "3", "billing_postcode", "11440");
INSERT INTO `lt_usermeta` VALUES("110", "3", "billing_country", "ID");
INSERT INTO `lt_usermeta` VALUES("111", "3", "billing_email", "yapicaw597@beiop.com");
INSERT INTO `lt_usermeta` VALUES("112", "3", "billing_phone", "0215672564");
INSERT INTO `lt_usermeta` VALUES("113", "3", "shipping_method", "");
INSERT INTO `lt_usermeta` VALUES("114", "3", "wc_last_active", "1589760000");
INSERT INTO `lt_usermeta` VALUES("118", "1", "session_tokens", "a:1:{s:64:\"fd7d905e5350e23fe15aa42758369b69621de01e400bde06792979dddf0a3905\";a:4:{s:10:\"expiration\";i:1590658416;s:2:\"ip\";s:13:\"182.0.245.207\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36\";s:5:\"login\";i:1590485616;}}");
INSERT INTO `lt_usermeta` VALUES("125", "4", "nickname", "sulistio.tes");
INSERT INTO `lt_usermeta` VALUES("126", "4", "first_name", "Sulistio");
INSERT INTO `lt_usermeta` VALUES("127", "4", "last_name", "Tes");
INSERT INTO `lt_usermeta` VALUES("128", "4", "description", "");
INSERT INTO `lt_usermeta` VALUES("129", "4", "rich_editing", "true");
INSERT INTO `lt_usermeta` VALUES("130", "4", "syntax_highlighting", "true");
INSERT INTO `lt_usermeta` VALUES("131", "4", "comment_shortcuts", "false");
INSERT INTO `lt_usermeta` VALUES("132", "4", "admin_color", "fresh");
INSERT INTO `lt_usermeta` VALUES("133", "4", "use_ssl", "0");
INSERT INTO `lt_usermeta` VALUES("134", "4", "show_admin_bar_front", "true");
INSERT INTO `lt_usermeta` VALUES("135", "4", "locale", "");
INSERT INTO `lt_usermeta` VALUES("136", "4", "lt_capabilities", "a:1:{s:8:\"customer\";b:1;}");
INSERT INTO `lt_usermeta` VALUES("137", "4", "lt_user_level", "0");
INSERT INTO `lt_usermeta` VALUES("138", "4", "session_tokens", "a:1:{s:64:\"5f2b84a17a8267bdf5efd869eddee5c369a0a93c49735679e6b3ef46cc3eba69\";a:4:{s:10:\"expiration\";i:1590989157;s:2:\"ip\";s:14:\"114.124.232.30\";s:2:\"ua\";s:126:\"Mozilla/5.0 (Linux; Android 8.0.0; SM-A750GN) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Mobile Safari/537.36\";s:5:\"login\";i:1589779557;}}");
INSERT INTO `lt_usermeta` VALUES("139", "4", "last_update", "1589779557");
INSERT INTO `lt_usermeta` VALUES("140", "4", "billing_first_name", "Sulistio");
INSERT INTO `lt_usermeta` VALUES("141", "4", "billing_last_name", "Tes");
INSERT INTO `lt_usermeta` VALUES("142", "4", "billing_address_1", "Jl. Kantin No 9");
INSERT INTO `lt_usermeta` VALUES("143", "4", "billing_address_2", "Pabaton");
INSERT INTO `lt_usermeta` VALUES("144", "4", "billing_city", "Bogor");
INSERT INTO `lt_usermeta` VALUES("145", "4", "billing_state", "JB");
INSERT INTO `lt_usermeta` VALUES("146", "4", "billing_postcode", "16121");
INSERT INTO `lt_usermeta` VALUES("147", "4", "billing_country", "ID");
INSERT INTO `lt_usermeta` VALUES("148", "4", "billing_email", "justestsaja@gmail.com");
INSERT INTO `lt_usermeta` VALUES("149", "4", "billing_phone", "+6282114441212");
INSERT INTO `lt_usermeta` VALUES("150", "4", "shipping_method", "");
INSERT INTO `lt_usermeta` VALUES("151", "4", "wc_last_active", "1589760000");
INSERT INTO `lt_usermeta` VALUES("158", "2", "_woocommerce_tracks_anon_id", "woo:0PoZPVk1CfaUBlWSNdPuCYOK");
INSERT INTO `lt_usermeta` VALUES("159", "5", "nickname", "pakar.test");
INSERT INTO `lt_usermeta` VALUES("160", "5", "first_name", "PAKAR");
INSERT INTO `lt_usermeta` VALUES("161", "5", "last_name", "Test");
INSERT INTO `lt_usermeta` VALUES("162", "5", "description", "");
INSERT INTO `lt_usermeta` VALUES("163", "5", "rich_editing", "true");
INSERT INTO `lt_usermeta` VALUES("164", "5", "syntax_highlighting", "true");
INSERT INTO `lt_usermeta` VALUES("165", "5", "comment_shortcuts", "false");
INSERT INTO `lt_usermeta` VALUES("166", "5", "admin_color", "fresh");
INSERT INTO `lt_usermeta` VALUES("167", "5", "use_ssl", "0");
INSERT INTO `lt_usermeta` VALUES("168", "5", "show_admin_bar_front", "true");
INSERT INTO `lt_usermeta` VALUES("169", "5", "locale", "");
INSERT INTO `lt_usermeta` VALUES("170", "5", "lt_capabilities", "a:1:{s:8:\"customer\";b:1;}");
INSERT INTO `lt_usermeta` VALUES("171", "5", "lt_user_level", "0");
INSERT INTO `lt_usermeta` VALUES("173", "5", "last_update", "1589963919");
INSERT INTO `lt_usermeta` VALUES("174", "5", "billing_first_name", "PAKAR");
INSERT INTO `lt_usermeta` VALUES("175", "5", "billing_last_name", "Test");
INSERT INTO `lt_usermeta` VALUES("176", "5", "billing_company", "PAKAR");
INSERT INTO `lt_usermeta` VALUES("177", "5", "billing_address_1", "PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan");
INSERT INTO `lt_usermeta` VALUES("178", "5", "billing_city", "Jakarta Barat");
INSERT INTO `lt_usermeta` VALUES("179", "5", "billing_state", "JK");
INSERT INTO `lt_usermeta` VALUES("180", "5", "billing_postcode", "11440");
INSERT INTO `lt_usermeta` VALUES("181", "5", "billing_country", "ID");
INSERT INTO `lt_usermeta` VALUES("182", "5", "billing_email", "st@pakar.co");
INSERT INTO `lt_usermeta` VALUES("183", "5", "billing_phone", "0215672564");
INSERT INTO `lt_usermeta` VALUES("184", "5", "shipping_method", "");
INSERT INTO `lt_usermeta` VALUES("185", "5", "wc_last_active", "1589932800");
INSERT INTO `lt_usermeta` VALUES("187", "5", "_pum_dismissed_alerts", "a:0:{}");
INSERT INTO `lt_usermeta` VALUES("190", "6", "nickname", "tes.tio");
INSERT INTO `lt_usermeta` VALUES("191", "6", "first_name", "Tes");
INSERT INTO `lt_usermeta` VALUES("192", "6", "last_name", "Tio");
INSERT INTO `lt_usermeta` VALUES("193", "6", "description", "");
INSERT INTO `lt_usermeta` VALUES("194", "6", "rich_editing", "true");
INSERT INTO `lt_usermeta` VALUES("195", "6", "syntax_highlighting", "true");
INSERT INTO `lt_usermeta` VALUES("196", "6", "comment_shortcuts", "false");
INSERT INTO `lt_usermeta` VALUES("197", "6", "admin_color", "fresh");
INSERT INTO `lt_usermeta` VALUES("198", "6", "use_ssl", "0");
INSERT INTO `lt_usermeta` VALUES("199", "6", "show_admin_bar_front", "true");
INSERT INTO `lt_usermeta` VALUES("200", "6", "locale", "");
INSERT INTO `lt_usermeta` VALUES("201", "6", "lt_capabilities", "a:1:{s:8:\"customer\";b:1;}");
INSERT INTO `lt_usermeta` VALUES("202", "6", "lt_user_level", "0");
INSERT INTO `lt_usermeta` VALUES("203", "6", "session_tokens", "a:1:{s:64:\"06f4cd221769033cd0f16f0d6324b97c1276c12dd017a3af574d676740d6802d\";a:4:{s:10:\"expiration\";i:1591176522;s:2:\"ip\";s:15:\"114.124.146.239\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36\";s:5:\"login\";i:1589966922;}}");
INSERT INTO `lt_usermeta` VALUES("204", "6", "last_update", "1589969904");
INSERT INTO `lt_usermeta` VALUES("205", "6", "billing_first_name", "Tes");
INSERT INTO `lt_usermeta` VALUES("206", "6", "billing_last_name", "Tio");
INSERT INTO `lt_usermeta` VALUES("207", "6", "billing_address_1", "Jalan Jalan");
INSERT INTO `lt_usermeta` VALUES("208", "6", "billing_address_2", "Jakarta");
INSERT INTO `lt_usermeta` VALUES("209", "6", "billing_city", "Jakarta Barat");
INSERT INTO `lt_usermeta` VALUES("210", "6", "billing_state", "JK");
INSERT INTO `lt_usermeta` VALUES("211", "6", "billing_postcode", "14000");
INSERT INTO `lt_usermeta` VALUES("212", "6", "billing_country", "ID");
INSERT INTO `lt_usermeta` VALUES("213", "6", "billing_email", "tio@gmail.com");
INSERT INTO `lt_usermeta` VALUES("214", "6", "billing_phone", "+6282114441234");
INSERT INTO `lt_usermeta` VALUES("216", "6", "wc_last_active", "1589932800");
INSERT INTO `lt_usermeta` VALUES("225", "6", "shipping_method", "");
INSERT INTO `lt_usermeta` VALUES("227", "7", "nickname", "tessaja.last");
INSERT INTO `lt_usermeta` VALUES("228", "7", "first_name", "Tessaja");
INSERT INTO `lt_usermeta` VALUES("229", "7", "last_name", "Last");
INSERT INTO `lt_usermeta` VALUES("230", "7", "description", "");
INSERT INTO `lt_usermeta` VALUES("231", "7", "rich_editing", "true");
INSERT INTO `lt_usermeta` VALUES("232", "7", "syntax_highlighting", "true");
INSERT INTO `lt_usermeta` VALUES("233", "7", "comment_shortcuts", "false");
INSERT INTO `lt_usermeta` VALUES("234", "7", "admin_color", "fresh");
INSERT INTO `lt_usermeta` VALUES("235", "7", "use_ssl", "0");
INSERT INTO `lt_usermeta` VALUES("236", "7", "show_admin_bar_front", "true");
INSERT INTO `lt_usermeta` VALUES("237", "7", "locale", "");
INSERT INTO `lt_usermeta` VALUES("238", "7", "lt_capabilities", "a:1:{s:8:\"customer\";b:1;}");
INSERT INTO `lt_usermeta` VALUES("239", "7", "lt_user_level", "0");
INSERT INTO `lt_usermeta` VALUES("240", "7", "session_tokens", "a:1:{s:64:\"aa5effec783759a99a58343e8050f6b265681c34b51f3cb4e33db00b2bcda676\";a:4:{s:10:\"expiration\";i:1591184760;s:2:\"ip\";s:15:\"114.124.146.239\";s:2:\"ua\";s:187:\"Mozilla/5.0 (Linux; U; Android 8.1.0; id-id; Redmi 6 Build/O11019) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/71.0.3578.141 Mobile Safari/537.36 XiaoMi/MiuiBrowser/11.4.3-g\";s:5:\"login\";i:1589975160;}}");
INSERT INTO `lt_usermeta` VALUES("241", "7", "last_update", "1589975161");
INSERT INTO `lt_usermeta` VALUES("242", "7", "billing_first_name", "Tessaja");
INSERT INTO `lt_usermeta` VALUES("243", "7", "billing_last_name", "Last");
INSERT INTO `lt_usermeta` VALUES("244", "7", "billing_address_1", "Jakarta");
INSERT INTO `lt_usermeta` VALUES("245", "7", "billing_city", "Jakarta");
INSERT INTO `lt_usermeta` VALUES("246", "7", "billing_state", "JK");
INSERT INTO `lt_usermeta` VALUES("247", "7", "billing_postcode", "14000");
INSERT INTO `lt_usermeta` VALUES("248", "7", "billing_country", "ID");
INSERT INTO `lt_usermeta` VALUES("249", "7", "billing_email", "tessa@gmail.com");
INSERT INTO `lt_usermeta` VALUES("250", "7", "billing_phone", "021123456");
INSERT INTO `lt_usermeta` VALUES("251", "7", "shipping_method", "");
INSERT INTO `lt_usermeta` VALUES("252", "7", "wc_last_active", "1589932800");
INSERT INTO `lt_usermeta` VALUES("254", "8", "nickname", "sulistio.test");
INSERT INTO `lt_usermeta` VALUES("255", "8", "first_name", "Sulistio");
INSERT INTO `lt_usermeta` VALUES("256", "8", "last_name", "Test");
INSERT INTO `lt_usermeta` VALUES("257", "8", "description", "");
INSERT INTO `lt_usermeta` VALUES("258", "8", "rich_editing", "true");
INSERT INTO `lt_usermeta` VALUES("259", "8", "syntax_highlighting", "true");
INSERT INTO `lt_usermeta` VALUES("260", "8", "comment_shortcuts", "false");
INSERT INTO `lt_usermeta` VALUES("261", "8", "admin_color", "fresh");
INSERT INTO `lt_usermeta` VALUES("262", "8", "use_ssl", "0");
INSERT INTO `lt_usermeta` VALUES("263", "8", "show_admin_bar_front", "true");
INSERT INTO `lt_usermeta` VALUES("264", "8", "locale", "");
INSERT INTO `lt_usermeta` VALUES("265", "8", "lt_capabilities", "a:1:{s:8:\"customer\";b:1;}");
INSERT INTO `lt_usermeta` VALUES("266", "8", "lt_user_level", "0");
INSERT INTO `lt_usermeta` VALUES("268", "8", "last_update", "1589976840");
INSERT INTO `lt_usermeta` VALUES("269", "8", "billing_first_name", "Sulistio");
INSERT INTO `lt_usermeta` VALUES("270", "8", "billing_last_name", "Test");
INSERT INTO `lt_usermeta` VALUES("271", "8", "billing_company", "PAKAR");
INSERT INTO `lt_usermeta` VALUES("272", "8", "billing_address_1", "PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan");
INSERT INTO `lt_usermeta` VALUES("273", "8", "billing_city", "Jakarta Barat");
INSERT INTO `lt_usermeta` VALUES("274", "8", "billing_state", "JK");
INSERT INTO `lt_usermeta` VALUES("275", "8", "billing_postcode", "11440");
INSERT INTO `lt_usermeta` VALUES("276", "8", "billing_country", "ID");
INSERT INTO `lt_usermeta` VALUES("277", "8", "billing_email", "st@pakar.com");
INSERT INTO `lt_usermeta` VALUES("278", "8", "billing_phone", "0215672564");
INSERT INTO `lt_usermeta` VALUES("279", "8", "shipping_method", "");
INSERT INTO `lt_usermeta` VALUES("280", "8", "wc_last_active", "1589932800");
INSERT INTO `lt_usermeta` VALUES("282", "8", "_pum_dismissed_alerts", "a:0:{}");
INSERT INTO `lt_usermeta` VALUES("284", "1", "essential_adons_elementor_review", "1");
INSERT INTO `lt_usermeta` VALUES("285", "1", "closedpostboxes_dashboard", "a:1:{i:0;s:20:\"e-dashboard-overview\";}");
INSERT INTO `lt_usermeta` VALUES("286", "1", "metaboxhidden_dashboard", "a:6:{i:0;s:17:\"dashboard_php_nag\";i:1;s:20:\"e-dashboard-overview\";i:2;s:21:\"dashboard_site_health\";i:3;s:19:\"dashboard_right_now\";i:4;s:17:\"wpdev_feed_widget\";i:5;s:21:\"dashboard_quick_press\";}");
INSERT INTO `lt_usermeta` VALUES("290", "1", "shipping_method", "");
INSERT INTO `lt_usermeta` VALUES("292", "1", "_woocommerce_persistent_cart_1", "a:1:{s:4:\"cart\";a:1:{s:32:\"74db120f0a8e5646ef5a30154e9f6deb\";a:6:{s:3:\"key\";s:32:\"74db120f0a8e5646ef5a30154e9f6deb\";s:10:\"product_id\";i:228;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";}}}");
INSERT INTO `lt_usermeta` VALUES("294", "2", "_woocommerce_persistent_cart_1", "a:1:{s:4:\"cart\";a:1:{s:32:\"74db120f0a8e5646ef5a30154e9f6deb\";a:6:{s:3:\"key\";s:32:\"74db120f0a8e5646ef5a30154e9f6deb\";s:10:\"product_id\";i:228;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";}}}");
INSERT INTO `lt_usermeta` VALUES("295", "1", "_order_count", "2");

/* INSERT TABLE DATA: lt_users */
INSERT INTO `lt_users` VALUES("1", "pakar", "$P$BAus9a4ikNN5gG887OOEvrmPZzJ8eM0", "pakar", "st@pakar.co.id", "http://meetingmastery.lightrees.com", "2020-04-29 05:25:57", "", "0", "pakar");
INSERT INTO `lt_users` VALUES("2", "admin", "$P$B27oWXoRVgZMrDhpEKymBq4iFzWybV0", "admin", "admin@lt.tmp.pakar.co.id", "", "2020-05-11 06:13:27", "", "0", "Admin");
INSERT INTO `lt_users` VALUES("3", "pakar.tes", "$P$Bnd3cgB8ZF6N/Sp0IXd0yuJhB7H8ac1", "pakar-tes", "yapicaw597@beiop.com", "", "2020-05-18 03:23:05", "", "0", "PAKAR Tes");
INSERT INTO `lt_users` VALUES("4", "sulistio.tes", "$P$BBONLo13g4QHF/XUWZ3s7FzpwcvfZt/", "sulistio-tes", "justestsaja@gmail.com", "", "2020-05-18 05:25:57", "", "0", "Sulistio Tes");
INSERT INTO `lt_users` VALUES("5", "pakar.test", "$P$BaXsuxnuutR0qb7UGwiihWvIqZQzt.1", "pakar-test", "st@pakar.co", "", "2020-05-20 08:38:36", "", "0", "PAKAR Test");
INSERT INTO `lt_users` VALUES("6", "tes.tio", "$P$BzVLXJWAOPNKtM2rIsQsn1KUhwvAIN.", "tes-tio", "tio@gmail.com", "", "2020-05-20 09:28:41", "", "0", "Tes Tio");
INSERT INTO `lt_users` VALUES("7", "tessaja.last", "$P$BXV6vWBCkhXYCde7oJk290w9LQFFTl.", "tessaja-last", "tessa@gmail.com", "", "2020-05-20 11:45:57", "", "0", "Tessaja Last");
INSERT INTO `lt_users` VALUES("8", "sulistio.test", "$P$BJOdKBvaKuBwBF4cnSV3tL/VSCdh6n/", "sulistio-test", "st@pakar.com", "", "2020-05-20 12:13:59", "", "0", "Sulistio Test");

/* INSERT TABLE DATA: lt_wc_admin_note_actions */
INSERT INTO `lt_wc_admin_note_actions` VALUES("1", "1", "learn-more", "Learn more", "https://woocommerce.wordpress.com/", "actioned", "0");
INSERT INTO `lt_wc_admin_note_actions` VALUES("2", "2", "open-customizer", "Open Customizer", "customize.php", "actioned", "0");
INSERT INTO `lt_wc_admin_note_actions` VALUES("3", "3", "connect", "Connect", "?page=wc-addons&section=helper", "unactioned", "0");
INSERT INTO `lt_wc_admin_note_actions` VALUES("4", "4", "continue-profiler", "Continue Store Setup", "http://meetingmastery.lightrees.com/wp-admin/admin.php?page=wc-admin&enable_onboarding=1", "unactioned", "1");
INSERT INTO `lt_wc_admin_note_actions` VALUES("5", "4", "skip-profiler", "Skip Setup", "http://meetingmastery.lightrees.com/wp-admin/admin.php?page=wc-admin&reset_profiler=0", "actioned", "0");
INSERT INTO `lt_wc_admin_note_actions` VALUES("6", "5", "learn-more", "Learn more", "https://docs.woocommerce.com/document/managing-orders/", "actioned", "0");
INSERT INTO `lt_wc_admin_note_actions` VALUES("7", "6", "learn-more", "Learn more", "https://woocommerce.com/mobile/", "actioned", "0");
INSERT INTO `lt_wc_admin_note_actions` VALUES("8", "7", "yes-please", "Yes please!", "https://woocommerce.us8.list-manage.com/subscribe/post?u=2c1434dc56f9506bf3c3ecd21&amp;id=13860df971&amp;SIGNUPPAGE=plugin", "actioned", "0");
INSERT INTO `lt_wc_admin_note_actions` VALUES("9", "8", "share-feedback", "Review", "https://wordpress.org/support/plugin/woocommerce-admin/reviews/?rate=5#new-post", "actioned", "0");
INSERT INTO `lt_wc_admin_note_actions` VALUES("10", "9", "learn-more", "Learn more", "https://woocommerce.com/products/facebook/", "unactioned", "0");
INSERT INTO `lt_wc_admin_note_actions` VALUES("11", "9", "install-now", "Install now", "", "unactioned", "1");
INSERT INTO `lt_wc_admin_note_actions` VALUES("12", "10", "view-report", "View report", "?page=wc-admin&path=/analytics/revenue&period=custom&compare=previous_year&after=2020-05-20&before=2020-05-20", "actioned", "0");
INSERT INTO `lt_wc_admin_note_actions` VALUES("13", "11", "tracking-dismiss", "Dismiss", "", "actioned", "0");
INSERT INTO `lt_wc_admin_note_actions` VALUES("14", "11", "tracking-opt-in", "Activate usage tracking", "", "actioned", "1");

/* INSERT TABLE DATA: lt_wc_admin_notes */
INSERT INTO `lt_wc_admin_notes` VALUES("1", "wc-admin-welcome-note", "info", "en_US", "New feature(s)", "Welcome to the new WooCommerce experience! In this new release you\'ll be able to have a glimpse of how your store is doing in the Dashboard, manage important aspects of your business (such as managing orders, stock, reviews) from anywhere in the interface, dive into your store data with a completely new Analytics section and more!", "info", "{}", "unactioned", "woocommerce-admin", "2020-05-14 06:28:08", NULL, "0");
INSERT INTO `lt_wc_admin_notes` VALUES("2", "wc-admin-store-notice-setting-moved", "info", "en_US", "Looking for the Store Notice setting?", "It can now be found in the Customizer.", "info", "{}", "unactioned", "woocommerce-admin", "2020-05-14 06:28:08", NULL, "0");
INSERT INTO `lt_wc_admin_notes` VALUES("3", "wc-admin-wc-helper-connection", "info", "en_US", "Connect to WooCommerce.com", "Connect to get important product notifications and updates.", "info", "{}", "unactioned", "woocommerce-admin", "2020-05-14 06:28:09", NULL, "0");
INSERT INTO `lt_wc_admin_notes` VALUES("4", "wc-admin-onboarding-profiler-reminder", "update", "en_US", "Welcome to WooCommerce! Set up your store and start selling", "We\'re here to help you going through the most important steps to get your store up and running.", "info", "{}", "actioned", "woocommerce-admin", "2020-05-13 16:28:14", NULL, "0");
INSERT INTO `lt_wc_admin_notes` VALUES("5", "wc-admin-orders-milestone", "info", "en_US", "First order", "Congratulations on getting your first order from a customer! Learn how to manage your orders.", "trophy", "{}", "unactioned", "woocommerce-admin", "2020-05-14 08:28:22", NULL, "0");
INSERT INTO `lt_wc_admin_notes` VALUES("6", "wc-admin-mobile-app", "info", "en_US", "Install Woo mobile app", "Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics — wherever you are.", "phone", "{}", "unactioned", "woocommerce-admin", "2020-05-16 08:57:04", NULL, "0");
INSERT INTO `lt_wc_admin_notes` VALUES("7", "wc-admin-onboarding-email-marketing", "info", "en_US", "Tips, product updates, and inspiration", "We\'re here for you — get tips, product updates, and inspiration straight to your mailbox.", "mail", "{}", "unactioned", "woocommerce-admin", "2020-05-16 08:57:04", NULL, "0");
INSERT INTO `lt_wc_admin_notes` VALUES("8", "wc-admin-store-notice-giving-feedback", "info", "en_US", "Review your experience", "If you like WooCommerce Admin please leave us a 5 star rating. A huge thanks in advance!", "info", "{}", "unactioned", "woocommerce-admin", "2020-05-17 06:40:19", NULL, "0");
INSERT INTO `lt_wc_admin_notes` VALUES("9", "wc-admin-facebook-extension", "info", "en_US", "Market on Facebook", "Grow your business by targeting the right people and driving sales with Facebook. You can install this free extension now.", "thumbs-up", "{}", "actioned", "woocommerce-admin", "2020-05-17 06:40:19", NULL, "0");
INSERT INTO `lt_wc_admin_notes` VALUES("10", "wc-admin-new-sales-record", "info", "en_US", "New sales record!", "Woohoo, May 20th was your record day for sales! Net Sales was Rp 1.750.000 beating the previous record of Rp 1.497.000 set on May 14th.", "trophy", "{\"old_record_date\":\"2020-05-14\",\"old_record_amt\":1497000,\"new_record_date\":\"2020-05-20\",\"new_record_amt\":1750000}", "unactioned", "woocommerce-admin", "2020-05-21 10:01:55", NULL, "0");
INSERT INTO `lt_wc_admin_notes` VALUES("11", "wc-admin-usage-tracking-opt-in", "info", "en_US", "Help WooCommerce improve with usage tracking", "Gathering usage data allows us to improve WooCommerce. Your store will be considered as we evaluate new features, judge the quality of an update, or determine if an improvement makes sense. You can always visit the <a href=\"https://meetingmastery.lightrees.com/wp-admin/admin.php?page=wc-settings&#038;tab=advanced&#038;section=woocommerce_com\" target=\"_blank\">Settings</a> and choose to stop sharing data. <a href=\"https://woocommerce.com/usage-tracking\" target=\"_blank\">Read more</a> about what data we collect.", "info", "{}", "unactioned", "woocommerce-admin", "2020-05-21 10:01:55", NULL, "0");

/* INSERT TABLE DATA: lt_wc_category_lookup */
INSERT INTO `lt_wc_category_lookup` VALUES("16", "16");

/* INSERT TABLE DATA: lt_wc_customer_lookup */
INSERT INTO `lt_wc_customer_lookup` VALUES("1", "1", "pakar", "Sulistio", "Test", "st@pakar.co.id", "2020-05-26 00:00:00", "2020-04-29 05:25:57", "ID", "11440", "Jakarta Barat", "JK");
INSERT INTO `lt_wc_customer_lookup` VALUES("2", "3", "pakar.tes", "PAKAR", "Tes", "yapicaw597@beiop.com", "2020-05-18 00:00:00", "2020-05-18 03:23:05", "ID", "11440", "Jakarta Barat", "JK");
INSERT INTO `lt_wc_customer_lookup` VALUES("3", "4", "sulistio.tes", "Sulistio", "Tes", "justestsaja@gmail.com", "2020-05-18 00:00:00", "2020-05-18 05:25:57", "ID", "16121", "Bogor", "JB");
INSERT INTO `lt_wc_customer_lookup` VALUES("4", "5", "pakar.test", "PAKAR", "Test", "st@pakar.co", "2020-05-20 00:00:00", "2020-05-20 08:38:36", "ID", "11440", "Jakarta Barat", "JK");
INSERT INTO `lt_wc_customer_lookup` VALUES("5", "6", "tes.tio", "Tes", "Tio", "tio@gmail.com", "2020-05-20 00:00:00", "2020-05-20 09:28:41", "ID", "14000", "Jakarta Barat", "JK");
INSERT INTO `lt_wc_customer_lookup` VALUES("6", "7", "tessaja.last", "Tessaja", "Last", "tessa@gmail.com", "2020-05-20 00:00:00", "2020-05-20 11:45:57", "ID", "14000", "Jakarta", "JK");
INSERT INTO `lt_wc_customer_lookup` VALUES("7", "8", "sulistio.test", "Sulistio", "Test", "st@pakar.com", "2020-05-20 00:00:00", "2020-05-20 12:13:59", "ID", "11440", "Jakarta Barat", "JK");

/* INSERT TABLE DATA: lt_wc_order_product_lookup */
INSERT INTO `lt_wc_order_product_lookup` VALUES("1", "177", "170", "0", "1", "2020-05-14 15:13:11", "1", "499000", "499000", "0", "0", "0", "0");
INSERT INTO `lt_wc_order_product_lookup` VALUES("3", "179", "170", "0", "1", "2020-05-14 15:16:33", "1", "499000", "499000", "0", "0", "0", "0");
INSERT INTO `lt_wc_order_product_lookup` VALUES("5", "184", "170", "0", "1", "2020-05-14 15:55:53", "1", "499000", "499000", "0", "0", "0", "0");
INSERT INTO `lt_wc_order_product_lookup` VALUES("7", "232", "228", "0", "2", "2020-05-18 10:23:06", "1", "250000", "250000", "0", "0", "0", "0");
INSERT INTO `lt_wc_order_product_lookup` VALUES("8", "233", "228", "0", "2", "2020-05-18 10:29:22", "1", "250000", "250000", "0", "0", "0", "0");
INSERT INTO `lt_wc_order_product_lookup` VALUES("9", "239", "228", "0", "1", "2020-05-18 11:10:35", "1", "250000", "250000", "0", "0", "0", "0");
INSERT INTO `lt_wc_order_product_lookup` VALUES("10", "240", "228", "0", "1", "2020-05-18 11:32:11", "1", "250000", "250000", "0", "0", "0", "0");
INSERT INTO `lt_wc_order_product_lookup` VALUES("11", "248", "228", "0", "1", "2020-05-18 12:14:25", "1", "250000", "250000", "0", "0", "0", "0");
INSERT INTO `lt_wc_order_product_lookup` VALUES("12", "249", "228", "0", "3", "2020-05-18 12:25:57", "1", "250000", "250000", "0", "0", "0", "0");
INSERT INTO `lt_wc_order_product_lookup` VALUES("13", "261", "228", "0", "4", "2020-05-20 15:38:40", "1", "250000", "250000", "0", "0", "0", "0");
INSERT INTO `lt_wc_order_product_lookup` VALUES("14", "262", "228", "0", "5", "2020-05-20 16:28:42", "1", "250000", "250000", "0", "0", "0", "0");
INSERT INTO `lt_wc_order_product_lookup` VALUES("15", "263", "228", "0", "5", "2020-05-20 16:37:18", "1", "250000", "250000", "0", "0", "0", "0");
INSERT INTO `lt_wc_order_product_lookup` VALUES("16", "264", "228", "0", "5", "2020-05-20 16:44:19", "1", "250000", "250000", "0", "0", "0", "0");
INSERT INTO `lt_wc_order_product_lookup` VALUES("17", "265", "228", "0", "5", "2020-05-20 17:18:24", "1", "250000", "250000", "0", "0", "0", "0");
INSERT INTO `lt_wc_order_product_lookup` VALUES("18", "266", "228", "0", "6", "2020-05-20 18:46:01", "1", "250000", "250000", "0", "0", "0", "0");
INSERT INTO `lt_wc_order_product_lookup` VALUES("19", "267", "228", "0", "7", "2020-05-20 19:14:00", "1", "250000", "250000", "0", "0", "0", "0");
INSERT INTO `lt_wc_order_product_lookup` VALUES("20", "272", "228", "0", "1", "2020-05-22 09:50:43", "1", "250000", "250000", "0", "0", "0", "0");

/* INSERT TABLE DATA: lt_wc_order_stats */
INSERT INTO `lt_wc_order_stats` VALUES("177", "0", "2020-05-14 15:13:11", "2020-05-14 08:13:11", "1", "499000", "0", "0", "499000", "0", "wc-trash", "1");
INSERT INTO `lt_wc_order_stats` VALUES("179", "0", "2020-05-14 15:16:33", "2020-05-14 08:16:33", "1", "499000", "0", "0", "499000", "0", "wc-trash", "1");
INSERT INTO `lt_wc_order_stats` VALUES("184", "0", "2020-05-14 15:55:53", "2020-05-14 08:55:53", "1", "499000", "0", "0", "499000", "0", "wc-trash", "1");
INSERT INTO `lt_wc_order_stats` VALUES("232", "0", "2020-05-18 10:23:06", "2020-05-18 03:23:06", "1", "250000", "0", "0", "250000", "0", "wc-trash", "2");
INSERT INTO `lt_wc_order_stats` VALUES("233", "0", "2020-05-18 10:29:22", "2020-05-18 03:29:22", "1", "250000", "0", "0", "250000", "0", "wc-trash", "2");
INSERT INTO `lt_wc_order_stats` VALUES("239", "0", "2020-05-18 11:10:35", "2020-05-18 04:10:35", "1", "250000", "0", "0", "250000", "0", "wc-trash", "1");
INSERT INTO `lt_wc_order_stats` VALUES("240", "0", "2020-05-18 11:32:11", "2020-05-18 04:32:11", "1", "250000", "0", "0", "250000", "0", "wc-trash", "1");
INSERT INTO `lt_wc_order_stats` VALUES("248", "0", "2020-05-18 12:14:25", "2020-05-18 05:14:25", "1", "250000", "0", "0", "250000", "0", "wc-cancelled", "1");
INSERT INTO `lt_wc_order_stats` VALUES("249", "0", "2020-05-18 12:25:57", "2020-05-18 05:25:57", "1", "250000", "0", "0", "250000", "0", "wc-cancelled", "3");
INSERT INTO `lt_wc_order_stats` VALUES("261", "0", "2020-05-20 15:38:40", "2020-05-20 08:38:40", "1", "250000", "0", "0", "250000", "0", "wc-cancelled", "4");
INSERT INTO `lt_wc_order_stats` VALUES("262", "0", "2020-05-20 16:28:42", "2020-05-20 09:28:42", "1", "250000", "0", "0", "250000", "1", "wc-cancelled", "5");
INSERT INTO `lt_wc_order_stats` VALUES("263", "0", "2020-05-20 16:37:18", "2020-05-20 09:37:18", "1", "250000", "0", "0", "250000", "1", "wc-cancelled", "5");
INSERT INTO `lt_wc_order_stats` VALUES("264", "0", "2020-05-20 16:44:19", "2020-05-20 09:44:19", "1", "250000", "0", "0", "250000", "1", "wc-cancelled", "5");
INSERT INTO `lt_wc_order_stats` VALUES("265", "0", "2020-05-20 17:18:24", "2020-05-20 10:18:24", "1", "250000", "0", "0", "250000", "0", "wc-cancelled", "5");
INSERT INTO `lt_wc_order_stats` VALUES("266", "0", "2020-05-20 18:46:01", "2020-05-20 11:46:01", "1", "250000", "0", "0", "250000", "0", "wc-cancelled", "6");
INSERT INTO `lt_wc_order_stats` VALUES("267", "0", "2020-05-20 19:14:00", "2020-05-20 12:14:00", "1", "250000", "0", "0", "250000", "0", "wc-cancelled", "7");
INSERT INTO `lt_wc_order_stats` VALUES("272", "0", "2020-05-22 09:50:43", "2020-05-22 02:50:43", "1", "250000", "0", "0", "250000", "0", "wc-cancelled", "1");

/* INSERT TABLE DATA: lt_wc_product_meta_lookup */
INSERT INTO `lt_wc_product_meta_lookup` VALUES("170", "", "1", "0", "499000.0000", "499000.0000", "1", NULL, "instock", "0", "0.00", "0", "taxable", "");
INSERT INTO `lt_wc_product_meta_lookup` VALUES("228", "", "1", "0", "250000.0000", "250000.0000", "1", NULL, "instock", "0", "0.00", "7", "taxable", "");

/* INSERT TABLE DATA: lt_wc_tax_rate_classes */
INSERT INTO `lt_wc_tax_rate_classes` VALUES("1", "Reduced rate", "reduced-rate");
INSERT INTO `lt_wc_tax_rate_classes` VALUES("2", "Zero rate", "zero-rate");

/* INSERT TABLE DATA: lt_woocommerce_order_itemmeta */
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("1", "1", "_product_id", "170");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("2", "1", "_variation_id", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("3", "1", "_qty", "1");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("4", "1", "_tax_class", "");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("5", "1", "_line_subtotal", "499000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("6", "1", "_line_subtotal_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("7", "1", "_line_total", "499000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("8", "1", "_line_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("9", "1", "_line_tax_data", "a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("10", "2", "method_id", "free_shipping");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("11", "2", "instance_id", "1");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("12", "2", "cost", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("13", "2", "total_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("14", "2", "taxes", "a:1:{s:5:\"total\";a:0:{}}");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("15", "2", "Items", "Meeting Series &times; 1");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("16", "3", "_product_id", "170");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("17", "3", "_variation_id", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("18", "3", "_qty", "1");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("19", "3", "_tax_class", "");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("20", "3", "_line_subtotal", "499000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("21", "3", "_line_subtotal_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("22", "3", "_line_total", "499000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("23", "3", "_line_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("24", "3", "_line_tax_data", "a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("25", "4", "method_id", "free_shipping");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("26", "4", "instance_id", "1");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("27", "4", "cost", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("28", "4", "total_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("29", "4", "taxes", "a:1:{s:5:\"total\";a:0:{}}");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("30", "4", "Items", "Meeting Series &times; 1");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("31", "5", "_product_id", "170");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("32", "5", "_variation_id", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("33", "5", "_qty", "1");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("34", "5", "_tax_class", "");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("35", "5", "_line_subtotal", "499000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("36", "5", "_line_subtotal_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("37", "5", "_line_total", "499000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("38", "5", "_line_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("39", "5", "_line_tax_data", "a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("40", "6", "method_id", "free_shipping");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("41", "6", "instance_id", "1");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("42", "6", "cost", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("43", "6", "total_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("44", "6", "taxes", "a:1:{s:5:\"total\";a:0:{}}");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("45", "6", "Items", "Meeting Series &times; 1");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("46", "7", "_product_id", "228");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("47", "7", "_variation_id", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("48", "7", "_qty", "1");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("49", "7", "_tax_class", "");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("50", "7", "_line_subtotal", "250000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("51", "7", "_line_subtotal_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("52", "7", "_line_total", "250000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("53", "7", "_line_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("54", "7", "_line_tax_data", "a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("55", "8", "_product_id", "228");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("56", "8", "_variation_id", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("57", "8", "_qty", "1");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("58", "8", "_tax_class", "");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("59", "8", "_line_subtotal", "250000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("60", "8", "_line_subtotal_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("61", "8", "_line_total", "250000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("62", "8", "_line_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("63", "8", "_line_tax_data", "a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("64", "9", "_product_id", "228");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("65", "9", "_variation_id", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("66", "9", "_qty", "1");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("67", "9", "_tax_class", "");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("68", "9", "_line_subtotal", "250000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("69", "9", "_line_subtotal_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("70", "9", "_line_total", "250000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("71", "9", "_line_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("72", "9", "_line_tax_data", "a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("73", "10", "_product_id", "228");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("74", "10", "_variation_id", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("75", "10", "_qty", "1");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("76", "10", "_tax_class", "");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("77", "10", "_line_subtotal", "250000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("78", "10", "_line_subtotal_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("79", "10", "_line_total", "250000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("80", "10", "_line_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("81", "10", "_line_tax_data", "a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("82", "11", "_product_id", "228");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("83", "11", "_variation_id", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("84", "11", "_qty", "1");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("85", "11", "_tax_class", "");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("86", "11", "_line_subtotal", "250000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("87", "11", "_line_subtotal_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("88", "11", "_line_total", "250000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("89", "11", "_line_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("90", "11", "_line_tax_data", "a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("91", "12", "_product_id", "228");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("92", "12", "_variation_id", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("93", "12", "_qty", "1");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("94", "12", "_tax_class", "");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("95", "12", "_line_subtotal", "250000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("96", "12", "_line_subtotal_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("97", "12", "_line_total", "250000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("98", "12", "_line_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("99", "12", "_line_tax_data", "a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("100", "13", "_product_id", "228");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("101", "13", "_variation_id", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("102", "13", "_qty", "1");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("103", "13", "_tax_class", "");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("104", "13", "_line_subtotal", "250000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("105", "13", "_line_subtotal_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("106", "13", "_line_total", "250000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("107", "13", "_line_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("108", "13", "_line_tax_data", "a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("109", "14", "_product_id", "228");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("110", "14", "_variation_id", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("111", "14", "_qty", "1");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("112", "14", "_tax_class", "");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("113", "14", "_line_subtotal", "250000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("114", "14", "_line_subtotal_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("115", "14", "_line_total", "250000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("116", "14", "_line_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("117", "14", "_line_tax_data", "a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("118", "15", "_product_id", "228");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("119", "15", "_variation_id", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("120", "15", "_qty", "1");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("121", "15", "_tax_class", "");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("122", "15", "_line_subtotal", "250000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("123", "15", "_line_subtotal_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("124", "15", "_line_total", "250000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("125", "15", "_line_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("126", "15", "_line_tax_data", "a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("127", "16", "_product_id", "228");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("128", "16", "_variation_id", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("129", "16", "_qty", "1");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("130", "16", "_tax_class", "");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("131", "16", "_line_subtotal", "250000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("132", "16", "_line_subtotal_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("133", "16", "_line_total", "250000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("134", "16", "_line_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("135", "16", "_line_tax_data", "a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("136", "17", "_product_id", "228");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("137", "17", "_variation_id", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("138", "17", "_qty", "1");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("139", "17", "_tax_class", "");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("140", "17", "_line_subtotal", "250000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("141", "17", "_line_subtotal_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("142", "17", "_line_total", "250000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("143", "17", "_line_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("144", "17", "_line_tax_data", "a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("145", "18", "_product_id", "228");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("146", "18", "_variation_id", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("147", "18", "_qty", "1");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("148", "18", "_tax_class", "");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("149", "18", "_line_subtotal", "250000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("150", "18", "_line_subtotal_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("151", "18", "_line_total", "250000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("152", "18", "_line_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("153", "18", "_line_tax_data", "a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("154", "19", "_product_id", "228");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("155", "19", "_variation_id", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("156", "19", "_qty", "1");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("157", "19", "_tax_class", "");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("158", "19", "_line_subtotal", "250000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("159", "19", "_line_subtotal_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("160", "19", "_line_total", "250000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("161", "19", "_line_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("162", "19", "_line_tax_data", "a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("163", "20", "_product_id", "228");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("164", "20", "_variation_id", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("165", "20", "_qty", "1");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("166", "20", "_tax_class", "");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("167", "20", "_line_subtotal", "250000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("168", "20", "_line_subtotal_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("169", "20", "_line_total", "250000");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("170", "20", "_line_tax", "0");
INSERT INTO `lt_woocommerce_order_itemmeta` VALUES("171", "20", "_line_tax_data", "a:2:{s:5:\"total\";a:0:{}s:8:\"subtotal\";a:0:{}}");

/* INSERT TABLE DATA: lt_woocommerce_order_items */
INSERT INTO `lt_woocommerce_order_items` VALUES("1", "Meeting Series", "line_item", "177");
INSERT INTO `lt_woocommerce_order_items` VALUES("2", "Free shipping", "shipping", "177");
INSERT INTO `lt_woocommerce_order_items` VALUES("3", "Meeting Series", "line_item", "179");
INSERT INTO `lt_woocommerce_order_items` VALUES("4", "Free shipping", "shipping", "179");
INSERT INTO `lt_woocommerce_order_items` VALUES("5", "Meeting Series", "line_item", "184");
INSERT INTO `lt_woocommerce_order_items` VALUES("6", "Free shipping", "shipping", "184");
INSERT INTO `lt_woocommerce_order_items` VALUES("7", "Kelas Online Gejala Penyakit Meeting", "line_item", "232");
INSERT INTO `lt_woocommerce_order_items` VALUES("8", "Kelas Online Gejala Penyakit Meeting", "line_item", "233");
INSERT INTO `lt_woocommerce_order_items` VALUES("9", "Kelas Online Gejala Penyakit Meeting", "line_item", "239");
INSERT INTO `lt_woocommerce_order_items` VALUES("10", "Kelas Online Gejala Penyakit Meeting", "line_item", "240");
INSERT INTO `lt_woocommerce_order_items` VALUES("11", "Kelas Online Gejala Penyakit Meeting", "line_item", "248");
INSERT INTO `lt_woocommerce_order_items` VALUES("12", "Kelas Online Gejala Penyakit Meeting", "line_item", "249");
INSERT INTO `lt_woocommerce_order_items` VALUES("13", "Online Course: Gejala Penyakit Meeting", "line_item", "261");
INSERT INTO `lt_woocommerce_order_items` VALUES("14", "Online Course: Gejala Penyakit Meeting", "line_item", "262");
INSERT INTO `lt_woocommerce_order_items` VALUES("15", "Online Course: Gejala Penyakit Meeting", "line_item", "263");
INSERT INTO `lt_woocommerce_order_items` VALUES("16", "Online Course: Gejala Penyakit Meeting", "line_item", "264");
INSERT INTO `lt_woocommerce_order_items` VALUES("17", "Online Course: Gejala Penyakit Meeting", "line_item", "265");
INSERT INTO `lt_woocommerce_order_items` VALUES("18", "Online Course: Gejala Penyakit Meeting", "line_item", "266");
INSERT INTO `lt_woocommerce_order_items` VALUES("19", "Online Course: Gejala Penyakit Meeting", "line_item", "267");
INSERT INTO `lt_woocommerce_order_items` VALUES("20", "Online Course: Gejala Penyakit Meeting", "line_item", "272");

/* INSERT TABLE DATA: lt_woocommerce_sessions */
INSERT INTO `lt_woocommerce_sessions` VALUES("194", "2", "a:9:{s:4:\"cart\";s:419:\"a:1:{s:32:\"74db120f0a8e5646ef5a30154e9f6deb\";a:11:{s:3:\"key\";s:32:\"74db120f0a8e5646ef5a30154e9f6deb\";s:10:\"product_id\";i:228;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:250000;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:250000;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:402:\"a:15:{s:8:\"subtotal\";s:6:\"250000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";s:6:\"250000\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"250000\";s:9:\"total_tax\";d:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:716:\"a:26:{s:2:\"id\";s:1:\"2\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:2:\"JK\";s:7:\"country\";s:2:\"ID\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:2:\"JK\";s:16:\"shipping_country\";s:2:\"ID\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:24:\"admin@lt.tmp.pakar.co.id\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";s:10:\"wc_notices\";N;s:51:\"facebook_for_woocommerce_last_product_added_to_cart\";i:0;}", "1590564719");
INSERT INTO `lt_woocommerce_sessions` VALUES("196", "6a72f4ff83dd726e00c6eda0310e3209", "a:10:{s:4:\"cart\";s:419:\"a:1:{s:32:\"74db120f0a8e5646ef5a30154e9f6deb\";a:11:{s:3:\"key\";s:32:\"74db120f0a8e5646ef5a30154e9f6deb\";s:10:\"product_id\";i:228;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:250000;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:250000;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:402:\"a:15:{s:8:\"subtotal\";s:6:\"250000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";s:6:\"250000\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"250000\";s:9:\"total_tax\";d:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:10:\"wc_notices\";s:681:\"a:1:{s:5:\"error\";a:3:{i:0;a:2:{s:6:\"notice\";s:170:\"<a href=\"https://meetingmastery.lightrees.com/cart/\" class=\"button wc-forward\">View cart</a> You cannot add another \"Online Course: Gejala Penyakit Meeting\" to your cart.\";s:4:\"data\";a:0:{}}i:1;a:2:{s:6:\"notice\";s:170:\"<a href=\"https://meetingmastery.lightrees.com/cart/\" class=\"button wc-forward\">View cart</a> You cannot add another \"Online Course: Gejala Penyakit Meeting\" to your cart.\";s:4:\"data\";a:0:{}}i:2;a:2:{s:6:\"notice\";s:170:\"<a href=\"https://meetingmastery.lightrees.com/cart/\" class=\"button wc-forward\">View cart</a> You cannot add another \"Online Course: Gejala Penyakit Meeting\" to your cart.\";s:4:\"data\";a:0:{}}}}\";s:51:\"facebook_for_woocommerce_last_product_added_to_cart\";i:0;s:8:\"customer\";s:691:\"a:26:{s:2:\"id\";s:1:\"0\";s:13:\"date_modified\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:2:\"JK\";s:7:\"country\";s:2:\"ID\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:2:\"JK\";s:16:\"shipping_country\";s:2:\"ID\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:0:\"\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";}\";s:21:\"chosen_payment_method\";s:8:\"midtrans\";}", "1590557725");
INSERT INTO `lt_woocommerce_sessions` VALUES("204", "1", "a:7:{s:4:\"cart\";s:419:\"a:1:{s:32:\"74db120f0a8e5646ef5a30154e9f6deb\";a:11:{s:3:\"key\";s:32:\"74db120f0a8e5646ef5a30154e9f6deb\";s:10:\"product_id\";i:228;s:12:\"variation_id\";i:0;s:9:\"variation\";a:0:{}s:8:\"quantity\";i:1;s:9:\"data_hash\";s:32:\"b5c1d5ca8bae6d4896cf1807cdf763f0\";s:13:\"line_tax_data\";a:2:{s:8:\"subtotal\";a:0:{}s:5:\"total\";a:0:{}}s:13:\"line_subtotal\";d:250000;s:17:\"line_subtotal_tax\";i:0;s:10:\"line_total\";d:250000;s:8:\"line_tax\";i:0;}}\";s:11:\"cart_totals\";s:402:\"a:15:{s:8:\"subtotal\";s:6:\"250000\";s:12:\"subtotal_tax\";d:0;s:14:\"shipping_total\";s:1:\"0\";s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";s:6:\"250000\";s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";s:1:\"0\";s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";s:6:\"250000\";s:9:\"total_tax\";d:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:1174:\"a:26:{s:2:\"id\";s:1:\"1\";s:13:\"date_modified\";s:25:\"2020-05-22T09:50:43+07:00\";s:8:\"postcode\";s:5:\"11440\";s:4:\"city\";s:13:\"Jakarta Barat\";s:9:\"address_1\";s:87:\"PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan\";s:7:\"address\";s:87:\"PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:2:\"JK\";s:7:\"country\";s:2:\"ID\";s:17:\"shipping_postcode\";s:5:\"11440\";s:13:\"shipping_city\";s:13:\"Jakarta Barat\";s:18:\"shipping_address_1\";s:87:\"PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan\";s:16:\"shipping_address\";s:87:\"PAKAR Headquarter, Jl. Mandala Utara No.602, RT.4/RW.15, Tomang, Kec. Grogol petamburan\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:2:\"JK\";s:16:\"shipping_country\";s:2:\"ID\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:8:\"Sulistio\";s:9:\"last_name\";s:4:\"Test\";s:7:\"company\";s:5:\"PAKAR\";s:5:\"phone\";s:10:\"0215672564\";s:5:\"email\";s:21:\"gixor80421@reqaxv.com\";s:19:\"shipping_first_name\";s:8:\"Sulistio\";s:18:\"shipping_last_name\";s:4:\"Test\";s:16:\"shipping_company\";s:5:\"PAKAR\";}\";}", "1590658433");

/* INSERT TABLE DATA: lt_woocommerce_shipping_zone_locations */
INSERT INTO `lt_woocommerce_shipping_zone_locations` VALUES("1", "1", "ID:JK", "state");

/* INSERT TABLE DATA: lt_woocommerce_shipping_zone_methods */
INSERT INTO `lt_woocommerce_shipping_zone_methods` VALUES("1", "1", "free_shipping", "1", "1");

/* INSERT TABLE DATA: lt_woocommerce_shipping_zones */
INSERT INTO `lt_woocommerce_shipping_zones` VALUES("1", "Indonesia", "0");

SET FOREIGN_KEY_CHECKS = 1; 

/* Duplicator WordPress Timestamp: 2020-05-27 02:05:34*/
/* DUPLICATOR_MYSQLDUMP_EOF */
